From f5f5abb1cf979e975594b293dad5448ff1819238 Mon Sep 17 00:00:00 2001 From: Eden Federman Date: Sat, 3 Oct 2020 10:25:04 +0300 Subject: [PATCH] Change flamegraph file location for JVM profiling --- agent/profiler/jvm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/profiler/jvm.go b/agent/profiler/jvm.go index 836aa1c..b97ed38 100644 --- a/agent/profiler/jvm.go +++ b/agent/profiler/jvm.go @@ -12,7 +12,7 @@ import ( const ( profilerDir = "/tmp/async-profiler" - fileName = profilerDir + "/flamegraph.svg" + fileName = "/tmp/flamegraph.svg" profilerSh = profilerDir + "/profiler.sh" )