@Target(TYPE) @Inherited @Retention(RUNTIME) public @interface Throttle
"100/s"). If the event class annotated with Throttle is filtered by other settings, such as a Threshold or a user-defined setting, the throttling will happen after those settings have been applied.
| Modifier and Type | Field | Description |
|---|---|---|
static final String |
NAME |
Setting name "throttle" for configuring throttled events. |
| Modifier and Type | Optional Element | Description |
|---|---|---|
String |
value |
The throttle rate, for example "100/s". |
static final String NAME
"throttle" for configuring throttled events.String value
"100/s". String representation of a non-negative long value followed by a forward slash ("/") and one of the following units:
"ns" (nanoseconds)"us" (microseconds)"ms" (milliseconds)"s" (seconds)"m" (minutes)"h" (hours)"d" (days) Example values, "6000/m", "10/ms" and "200/s".
Specifying zero, for example "0/s", results in no events being emitted.
Specifying "off" (case-sensitive) results in all events being emitted.
"off" not null
"off"
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/jdk.jfr/jdk/jfr/Throttle.html