Package com.hazelcast.jet.core.metrics
Class MetricTags
java.lang.Object
com.hazelcast.jet.core.metrics.MetricTags
Metric descriptors are formed from a comma separated list of
tag_name=tag_value
pairs. The constants defined here are the possible
tag names that are used in Jet. See individual descriptions for the
meaning of information carried by each tag.- Since:
- Jet 3.2
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Network address of the cluster member sourcing the metric.static final String
Index of the cooperative worker in a fixed worker pool sourcing the metric.static final String
Destination member address for items sent to a distributed edge.static final String
Unique ID of a particular execution of a job (sourcing the metric), example value would be a numerical (long) ID encoded in a human-readable form, like"2f7f-d88a-4669-6195"
, seeUtil.idToString(long)
for details.static final String
Unique ID of the job (sourcing the metric), example value would be a numerical (long) ID encoded in a human-readable form, like"2f7f-d88a-4669-6195"
, seeUtil.idToString(long)
)} for details.static final String
Job name, or job ID if no name is specified.static final String
Unique ID of the cluster member sourcing the metric.static final String
Source system or module, value is always"jet"
.static final String
Index of the vertex input or output edges sourcing the metric.static final String
Global index of theProcessor
sourcing the metric.static final String
Class name without package name of theProcessor
sourcing the metric (only for processor-specific metrics).static final String
Boolean flag which is true if theProcessor
sourcing the metric is a DAG sink.static final String
Boolean flag which is true if theProcessor
sourcing the metric is a DAG source.static final String
Source member address for items received from a distributed edge.static final String
Unit of metric value, for details seeProbeUnit
.static final String
Boolean flag which is true if the metric is user-defined (as opposed to built-in).static final String
DAG vertex name the of the metric. -
Method Summary
-
Field Details
-
MODULE
Source system or module, value is always"jet"
.- See Also:
-
MEMBER
Unique ID of the cluster member sourcing the metric.- See Also:
-
ADDRESS
Network address of the cluster member sourcing the metric.- See Also:
-
JOB
Unique ID of the job (sourcing the metric), example value would be a numerical (long) ID encoded in a human-readable form, like"2f7f-d88a-4669-6195"
, seeUtil.idToString(long)
)} for details.- See Also:
-
JOB_NAME
Job name, or job ID if no name is specified.- Since:
- 5.3
- See Also:
-
EXECUTION
Unique ID of a particular execution of a job (sourcing the metric), example value would be a numerical (long) ID encoded in a human-readable form, like"2f7f-d88a-4669-6195"
, seeUtil.idToString(long)
for details.- See Also:
-
VERTEX
DAG vertex name the of the metric. Example value would be"mapJournalSource(myMap)"
.- See Also:
-
PROCESSOR
Global index of theProcessor
sourcing the metric.- See Also:
-
PROCESSOR_TYPE
Class name without package name of theProcessor
sourcing the metric (only for processor-specific metrics).- See Also:
-
SOURCE
Boolean flag which is true if theProcessor
sourcing the metric is a DAG source. Value istrue
orfalse
.- See Also:
-
SINK
Boolean flag which is true if theProcessor
sourcing the metric is a DAG sink. Value istrue
orfalse
.- See Also:
-
COOPERATIVE_WORKER
Index of the cooperative worker in a fixed worker pool sourcing the metric.- See Also:
-
ORDINAL
Index of the vertex input or output edges sourcing the metric.- See Also:
-
UNIT
Unit of metric value, for details seeProbeUnit
.- See Also:
-
DESTINATION_ADDRESS
Destination member address for items sent to a distributed edge.- See Also:
-
SOURCE_ADDRESS
Source member address for items received from a distributed edge.- See Also:
-
USER
Boolean flag which is true if the metric is user-defined (as opposed to built-in).- Since:
- Jet 4.0
- See Also:
-