Skip to content

JVM



Here, we provide two kinds of JVM metrics collection methods, one is Jolokia (deprecated) and the other is ddtrace. How to choose the way, we have the following suggestions:

  • It is recommended to use DDTrace to collect JVM metrics, and Jolokia is also acceptable as it is more cumbersome to use, so it is not recommended.
  • If we collect the JVM metrics of our own Java application, we recommend ddtrace scheme, which can collect the JVM metrics as well as link tracing (APM) data.

Config

Collect JVM Metrics Through Ddtrace

DataKit has a built-in statsd collector for receiving statsd protocol data sent over the network. Here we use ddtrace to collect metrics from the JVM and send them to the DataKit via statsd protocol.

Collector Configuration

The following statsd configuration is recommended for collecting ddtrace JVM metrics. Copy it to the conf.d/statsd directory and name it ddtrace-jvm-statsd.conf:

[[inputs.statsd]]
  protocol = "udp"

  ## Address and port to host UDP listener on
  service_address = ":8125"

  ## separator to use between elements of a statsd metric
  metric_separator = "_"

  drop_tags = ["runtime-id"]
  metric_mapping = [
    "jvm_:jvm",
    "datadog_tracer_:ddtrace",
  ]

  # There is no need to pay attention to the following configurations...

  delete_gauges = true
  delete_counters = true
  delete_sets = true
  delete_timings = true

  ## Percentiles to calculate for timing & histogram stats
  percentiles = [50.0, 90.0, 99.0, 99.9, 99.95, 100.0]

  ## Parses tags in the datadog statsd format
  ## http://docs.datadoghq.com/guides/dogstatsd/
  parse_data_dog_tags = true

  ## Parses datadog extensions to the statsd format
  datadog_extensions = true

  ## Parses distributions metric as specified in the datadog statsd format
  ## https://docs.datadoghq.com/developers/metrics/types/?tab=distribution#definition
  datadog_distributions = true

  ## Number of UDP messages allowed to queue up, once filled,
  ## the statsd server will start dropping packets
  allowed_pending_messages = 10000

  ## Number of timing/histogram values to track per-measurement in the
  ## calculation of percentiles. Raising this limit increases the accuracy
  ## of percentiles but also increases the memory usage and cpu time.
  percentile_limit = 1000

  ## Max duration (TTL) for each metric to stay cached/reported without being updated.
  #max_ttl = "1000h"

  [inputs.statsd.tags]
  # some_tag = "your-tag-value"
  # some_other_tag = "your-other-tag-value"

The collector can now be turned on by ConfigMap injection collector configuration.


For configuration instructions here:

  • service_address set here to :8125, which is the destination address where ddtrace sends out jvm metrics.
  • drop_tags here discards runtime-id here because it could cause the timeline to explode. If you really need this field, just remove it from drop_tags.
  • metric_mapping: In the original data sent by ddtrace, there are two types of metrics, their metrics names begin with jvm_ and datadog_tracer_ respectively, so we unify them into two types of metrics, one is jvm and the other is ddtrace self-running metrics.

Start Java Application

A feasible JVM deployment method is as follows:

java -javaagent:dd-java-agent.jar \
    -Ddd.profiling.enabled=true \
    -Ddd.logs.injection=true \
    -Ddd.trace.sample.rate=1 \
    -Ddd.service.name=my-app \
    -Ddd.env=staging \
    -Ddd.agent.host=localhost \
    -Ddd.agent.port=9529 \
    -Ddd.jmxfetch.enabled=true \
    -Ddd.jmxfetch.check-period=1000 \
    -Ddd.jmxfetch.statsd.host=127.0.0.1  \
    -Ddd.jmxfetch.statsd.port=8125 \
    -Ddd.version=1.0 \
    -jar your-app.jar

Note:

  • For the download of the dd-java-agent.jar package, see here
  • It is recommended to name the following fields:

    • service.name is used to indicate which application the JVM data comes from
    • env is used to indicate which environment of an application the JVM data comes from (e.g. prod/test/preprod, etc.)
  • The meaning of several options here:

    • -Ddd.jmxfetch.check-period denotes the collection frequency, in milliseconds
    • -Ddd.jmxfetch.statsd.host=127.0.0.1 indicates the connection address of the statsd collector on the DataKit
    • -Ddd.jmxfetch.statsd.port=8125 indicates the UDP connection port for the statsd collector on the DataKit, which defaults to 8125
    • -Ddd.trace.health.xxx ddtrace own metrics data collection and sending settings
    • If you want to turn on link tracing (APM), you can append the following two parameters (DataKit HTTP address)
      • -Ddd.agent.host=localhost
      • -Ddd.agent.port=9529

