File tree 3 files changed +9
-2
lines changed
src/main/java/com/example
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ version '1.0'
22
22
23
23
ext {
24
24
versions = [
25
- pyroscopeVersion : " 0.11.5 " ,
25
+ pyroscopeVersion : " 0.12.2 " ,
26
26
// this line is managed by .github/scripts/update-sdk-version.sh
27
27
opentelemetrySdk : " 1.27.0" ,
28
28
Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ public class EnvironmentConfig {
11
11
public static final String MW_PROFILING_SERVER_URL =
12
12
System .getenv ().getOrDefault ("MW_PROFILING_SERVER_URL" , "https://profiling.middleware.io" );
13
13
14
+ public static final String MW_PROFILING_ALLOC =
15
+ System .getenv ().getOrDefault ("MW_PROFILING_ALLOC" , "512k" );
16
+
17
+ public static final String MW_PROFILING_LOCK =
18
+ System .getenv ().getOrDefault ("MW_PROFILING_LOCK" , "10ms" );
19
+
14
20
public static final String MW_AGENT_SERVICE =
15
21
System .getenv ().getOrDefault ("MW_AGENT_SERVICE" , "localhost" );
16
22
Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ public static void startProfiling() {
37
37
new Config .Builder ()
38
38
.setApplicationName (SystemProperties .SERVICE_NAME )
39
39
.setProfilingEvent (EventType .ITIMER )
40
- .setAllocLive (true )
40
+ .setProfilingAlloc (EnvironmentConfig .MW_PROFILING_ALLOC )
41
+ .setProfilingLock (EnvironmentConfig .MW_PROFILING_LOCK )
41
42
.setServerAddress (EnvironmentConfig .MW_PROFILING_SERVER_URL )
42
43
.setTenantID (tenantId )
43
44
.build ());
You can’t perform that action at this time.
0 commit comments