- java.lang.Object
-
- jdk.jfr.EventSettings
-
public abstract class EventSettings extends Object
Convenience class for applying event settings to a recording.An event settings object for a recording can be obtained by calling
Recording.enable(String)
which can be configured using method chaining.Example,
Recording r = new Recording(); r.enable("com.oracle.jdk.CPULoad") .withPeriod(Duration.ofSeconds(1)); r.enable("com.oracle.jdk.FileWrite") .withoutStackTrace() .withThreshold(Duration.ofNanos(10)); r.start(); Thread.sleep(10_000); r.stop(); r.dump(Files.createTempFile("recording", ".jfr"));
- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract EventSettings
with(String name, String value)
Sets a setting value for the event associated with this event setting.EventSettings
withoutStackTrace()
Disables stack traces for the event associated with this event setting.EventSettings
withoutThreshold()
Convenience method for not using a threshold.EventSettings
withPeriod(Duration duration)
Sets the period for the event associated with this event setting.EventSettings
withStackTrace()
Enables stack traces for the event associated with this event setting.EventSettings
withThreshold(Duration duration)
Sets the threshold for the event associated with this event setting.
-
-
-
Method Detail
-
withStackTrace
public final EventSettings withStackTrace()
Enables stack traces for the event associated with this event setting. Equivalent to invokingwith("stackTrace", "true")
.- Returns:
- event settings object for further configuration, not
null
-
withoutStackTrace
public final EventSettings withoutStackTrace()
Disables stack traces for the event associated with this event setting. Equivalent to invokingwith("stackTrace", "false")
- Returns:
- event settings object for further configuration, not
null
-
withoutThreshold
public final EventSettings withoutThreshold()
Convenience method for not using a threshold. Equivalent to invokingwith("threshold", "0 s")
- Returns:
- event settings object for further configuration, not
null
-
withPeriod
public final EventSettings withPeriod(Duration duration)
Sets the period for the event associated with this event setting.- Parameters:
duration
- the duration, notnull
- Returns:
- event settings object for further configuration, not
null
-
withThreshold
public final EventSettings withThreshold(Duration duration)
Sets the threshold for the event associated with this event setting.- Parameters:
duration
- the duration, ornull
if no duration is to be used- Returns:
- event settings object for further configuration, not
null
-
with
public abstract EventSettings with(String name, String value)
Sets a setting value for the event associated with this event setting.- Parameters:
name
- the name of the setting, for example"threshold"
value
- the value to set, for example"20 ms"
notnull
- Returns:
- event settings object for further configuration, not
null
-
-