When turned on, you can collect jvm metrics exposed by DDTrace.

Attention

The actual collected indicators are based on DataDog's doc.

Metric

  • Tag

Each metric has the following tags (the actual tags are affected by Java startup parameters and statsd configuration).

Tag Name Description
env corresponding DD_ENV
host hostname
instance example
jmx_domain
metric_type
name
service
type
version
  • Metrics List
Metrics Description Data Type Unit
heap_memory The total Java heap memory used int B
heap_memory_committed The total Java heap memory committed to be used int B
heap_memory_init The initial Java heap memory allocated int B
heap_memory_max The maximum Java heap memory available int B
non_heap_memory The total Java non-heap memory used. Non-heap memory is calculated as follows: Metaspace + CompressedClassSpace + CodeCache int B
non_heap_memory_committed The total Java non-heap memory committed to be used int B
non_heap_memory_init The initial Java non-heap memory allocated int B
non_heap_memory_max The maximum Java non-heap memory available int B
thread_count The number of live threads int count
gc_cms_count The total number of garbage collections that have occurred int count
gc_major_collection_count The number of major garbage collections that have occurred. Set new_gc_metrics: true to receive this metric int count
gc_minor_collection_count The number of minor garbage collections that have occurred. Set new_gc_metrics: true to receive this metric int count
gc_parnew_time The approximate accumulated garbage collection time elapsed int ms
gc_major_collection_time The approximate major garbage collection time elapsed. Set new_gc_metrics: true to receive this metric int ms
gc_minor_collection_time The approximate minor garbage collection time elapsed. Set new_gc_metrics: true to receive this metric int ms

Collect JVM Metrics Through Jolokia

JVM collector can take many metrics through JMX, and collect metrics into Guance Cloud to help analyze Java operation.

Jolokia Config

Preconditions

Install or download Jolokia. The downloaded Jolokia jar package is already available in the data directory under the DataKit installation directory. Open the Java application by:

java -javaagent:/path/to/jolokia-jvm-agent.jar=port=8080,host=localhost -jar your_app.jar

Already tested version:

  • JDK 20
  • JDK 17
  • JDK 11
  • JDK 8

Go to the conf.d/jvm directory under the DataKit installation directory, copy jvm.conf.sample and name it jvm.conf. Examples are as follows:

[[inputs.jvm]]
  # default_tag_prefix      = ""
  # default_field_prefix    = ""
  # default_field_separator = "."

  # username = ""
  # password = ""
  # response_timeout = "5s"

  ## Optional TLS config
  # tls_ca   = "/var/private/ca.pem"
  # tls_cert = "/var/private/client.pem"
  # tls_key  = "/var/private/client-key.pem"
  # insecure_skip_verify = false

  ## Monitor Intreval
  # interval   = "60s"

  # Add agents URLs to query
  urls = ["http://localhost:8080/jolokia"]

  ## Add metrics to read
  [[inputs.jvm.metric]]
    name  = "java_runtime"
    mbean = "java.lang:type=Runtime"
    paths = ["Uptime"]

  [[inputs.jvm.metric]]
    name  = "java_memory"
    mbean = "java.lang:type=Memory"
    paths = ["HeapMemoryUsage", "NonHeapMemoryUsage", "ObjectPendingFinalizationCount"]

  [[inputs.jvm.metric]]
    name     = "java_garbage_collector"
    mbean    = "java.lang:name=*,type=GarbageCollector"
    paths    = ["CollectionTime", "CollectionCount"]
    tag_keys = ["name"]

  [[inputs.jvm.metric]]
    name  = "java_threading"
    mbean = "java.lang:type=Threading"
    paths = ["TotalStartedThreadCount", "ThreadCount", "DaemonThreadCount", "PeakThreadCount"]

  [[inputs.jvm.metric]]
    name  = "java_class_loading"
    mbean = "java.lang:type=ClassLoading"
    paths = ["LoadedClassCount", "UnloadedClassCount", "TotalLoadedClassCount"]

  [[inputs.jvm.metric]]
    name     = "java_memory_pool"
    mbean    = "java.lang:name=*,type=MemoryPool"
    paths    = ["Usage", "PeakUsage", "CollectionUsage"]
    tag_keys = ["name"]

  [inputs.jvm.tags]
  # some_tag = "some_value"
  # more_tag = "some_other_value"
  # ...

After configuration, restart DataKit.

Jolokia Metric

For all the following data collections, a global tag named host is appended by default (the tag value is the host name of the DataKit), or other tags can be specified in the configuration by [inputs.jvm.tags]:

 [inputs.jvm.tags]
  # some_tag = "some_value"
  # more_tag = "some_other_value"
  # ...

