go tool pprof "-pdf""${binary}""http://localhost:${tunnel_port}/${path}/profile">"${output_dir}/${component}-${profile}-profile-${timestamp}.pdf"
;;
mem)
for flag in${mem_pprof_flags};do
go tool pprof "-${flag}""-pdf""${binary}""http://localhost:${tunnel_port}/${path}/heap">"${output_dir}/${component}-${profile}-${flag}-profile-${timestamp}.pdf"
done
;;
esac
done
if[["${component}"=="kubelet"]];then
for node in$(echo${kubelet_addreses} | sed's/[,;]/\n/g');do