java_runtime

  • tag
Tag Description
host The hostname of the Jolokia agent/proxy running on.
jolokia_agent_url Jolokia agent url path.
  • metric list
Metric Description Type Unit
CollectionUsagecommitted The amount of memory in bytes that is committed for the Java virtual machine to use. float B
CollectionUsageinit The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management. float B
CollectionUsagemax The maximum amount of memory in bytes that can be used for memory management. float B
CollectionUsageused The amount of used memory in bytes. float B
Uptime The total runtime. int ms

java_memory

  • tag
Tag Description
host The hostname of the Jolokia agent/proxy running on.
jolokia_agent_url Jolokia agent url path.
  • metric list
Metric Description Type Unit
CollectionUsagecommitted The amount of memory in bytes that is committed for the Java virtual machine to use. float B
CollectionUsageinit The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management. float B
CollectionUsagemax The maximum amount of memory in bytes that can be used for memory management. float B
CollectionUsageused The amount of used memory in bytes. float B
HeapMemoryUsagecommitted The total Java heap memory committed to be used. int B
HeapMemoryUsageinit The initial Java heap memory allocated. int B
HeapMemoryUsagemax The maximum Java heap memory available. int B
HeapMemoryUsageused The total Java heap memory used. int B
NonHeapMemoryUsagecommitted The total Java non-heap memory committed to be used. int B
NonHeapMemoryUsageinit The initial Java non-heap memory allocated. int B
NonHeapMemoryUsagemax The maximum Java non-heap memory available. int B
NonHeapMemoryUsageused The total Java non-heap memory used. int B
ObjectPendingFinalizationCount The count of object pending finalization. int count

java_garbage_collector

  • tag
Tag Description
host The hostname of the Jolokia agent/proxy running on.
jolokia_agent_url Jolokia agent url path.
name The name of GC generation.
  • metric list
Metric Description Type Unit
CollectionCount The number of GC that have occurred. int count
CollectionTime The approximate GC collection time elapsed. int B
CollectionUsagecommitted The amount of memory in bytes that is committed for the Java virtual machine to use. float B
CollectionUsageinit The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management. float B
CollectionUsagemax The maximum amount of memory in bytes that can be used for memory management. float B
CollectionUsageused The amount of used memory in bytes. float B

java_threading

  • tag
Tag Description
host The hostname of the Jolokia agent/proxy running on.
jolokia_agent_url Jolokia agent url path.
  • metric list
Metric Description Type Unit
CollectionUsagecommitted The amount of memory in bytes that is committed for the Java virtual machine to use. float B
CollectionUsageinit The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management. float B
CollectionUsagemax The maximum amount of memory in bytes that can be used for memory management. float B
CollectionUsageused The amount of used memory in bytes. float B
DaemonThreadCount The count of daemon thread. int count
PeakThreadCount The peak count of thread. int count
ThreadCount The count of thread. int count
TotalStartedThreadCount The total count of started thread. int count

java_class_loading

  • tag
Tag Description
host The hostname of the Jolokia agent/proxy running on.
jolokia_agent_url Jolokia agent url path.
  • metric list
Metric Description Type Unit
CollectionUsagecommitted The amount of memory in bytes that is committed for the Java virtual machine to use. float B
CollectionUsageinit The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management. float B
CollectionUsagemax The maximum amount of memory in bytes that can be used for memory management. float B
CollectionUsageused The amount of used memory in bytes. float B
LoadedClassCount The count of loaded class. int count
TotalLoadedClassCount The total count of loaded class. int count
UnloadedClassCount The count of unloaded class. int count

java_memory_pool

  • tag
Tag Description
host The hostname of the Jolokia agent/proxy running on.
jolokia_agent_url Jolokia agent url path.
name The name of space.
  • metric list
Metric Description Type Unit
CollectionUsagecommitted The amount of memory in bytes that is committed for the Java virtual machine to use. float B
CollectionUsageinit The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management. float B
CollectionUsagemax The maximum amount of memory in bytes that can be used for memory management. float B
CollectionUsageused The amount of used memory in bytes. float B
PeakUsagecommitted The total peak Java memory pool committed to be used. int B
PeakUsageinit The initial peak Java memory pool allocated. int B
PeakUsagemax The maximum peak Java memory pool available. int B
PeakUsageused The total peak Java memory pool used. int B
Usagecommitted The total Java memory pool committed to be used. int B
Usageinit The initial Java memory pool allocated. int B
Usagemax The maximum Java memory pool available. int B
Usageused The total Java memory pool used. int B

More Readings

Feedback

Is this page helpful? ×