IPLM metrics details
Learn more about the metrics exported by the Perforce IPLM products.
IPLM Server metrics
To see the IPLM Server metrics, run the following command on a machine running IPLM Server:
# curl localhost:2002/metrics 2>/dev/null | grep piserver
Alternately, in a web browser, navigate to the Prometheus interface on the machine at http://<IP-address>:9090 and in the query input at the top enter:
{job="piserver"}
Note:
The above ports and job names are defined in the machine's /etc/mdx/mdx-metrics-prometheus.yml Prometheus configuration file in its scrape_configs
section.
PiServer metrics
Perforce IPLM Metric | Type | Description |
---|---|---|
mdx_piserver_2xx_responses_total |
counter |
Gives the total number of 200 type responses. |
mdx_piserver_4xx_responses_total |
counter |
Gives the total number of 400 type responses. |
mdx_piserver_5xx_responses_total |
counter |
Gives the total number of 500 type responses. |
mdx_piserver_event_config_mode |
gauge |
Gives the event configuration mode. From the
|
mdx_piserver_events_published_total |
counter |
Gives the total number of events published. |
mdx_piserver_info |
counter |
Gives information about PiServer, for example: mdx_piserver_info{version="2.36.0",release="0",} 1.0 |
mdx_piserver_neo4j_latency_max_seconds |
gauge |
Gives the Neo4j maximum latency in seconds (the maximum duration Neo4j has handled any request) , for example: mdx_piserver_neo4j_latency_max_seconds 153.442200388 |
mdx_piserver_neo4j_latency_min_seconds |
gauge |
Gives the Neo4j minimum latency in seconds (the minimum duration Neo4j has handled any request) , for example: mdx_piserver_neo4j_latency_min_seconds 0.00230883 |
mdx_piserver_neo4j_latency_seconds |
summary |
Gives Neo4j's latency in seconds (the duration Neo4j has handled requests). Prometheus translates this metric to other metrics giving the count of the number of times this metric has been set and the sum total of all of the values this metric is set to, for example mdx_piserver_neo4j_latency_seconds_count 226878.0 mdx_piserver_neo4j_latency_seconds_sum 3348.1690111860003 |
mdx_piserver_subscribed_requests_total |
counter |
Gives the total event subscribed requests, i.e. the number of times the PiServer |
Metrics guidance
Informational metrics
Most of the metrics give static or dynamic insight about IPLM Server and its use. The mdx_piserver_info
metric is confirms that the expected version of IPLM Server is running and the mdx_piserver_event_config_mode
metric confirms which events will be output from IPLM Server. The mdx_piserver_xxx_responses_total
metrics inform about the distribution of the responses and can help detect unexpected patterns. For example, any positive number of 5xx responses likely indicates a problem in IPLM Server itself, which may lead to reporting an issue. A large number of 4xx responses may indicate an erratic script sending invalid requests to the Public API.
Performance metrics
A few metrics provide insight about the latency of IPLM Server and can help assess bottlenecks. For example, a consistently large value for mdx_piserver_neo4j_latency_seconds
likely negatively impacts user experience, and may justify investigating the cause of such slowness. In that context, note that most of the the response time of IPLM Server is actually the response time of the Neo4j server(s), so that's where the analysis should focus.
IPLM Cache metrics
Since IPLM Cache is a multi-process application implemented in Python and the Prometheus Python Client Library is setup for instrumenting a single-process application (with the exception of a Gunicorn multi-process WSGI application), IPLM Cache uses the Prometheus StatsD Exporterto coordinate metrics among all its processes and to export them to the Prometheus server. The IPLM Cache Watchdog Monitor exports its metrics separately.
It is important to start the mdx-metrics service before starting the IPLM Cache service so that the StatsD exporter can properly gather IPLM Cache metrics.
To see the IPLM Cache metrics, run the following command on a machine running IPLM Cache:
$ curl localhost:9102/metrics 2>/dev/null | grep mdx_picache
Alternately, in a web browser, navigate to the Prometheus interface on the machine at http://<IP-address>:9090 and in the query input at the top enter:
{job="picache-statsd"}
The above ports and job names are defined in the machine's /etc/mdx/mdx-metrics-prometheus.yml Prometheus configuration file in its scrape_configs
section.
Description of IPLM Cache metrics
Perforce IPLM Metric | Type | Description |
---|---|---|
mdx_picache_front_api_request_handling_time_ms | summary |
Gives the time it took for the IPLM Cache front-end, in milliseconds, to handle a client HTTP request. As described in Prometheus's HISTOGRAMS AND SUMMARIES documentation, summaries are broken into count, sum, and quantile metrics. For IPLM Cache, these translate to the metrics (with example values): mdx_picache_front_api_request_handling_time_ms{quantile="0.5"} 0.030681999999999997 mdx_picache_front_api_request_handling_time_ms{quantile="0.9"} 0.066292 mdx_picache_front_api_request_handling_time_ms{quantile="0.99"} 0.092524 mdx_picache_front_api_request_handling_time_ms_sum 1.5169719999999998 mdx_picache_front_api_request_handling_time_ms_count 46 These metrics will not be available until the IPLM Cache front-end handles its first request. |
mdx_picache_ipv_data_consistency_failures_total |
gauge |
Gives the number of IPLM Cache IPV Data Consistency Check Failures. |
mdx_picache_ipv_versions_in_cache_total__<IPV-reference> | gauge | Gives the number of versions in the cache for a specific IPV. <IPV-reference> is formatted as library_IP_line . An example metric is mdx_picache_ipv_versions_in_cache_total__tutorial_acells_tsmc18_TRUNK . |
mdx_picache_ipvs_in_cache_total |
gauge |
Gives the total number of IPVs in the cache. |
mdx_picache_job_execution_time_ms | summary |
Gives the the time, in milliseconds, a IPLM Cache backend worker took to execute a job. As with mdx_picache_front_api_request_handling_time_ms, summaries are broken into count, sum, and quantile metrics. For IPLM Cache, these translate to the metrics (with example values): mdx_IPLM Cache_job_execution_time_ms{quantile="0.5"} 2.012019 mdx_IPLM Cache_job_execution_time_ms{quantile="0.9"} 4.607835 mdx_IPLM Cache_job_execution_time_ms{quantile="0.99"} 9.540736 mdx_IPLM Cache_job_execution_time_ms_sum 99.77386099999998 mdx_IPLM Cache_job_execution_time_ms_count 39 These metrics will not be available until the IPLM Cache back-end handles its first job. |
mdx_picache_job_spent_in_queue_time_ms | summary |
Gives the time, in milliseconds, a job spent in a Redis queue. As above, this metric translates to the metrics (with example values): mdx_picache_job_spent_in_queue_time_ms{quantile="0.5"} 8.706202 mdx_picache_job_spent_in_queue_time_ms{quantile="0.9"} 15.51039 mdx_picache_job_spent_in_queue_time_ms{quantile="0.99"} 18.33295 mdx_picache_job_spent_in_queue_time_ms_sum 323.80503799999997 mdx_picache_job_spent_in_queue_time_ms_count 39 These metrics will not be available until the IPLM Cache back-end handles its first job. |
mdx_picache_jobs_dequeued_total |
gauge |
Gives the number of jobs dequeued from Redis queues by the backend workers. |
mdx_picache_jobs_enqueued_total |
gauge |
Gives the number of jobs enqueued in Redis queues by the IPLM Cache front-end. |
mdx_picache_jobs_successfully_handled_total |
gauge |
Gives the number of jobs successfully handled by the backend workers. |
mdx_picache_jobs_total__<IPV-reference> | gauge | Gives the number of jobs enqueued in Redis queue for a specific IPV. <IPV-reference> is formatted as library_IP_version_line . An example metric is mdx_picache_jobs_total__tutorial_acells_tsmc18_1_TRUNK . |
mdx_picache_major_ver |
gauge |
Gives the IPLM Cache major version number. This would be the number 1 in version 1.2.3. |
mdx_picache_minor_ver |
gauge |
Gives the IPLM Cache minor version number. This would be the number 2 in version 1.2.3. |
mdx_picache_patch_ver |
gauge |
Gives the IPLM Cache patch version number. This would be the number 3 in version 1.2.3. |
mdx_picache_start_time |
gauge |
Gives the time in seconds since the epoch IPLM Cache was started. For example, this is used in Perforce IPLM Cache Grafana dashboard to give IPLM Cache's Uptime value with the equation: time() - mdx_picache_start_time{job="picache-statsd"} |
mdx_picache_up |
gauge |
Indicates if IPLM Cache is running (1) or not (0). On startup IPLM Cache sets this metric to 1, and on shutdown it sets this to 0. |
Metrics guidance
Configuration
The mdx_picache_up, mdx_picache_major_ver, mdx_picache_minor_ver, and mdx_picache_patch_ver metrics can be analyzed when troubleshooting IPLM Cache issues, for example to make sure IPLM Cache is up and to make sure you have the version of IPLM Cache you're expecting. The mdx_picache_start_time metric can be monitored to see how long IPLM Cache has been running. IPLM Cache Watchdog metrics (below) can be monitored for Redis information.
Timing
The mdx_picache_front_api_request_handling_time_ms, mdx_picache_job_execution_time_ms, and mdx_picache_job_spent_in_queue_time_ms metrics deal with IPLM Cache timing performance. These can be monitored to see how they vary with time. If they are seen to increase over time, that may indicate a highly loaded system that may indicate some kind of performance bottleneck that needs to be addressed or a normal condition that could be alleviated with additional IPLM Cache instances.
IPV information
The mdx_picache_ipv_versions_in_cache_total__<IPV-reference> and mdx_picache_ipvs_in_cache_total metrics can be monitored for information on the IPVs in the cache.
IPV information is maintained by IPLM Cache when MongoDB is used (the mongod-host
setting is used). For more information on the IPVs, the picache-ipv-admin.sh tool can be used, specifically with the --list
, --all
, and -v/--verbose
options:
$ picache-ipv-admin.sh --help usage: picache-ipv-admin.sh [-h] [-v] [-c CONF] [--project PROJECT] [--all] (--list | --remove | --expire | --no-expire | --clear-consistency-check) [-t TIMEOUT] [ipv [ipv ...]] IPLM Cache administration tool for managing IPVs in cache positional arguments: ipv one or more IPV names optional arguments: -h, --help show this help message and exit -v, --verbose verbose output -c CONF, --conf CONF IPLM Cache config file, default: /etc/mdx/picache.conf --project PROJECT IPV project --all select all IPVs recorded in cache --list list IPV in the cache --remove remove IPV from cache --expire mark IPV subject to auto-removal --no-expire mark IPV to not be subject to auto-removal --clear-consistency-check clear IPV data consistency check in progress indication -t TIMEOUT, --timeout TIMEOUT number of seconds to wait for a remove job to finish, default: 10
The picache-monitor.sh tool can also be used to get IPV information with the -i/--ipvs
and -v/--verbose
options:
$ picache-monitor.sh --help usage: picache-monitor.sh [-h] [-v] [-c CONF] [-p PERIOD] [-i] [-q] [-l] [--hb] [-a] [-n] [-j] IPLM Cache administration tool for monitoring IPLM Cache. optional arguments: -h, --help show this help message and exit -v, --verbose verbose output -c CONF, --conf CONF IPLM Cache config file, default: /etc/mdx/picache.conf -p PERIOD, --period PERIOD causes repeated output with this period in seconds between outputs (0 = continuous output) -i, --ipvs show IPVs in cache -q, --queues show queue details -l, --locks show lock information --hb show heartbeat information -a, --all show all information -n, --no_summary don't output Summary section (overridden by --all) -j, --json output in JSON format (used for automation purposes)
The picache-ipv-usage.sh tool can also be used to get full IPV information (including file list information).
Log information for IPVs can be obtained by using the picache-query-mongo-log.sh tool, specifically with the -i/--ip
argument:
$ picache-query-mongo-log.sh --help usage: picache-query-mongo-log.sh [-h] [-c CONF] [-e [PATTERN [PATTERN ...]]] [-f [FUNCTION [FUNCTION ...]]] [-i [IP [IP ...]]] [-j [JOBID [JOBID ...]]] [--level {DEBUG,INFO,WARNING,ERROR,CRITICAL}] [-L [LOGNAME [LOGNAME ...]]] [-m [MODULE [MODULE ...]]] [-n [NODE [NODE ...]]] [-p [PID [PID ...]]] [-t MINTIME] [-T MAXTIME] [-v] [--count] [--exc] IPLM Cache administration tool for extracting logs from MongoDB. optional arguments: -h, --help show this help message and exit -c CONF, --conf CONF IPLM Cache config file, default: /etc/mdx/picache.conf -e [PATTERN [PATTERN ...]], --regexp [PATTERN [PATTERN ...]] Regular expressions to search log records for -f [FUNCTION [FUNCTION ...]], --function [FUNCTION [FUNCTION ...]] Functions log records are for -i [IP [IP ...]], --ip [IP [IP ...]] IPs log records are for -j [JOBID [JOBID ...]], --jobid [JOBID [JOBID ...]] Job IDs log records are for --level {DEBUG,INFO,WARNING,ERROR,CRITICAL} Log level (and above) log records have -L [LOGNAME [LOGNAME ...]], --logname [LOGNAME [LOGNAME ...]] Logger names log records are for -m [MODULE [MODULE ...]], --module [MODULE [MODULE ...]] Modules log records are for -n [NODE [NODE ...]], --node [NODE [NODE ...]] Nodes (hostnames) log records are from -p [PID [PID ...]], --pid [PID [PID ...]] Process IDs log records are for -t MINTIME, --mintime MINTIME Gets log records newer than or equal to this datetime -T MAXTIME, --maxtime MAXTIME Gets log records older than or equal to this datetime -v, --verbose Verbose output --count Prints the number of log records and exits --exc Gets log records only showing exceptions Use an egrep expression for a logical OR search of the logs, for example: -e 'job_build|job_update' will get log records containing 'job_build' or 'job_update'. Use multiple expressions for a logical AND search of the logs, for example: -e 'enter' 'job_build' will get log records containing both 'enter' and 'job_build'. MINTIME and MAXTIME are formatted as '2018-07-02T14:59:13.365' (fields 'T' and after are optional).
Job information
The mdx_picache_jobs_dequeued_total, mdx_picache_jobs_enqueued_total, mdx_picache_jobs_successfully_handled_total, and mdx_picache_jobs_total__<IPV-reference> metrics can be monitored to see IPLM Cache's execution of jobs.
The difference between the mdx_picache_jobs_enqueued_total and mdx_picache_jobs_dequeued_total metrics gives the number of jobs still awaiting execution, while the mdx_picache_jobs_successfully_handled_total metric gives the number of jobs that have been successfully executed. In a busy environment, increasing values in all of these metrics indicates IPLM Cache is executing jobs.
Additional job information can be obtained by using the picache-monitor.sh tool with the -q/--queues
and -v/--verbose
arguments to see what kind of jobs are in which queues.
Data consistency check failures
The mdx_picache_ipv_data_consistency_failures_total metric can be monitored to see if there are any IPVs failing data consistency checking. IPV data consistency checking is enabled in /etc/picache.conf when MongoDB is used (the mongod-host
setting is used) and the cache-check-period-hrs
setting is non-zero. To see the reason for a data consistency check failure, the picache-query-mongo-log.sh tool can be run as:
$ picache-query-mongo-log.sh -e "job_check return message"
Or for a specific IP as:
$ picache-query-mongo-log.sh -e "job_check return message" --ip <IP-name>Examples: $ picache-query-mongo-log.sh -e "job_check return message" --ip tutorial $ picache-query-mongo-log.sh -e "job_check return message" --ip tutorial.verif_config $ picache-query-mongo-log.sh -e "job_check return message" --ip tutorial.verif_config@2.TRUNK
IPLM Cache Watchdog metrics
To see the IPLM Cache Watchdog metrics, the following command can be run on a machine running the IPLM Cache Watchdog:
$ curl localhost:2005/metrics 2>/dev/null | grep mdx_wdog
Alternately, in a web browser, navigate to the Prometheus interface on the machine at http://<IP-address>:9090 and in the query input at the top enter:
{job="picache-wdog"}
The above ports and job names are defined in the machine's /etc/mdx/mdx-metrics-prometheus.yml Prometheus configuration file in its scrape_configs
section.
IPLM Cache Watchdog metrics description
Perforce IPLM Metric | Type | Description |
---|---|---|
mdx_wdog_picache_version | gauge | Gives the IPLM Cache Watchdog Version, e.g. 1.6.2 |
mdx_wdog_redis_connected | gauge | Indicates if Redis is connected (1) or not (0). |
mdx_wdog_config_redis_info | gauge |
Gives Watchdog configuration information for Redis, for example: mdx_wdog_config_redis_info{redis_sentinel_configuration="[('10.211.55.18', 26379), ('10.211.55.19', 26379), ('10.211.55.20', 26379)]",redis_sentinel_service_name="mymaster-suse"} 1.0 |
mdx_wdog_get_status_msgs_total | counter |
Gives the number of GET STATUS messages processed. These messages originate from IPLM Cache's mdx_wdog_stat.pyc script used in a deployment in which the Linux Watchdog Monitor periodically gets IPLM Cache's status via the mdx_wdog_stat.pyc script and can be configured to reboot the machine to fix any unexpected bad health condition. See IPLM Cache administration overview for more information. The Prometheus Python Client Library also creates the metric |
mdx_wdog_heartbeat_config_info | gauge |
Gives Watchdog configuration information for heartbeats, for example: mdx_wdog_heartbeat_config_info{hb_down_msg="down",hb_healthy_msg="good",hb_redis_base_key="mdx:picache:heartbeat:",hb_unhealthy_msg="bad",nom_dur_between_hbs_sec="10"} 1.0 |
mdx_wdog_clients_total | gauge | Gives the number of Watchdog clients. |
mdx_wdog_config_info | gauge |
Gives Watchdog configuration information, for example: mdx_wdog_config_info{config_file_path="conf/picache.conf",default_ping_period_sec="20",log_file_path="/home/bob/develop/picache/log/picache-wdog.log",log_level="WARNING",node_name="suse-1",profiling="False"} 1.0 |
mdx_wdog_clients_num_healthy | gauge | Gives the number of Watchdog clients that are healthy. |
mdx_wdog_msg_handling_time | summary |
Gives Watchdog message handling timing information. Prometheus translates this metric to other metrics giving the count of the number of times this metric has been set, the sum total of all of the values this metric has been set to, and the time the metric was created, for example: mdx_wdog_msg_handling_time_count 1563.0 mdx_wdog_msg_handling_time_sum 0.23833489418029785 mdx_wdog_msg_handling_time_created 1.605906044264304e+09 |
mdx_wdog_clients_num_indefinite | gauge | Gives the number of Watchdog clients that have an indefinite ping period. |
mdx_wdog_redis_instance_info | gauge |
Gives the Redis instance the Watchdog is connected to, for example: mdx_wdog_redis_instance_info{redis_master_host="10.211.55.18",redis_master_port="6379"} 1.0 |
mdx_wdog_clients_num_bad | gauge | Gives the number of Watchdog clients that are unhealthy. |
Metrics guidance
Configuration
The mdx_wdog_picache_version, mdx_wdog_config_redis_info, mdx_wdog_heartbeat_config_info, mdx_wdog_config_info, and mdx_wdog_redis_instance_info metrics can be analyzed when troubleshooting IPLM Cache Watchdog issues. For example, make sure you have the version of IPLM Cache (which includes the IPLM Cache Watchdog) and the configuration options you're expecting. The configuration options are all in the IPLM Cache configuration file, /etc/mdx/picache.conf. The Redis configuration options will be important when troubleshooting any Watchdog connection problem to Redis, as indicated by the mdx_wdog_redis_connected and mdx_wdog_redis_instance_info metrics.
Linux Watchdog daemon
If you have configured the Linux Watchdog Daemon to interface to the IPLM Cache Watchdog, an increasing value for the mdx_wdog_get_status_msgs_total metric indicates the daemon is successfully interfacing to the IPLM Cache Watchdog.
Unhealthy Watchdog clients
If the mdx_wdog_clients_num_bad metric is non-zero and stays that way, that many Watchdog clients have stopped pinging the Watchdog. If the Linux Watchdog Daemon is interfacing to the IPLM Cache Watchdog, the daemon may reboot the machine in order to correct the problem. If the Linux Watchdog Daemon is not used, you can correct the problem manually by restarting the IPLM Cache service or you can ignore the problem by using the picache-wdog-unregister.sh tool:
$ picache-wdog-unregister.sh --help usage: picache-wdog-unregister.sh [-h] [-v] [-c CONF] entity_name [entity_name ...] IPLM Cache administration tool for unregistering clients from the IPLM Cache Watchdog Monitor. positional arguments: entity_name one or more entity names to unregister optional arguments: -h, --help show this help message and exit -v, --verbose verbose output -c CONF, --conf CONF IPLM Cache config file, default: /etc/mdx/picache.conf
The entity_name argument can be found in the Watchdog log file in the log messages showing which entity(ies) have stopped pinging.
Watchdog monitor heartbeat status
IPLM Cache Watchdog heartbeat information can be obtained from the IPLM Cache Monitor tool, picache-monitor.sh, using the --hb and -v options (see above for picache-monitor.sh use).
Third party metrics
Perforce IPLM uses:
- The Prometheus monitoring system as a metrics aggregator and metrics time series database
- The Grafana analytics platform to display and analyze metrics
- The Prometheus JMX Exporter to extract additional metrics from the Java applications we use: Perforce IPLM PiServer and Neo4j's graph database used by PiServer
- The Prometheus Node Exporter to extract hardware and OS metrics exposed by linux kernels
- The Prometheus StatsD Exporter to aggregate IPLM Cache metrics
All of these export their own metrics.
Neo4j metrics
The Neo4j Enterprise edition supports metrics (the free Community edition does not). Perforce currently supports Neo4j version 3.5.3. Refer to Neo4j's documentation on Metrics for a description of the metrics they expose.
JMX metrics
From Monitoring Java applications with the Prometheus JMX exporter and Grafana:
The Prometheus JMX exporter connects to Java’s native metric collection system, Java Management Extensions (JMX), and converts the metrics into a format that Prometheus can understand.
The Prometheus JMX Exporter webpage does not give a description of the metrics, but the numerous metrics' HELP text can be seen by use of the curl command, for example:

...
# HELP jmx_config_reload_failure_total Number of times configuration have failed to be reloaded.
# TYPE jmx_config_reload_failure_total counter
# HELP jvm_info JVM version info
# TYPE jvm_info gauge
# HELP jvm_threads_current Current thread count of a JVM
# TYPE jvm_threads_current gauge
# HELP jvm_threads_daemon Daemon thread count of a JVM
# TYPE jvm_threads_daemon gauge
# HELP jvm_threads_peak Peak thread count of a JVM
# TYPE jvm_threads_peak gauge
# HELP jvm_threads_started_total Started thread count of a JVM
# TYPE jvm_threads_started_total counter
# HELP jvm_threads_deadlocked Cycles of JVM-threads that are in deadlock waiting to acquire object monitors or ownable synchronizers
# TYPE jvm_threads_deadlocked gauge
# HELP jvm_threads_deadlocked_monitor Cycles of JVM-threads that are in deadlock waiting to acquire object monitors
# TYPE jvm_threads_deadlocked_monitor gauge
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
# HELP metrics_jvm_memory_pools_PS_Old_Gen_used_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Old-Gen.used><>Value)
# TYPE metrics_jvm_memory_pools_PS_Old_Gen_used_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Max untyped
# HELP metrics_jvm_memory_pools_PS_Eden_Space_used_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Eden-Space.used><>Value)
# TYPE metrics_jvm_memory_pools_PS_Eden_Space_used_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Min untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Count Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>Count)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Count untyped
# HELP metrics_ch_qos_logback_core_Appender_debug_Count Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.debug><>Count)
# TYPE metrics_ch_qos_logback_core_Appender_debug_Count untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_FiveMinuteRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>FiveMinuteRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_75thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_98thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>98thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_98thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_99thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>99thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_99thPercentile untyped
# HELP java_lang_Threading_ThreadContentionMonitoringSupported ThreadContentionMonitoringSupported (java.lang<type=Threading><>ThreadContentionMonitoringSupported)
# TYPE java_lang_Threading_ThreadContentionMonitoringSupported untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_99thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Max Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>Max)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Max untyped
# HELP java_lang_Runtime_StartTime StartTime (java.lang<type=Runtime><>StartTime)
# TYPE java_lang_Runtime_StartTime untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_95thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>95thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_95thPercentile untyped
# HELP java_lang_MemoryPool_UsageThreshold UsageThreshold (java.lang<type=MemoryPool, name=Code Cache><>UsageThreshold)
# TYPE java_lang_MemoryPool_UsageThreshold untyped
# HELP metrics_jvm_gc_PS_Scavenge_time_Value Attribute exposed for management (metrics<name=jvm.gc.PS-Scavenge.time><>Value)
# TYPE metrics_jvm_gc_PS_Scavenge_time_Value untyped
# HELP metrics_jvm_threads_daemon_count_Value Attribute exposed for management (metrics<name=jvm.threads.daemon.count><>Value)
# TYPE metrics_jvm_threads_daemon_count_Value untyped
# HELP java_lang_Threading_PeakThreadCount PeakThreadCount (java.lang<type=Threading><>PeakThreadCount)
# TYPE java_lang_Threading_PeakThreadCount untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Max untyped
# HELP java_lang_ClassLoading_TotalLoadedClassCount TotalLoadedClassCount (java.lang<type=ClassLoading><>TotalLoadedClassCount)
# TYPE java_lang_ClassLoading_TotalLoadedClassCount untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_75thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>75thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_MeanRate untyped
# HELP metrics_ch_qos_logback_core_Appender_all_MeanRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.all><>MeanRate)
# TYPE metrics_ch_qos_logback_core_Appender_all_MeanRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_98thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>98thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_98thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Mean Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>Mean)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Mean untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_99thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>99thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_99thPercentile untyped
# HELP java_lang_MemoryPool_PeakUsage_committed java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><PeakUsage>committed)
# TYPE java_lang_MemoryPool_PeakUsage_committed untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_50thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_75thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>75thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_98thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_MeanRate untyped
# HELP metrics_jvm_memory_pools_PS_Survivor_Space_max_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Survivor-Space.max><>Value)
# TYPE metrics_jvm_memory_pools_PS_Survivor_Space_max_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_FiveMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>FiveMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_active_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.active-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_active_requests_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.4xx-responses><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_75thPercentile untyped
# HELP java_lang_Memory_Verbose Verbose (java.lang<type=Memory><>Verbose)
# TYPE java_lang_Memory_Verbose untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.1xx-responses><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_MeanRate untyped
# HELP java_lang_MemoryPool_CollectionUsageThreshold CollectionUsageThreshold (java.lang<type=MemoryPool, name=PS Old Gen><>CollectionUsageThreshold)
# TYPE java_lang_MemoryPool_CollectionUsageThreshold untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Max Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>Max)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Max untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Mean Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>Mean)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Mean untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_size_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw.size><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_size_Value untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_999thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>999thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_999thPercentile untyped
# HELP metrics_jersey_client_neo4jRestClient_created_MeanRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.created><>MeanRate)
# TYPE metrics_jersey_client_neo4jRestClient_created_MeanRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_OneMinuteRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>OneMinuteRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_OneMinuteRate untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_init java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageAfterGc>init)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_init untyped
# HELP metrics_jvm_buffers_direct_count_Value Attribute exposed for management (metrics<name=jvm.buffers.direct.count><>Value)
# TYPE metrics_jvm_buffers_direct_count_Value untyped
# HELP java_lang_Memory_NonHeapMemoryUsage_max java.lang.management.MemoryUsage (java.lang<type=Memory><NonHeapMemoryUsage>max)
# TYPE java_lang_Memory_NonHeapMemoryUsage_max untyped
# HELP java_lang_OperatingSystem_ProcessCpuTime ProcessCpuTime (java.lang<type=OperatingSystem><>ProcessCpuTime)
# TYPE java_lang_OperatingSystem_ProcessCpuTime untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.5xx-responses><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_999thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_98thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>98thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_98thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_98thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.5xx-responses><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_OneMinuteRate untyped
# HELP metrics_ch_qos_logback_core_Appender_warn_MeanRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.warn><>MeanRate)
# TYPE metrics_ch_qos_logback_core_Appender_warn_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_OneMinuteRate untyped
# HELP metrics_ch_qos_logback_core_Appender_error_Count Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.error><>Count)
# TYPE metrics_ch_qos_logback_core_Appender_error_Count untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_50thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>50thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_50thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Max Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>Max)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_95thPercentile untyped
# HELP java_lang_GarbageCollector_LastGcInfo_endTime CompositeType for GC info for PS Scavenge (java.lang<type=GarbageCollector, name=PS Scavenge><LastGcInfo>endTime)
# TYPE java_lang_GarbageCollector_LastGcInfo_endTime untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.5xx-responses><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.4xx-responses><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_75thPercentile untyped
# HELP metrics_ch_qos_logback_core_Appender_warn_FiveMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.warn><>FiveMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_warn_FiveMinuteRate untyped
# HELP metrics_jvm_memory_pools_Metaspace_usage_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Metaspace.usage><>Value)
# TYPE metrics_jvm_memory_pools_Metaspace_usage_Value untyped
# HELP metrics_TimeBoundHealthCheck_pool_terminated_FiveMinuteRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.terminated><>FiveMinuteRate)
# TYPE metrics_TimeBoundHealthCheck_pool_terminated_FiveMinuteRate untyped
# HELP metrics_jersey_client_neo4jRestClient_created_FifteenMinuteRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.created><>FifteenMinuteRate)
# TYPE metrics_jersey_client_neo4jRestClient_created_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_999thPercentile untyped
# HELP metrics_jvm_memory_non_heap_used_Value Attribute exposed for management (metrics<name=jvm.memory.non-heap.used><>Value)
# TYPE metrics_jvm_memory_non_heap_used_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_FiveMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>FiveMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_FiveMinuteRate untyped
# HELP metrics_jvm_classloader_unloaded_Value Attribute exposed for management (metrics<name=jvm.classloader.unloaded><>Value)
# TYPE metrics_jvm_classloader_unloaded_Value untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_75thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>75thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_75thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_95thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>95thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.2xx-responses><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_FiveMinuteRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_50thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>50thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_50thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_OneMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>OneMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_OneMinuteRate untyped
# HELP java_lang_ClassLoading_LoadedClassCount LoadedClassCount (java.lang<type=ClassLoading><>LoadedClassCount)
# TYPE java_lang_ClassLoading_LoadedClassCount untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_OneMinuteRate untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_jobs_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw-admin.jobs><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_jobs_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_98thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_StdDev Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>StdDev)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-dispatches><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-dispatches><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_OneMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_999thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>999thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_MeanRate untyped
# HELP metrics_jvm_threads_timed_waiting_count_Value Attribute exposed for management (metrics<name=jvm.threads.timed_waiting.count><>Value)
# TYPE metrics_jvm_threads_timed_waiting_count_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_99thPercentile untyped
# HELP metrics_TimeBoundHealthCheck_pool_created_OneMinuteRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.created><>OneMinuteRate)
# TYPE metrics_TimeBoundHealthCheck_pool_created_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_98thPercentile untyped
# HELP metrics_jvm_threads_deadlock_count_Value Attribute exposed for management (metrics<name=jvm.threads.deadlock.count><>Value)
# TYPE metrics_jvm_threads_deadlock_count_Value untyped
# HELP metrics_jvm_filedescriptor_Value Attribute exposed for management (metrics<name=jvm.filedescriptor><>Value)
# TYPE metrics_jvm_filedescriptor_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_75thPercentile untyped
# HELP java_nio_BufferPool_MemoryUsed MemoryUsed (java.nio<type=BufferPool, name=direct><>MemoryUsed)
# TYPE java_nio_BufferPool_MemoryUsed untyped
# HELP java_nio_BufferPool_TotalCapacity TotalCapacity (java.nio<type=BufferPool, name=direct><>TotalCapacity)
# TYPE java_nio_BufferPool_TotalCapacity untyped
# HELP java_lang_Memory_HeapMemoryUsage_used java.lang.management.MemoryUsage (java.lang<type=Memory><HeapMemoryUsage>used)
# TYPE java_lang_Memory_HeapMemoryUsage_used untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_98thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.3xx-responses><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_98thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_50thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>50thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_50thPercentile untyped
# HELP java_lang_Threading_ThreadAllocatedMemorySupported ThreadAllocatedMemorySupported (java.lang<type=Threading><>ThreadAllocatedMemorySupported)
# TYPE java_lang_Threading_ThreadAllocatedMemorySupported untyped
# HELP metrics_ch_qos_logback_core_Appender_trace_Count Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.trace><>Count)
# TYPE metrics_ch_qos_logback_core_Appender_trace_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Max untyped
# HELP metrics_jvm_memory_pools_Metaspace_used_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Metaspace.used><>Value)
# TYPE metrics_jvm_memory_pools_Metaspace_used_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_OneMinuteRate untyped
# HELP java_lang_Threading_TotalStartedThreadCount TotalStartedThreadCount (java.lang<type=Threading><>TotalStartedThreadCount)
# TYPE java_lang_Threading_TotalStartedThreadCount untyped
# HELP java_lang_OperatingSystem_SystemLoadAverage SystemLoadAverage (java.lang<type=OperatingSystem><>SystemLoadAverage)
# TYPE java_lang_OperatingSystem_SystemLoadAverage untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Count untyped
# HELP metrics_ch_qos_logback_core_Appender_all_FifteenMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.all><>FifteenMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_all_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-timeouts><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_OneMinuteRate untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_jobs_queue_utilization_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw-admin.jobs-queue-utilization><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_jobs_queue_utilization_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_FifteenMinuteRate untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_max java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageAfterGc>max)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_max untyped
# HELP metrics_ch_qos_logback_core_Appender_error_MeanRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.error><>MeanRate)
# TYPE metrics_ch_qos_logback_core_Appender_error_MeanRate untyped
# HELP metrics_ch_qos_logback_core_Appender_debug_OneMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.debug><>OneMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_debug_OneMinuteRate untyped
# HELP java_lang_OperatingSystem_OpenFileDescriptorCount OpenFileDescriptorCount (java.lang<type=OperatingSystem><>OpenFileDescriptorCount)
# TYPE java_lang_OperatingSystem_OpenFileDescriptorCount untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_50thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Min Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>Min)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Min untyped
# HELP metrics_jvm_memory_pools_PS_Old_Gen_committed_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Old-Gen.committed><>Value)
# TYPE metrics_jvm_memory_pools_PS_Old_Gen_committed_Value untyped
# HELP metrics_jvm_memory_heap_used_Value Attribute exposed for management (metrics<name=jvm.memory.heap.used><>Value)
# TYPE metrics_jvm_memory_heap_used_Value untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_MeanRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>MeanRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_MeanRate untyped
# HELP metrics_jvm_buffers_mapped_capacity_Value Attribute exposed for management (metrics<name=jvm.buffers.mapped.capacity><>Value)
# TYPE metrics_jvm_buffers_mapped_capacity_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_75thPercentile untyped
# HELP metrics_jvm_memory_heap_init_Value Attribute exposed for management (metrics<name=jvm.memory.heap.init><>Value)
# TYPE metrics_jvm_memory_heap_init_Value untyped
# HELP metrics_jersey_client_neo4jRestClient_terminated_MeanRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.terminated><>MeanRate)
# TYPE metrics_jersey_client_neo4jRestClient_terminated_MeanRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_75thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>75thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_75thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_50thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>50thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_50thPercentile untyped
# HELP java_lang_Memory_NonHeapMemoryUsage_used java.lang.management.MemoryUsage (java.lang<type=Memory><NonHeapMemoryUsage>used)
# TYPE java_lang_Memory_NonHeapMemoryUsage_used untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-timeouts><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_MeanRate untyped
# HELP metrics_jvm_memory_pools_PS_Survivor_Space_init_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Survivor-Space.init><>Value)
# TYPE metrics_jvm_memory_pools_PS_Survivor_Space_init_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Count untyped
# HELP metrics_TimeBoundHealthCheck_pool_running_Count Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.running><>Count)
# TYPE metrics_TimeBoundHealthCheck_pool_running_Count untyped
# HELP metrics_jvm_threads_count_Value Attribute exposed for management (metrics<name=jvm.threads.count><>Value)
# TYPE metrics_jvm_threads_count_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Count Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>Count)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Count untyped
# HELP java_lang_ClassLoading_Verbose Verbose (java.lang<type=ClassLoading><>Verbose)
# TYPE java_lang_ClassLoading_Verbose untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_5xx_5m_Value Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.percent-5xx-5m><>Value)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_5xx_5m_Value untyped
# HELP metrics_jvm_memory_pools_Code_Cache_init_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Code-Cache.init><>Value)
# TYPE metrics_jvm_memory_pools_Code_Cache_init_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-timeouts><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Count untyped
# HELP metrics_jvm_memory_pools_Metaspace_init_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Metaspace.init><>Value)
# TYPE metrics_jvm_memory_pools_Metaspace_init_Value untyped
# HELP metrics_ch_qos_logback_core_Appender_debug_FifteenMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.debug><>FifteenMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_debug_FifteenMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Min Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>Min)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Min untyped
# HELP metrics_jvm_memory_pools_PS_Old_Gen_used_after_gc_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Old-Gen.used-after-gc><>Value)
# TYPE metrics_jvm_memory_pools_PS_Old_Gen_used_after_gc_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Max untyped
# HELP java_lang_MemoryPool_Valid Valid (java.lang<type=MemoryPool, name=Code Cache><>Valid)
# TYPE java_lang_MemoryPool_Valid untyped
# HELP java_lang_Threading_CurrentThreadCpuTime CurrentThreadCpuTime (java.lang<type=Threading><>CurrentThreadCpuTime)
# TYPE java_lang_Threading_CurrentThreadCpuTime untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_5xx_15m_Value Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.percent-5xx-15m><>Value)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_5xx_15m_Value untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_OneMinuteRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>OneMinuteRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_OneMinuteRate untyped
# HELP metrics_TimeBoundHealthCheck_pool_created_MeanRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.created><>MeanRate)
# TYPE metrics_TimeBoundHealthCheck_pool_created_MeanRate untyped
# HELP metrics_TimeBoundHealthCheck_pool_terminated_OneMinuteRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.terminated><>OneMinuteRate)
# TYPE metrics_TimeBoundHealthCheck_pool_terminated_OneMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_98thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>98thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_98thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_999thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>999thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_999thPercentile untyped
# HELP metrics_jvm_memory_pools_PS_Survivor_Space_used_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Survivor-Space.used><>Value)
# TYPE metrics_jvm_memory_pools_PS_Survivor_Space_used_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>FifteenMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_FifteenMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_99thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>99thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_99thPercentile untyped
# HELP metrics_jvm_memory_pools_Code_Cache_usage_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Code-Cache.usage><>Value)
# TYPE metrics_jvm_memory_pools_Code_Cache_usage_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_98thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>98thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_98thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_98thPercentile untyped
# HELP java_lang_ClassLoading_UnloadedClassCount UnloadedClassCount (java.lang<type=ClassLoading><>UnloadedClassCount)
# TYPE java_lang_ClassLoading_UnloadedClassCount untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Max untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Count Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>Count)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Count untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_init java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageBeforeGc>init)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_init untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-timeouts><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_OneMinuteRate untyped
# HELP metrics_jvm_classloader_loaded_Value Attribute exposed for management (metrics<name=jvm.classloader.loaded><>Value)
# TYPE metrics_jvm_classloader_loaded_Value untyped
# HELP metrics_jersey_client_neo4jRestClient_running_Count Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.running><>Count)
# TYPE metrics_jersey_client_neo4jRestClient_running_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_active_suspended_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.active-suspended><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_active_suspended_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Min untyped
# HELP java_lang_MemoryPool_CollectionUsageThresholdExceeded CollectionUsageThresholdExceeded (java.lang<type=MemoryPool, name=PS Old Gen><>CollectionUsageThresholdExceeded)
# TYPE java_lang_MemoryPool_CollectionUsageThresholdExceeded untyped
# HELP java_lang_MemoryPool_UsageThresholdSupported UsageThresholdSupported (java.lang<type=MemoryPool, name=Code Cache><>UsageThresholdSupported)
# TYPE java_lang_MemoryPool_UsageThresholdSupported untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Mean untyped
# HELP java_lang_Threading_ThreadContentionMonitoringEnabled ThreadContentionMonitoringEnabled (java.lang<type=Threading><>ThreadContentionMonitoringEnabled)
# TYPE java_lang_Threading_ThreadContentionMonitoringEnabled untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_Count untyped
# HELP metrics_jvm_memory_pools_PS_Eden_Space_usage_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Eden-Space.usage><>Value)
# TYPE metrics_jvm_memory_pools_PS_Eden_Space_usage_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Count Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>Count)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.2xx-responses><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_MeanRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_FiveMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>FiveMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_FiveMinuteRate untyped
# HELP metrics_jvm_gc_PS_Scavenge_count_Value Attribute exposed for management (metrics<name=jvm.gc.PS-Scavenge.count><>Value)
# TYPE metrics_jvm_gc_PS_Scavenge_count_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_75thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>75thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_OneMinuteRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Min Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>Min)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Min untyped
# HELP java_lang_OperatingSystem_MaxFileDescriptorCount MaxFileDescriptorCount (java.lang<type=OperatingSystem><>MaxFileDescriptorCount)
# TYPE java_lang_OperatingSystem_MaxFileDescriptorCount untyped
# HELP metrics_ch_qos_logback_core_Appender_debug_MeanRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.debug><>MeanRate)
# TYPE metrics_ch_qos_logback_core_Appender_debug_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Mean untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_95thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>95thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_95thPercentile untyped
# HELP java_lang_Threading_CurrentThreadUserTime CurrentThreadUserTime (java.lang<type=Threading><>CurrentThreadUserTime)
# TYPE java_lang_Threading_CurrentThreadUserTime untyped
# HELP java_lang_Threading_ThreadCount ThreadCount (java.lang<type=Threading><>ThreadCount)
# TYPE java_lang_Threading_ThreadCount untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.1xx-responses><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_Count untyped
# HELP java_lang_MemoryPool_Usage_used java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><Usage>used)
# TYPE java_lang_MemoryPool_Usage_used untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_99thPercentile untyped
# HELP java_lang_Threading_SynchronizerUsageSupported SynchronizerUsageSupported (java.lang<type=Threading><>SynchronizerUsageSupported)
# TYPE java_lang_Threading_SynchronizerUsageSupported untyped
# HELP metrics_jersey_client_neo4jRestClient_created_FiveMinuteRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.created><>FiveMinuteRate)
# TYPE metrics_jersey_client_neo4jRestClient_created_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_StdDev Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>StdDev)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_StdDev untyped
# HELP metrics_jvm_memory_pools_PS_Survivor_Space_committed_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Survivor-Space.committed><>Value)
# TYPE metrics_jvm_memory_pools_PS_Survivor_Space_committed_Value untyped
# HELP java_lang_GarbageCollector_LastGcInfo_GcThreadCount CompositeType for GC info for PS Scavenge (java.lang<type=GarbageCollector, name=PS Scavenge><LastGcInfo>GcThreadCount)
# TYPE java_lang_GarbageCollector_LastGcInfo_GcThreadCount untyped
# HELP java_lang_Threading_CurrentThreadCpuTimeSupported CurrentThreadCpuTimeSupported (java.lang<type=Threading><>CurrentThreadCpuTimeSupported)
# TYPE java_lang_Threading_CurrentThreadCpuTimeSupported untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.5xx-responses><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_MeanRate untyped
# HELP metrics_ch_qos_logback_core_Appender_info_FifteenMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.info><>FifteenMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_info_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_95thPercentile untyped
# HELP metrics_jvm_memory_non_heap_max_Value Attribute exposed for management (metrics<name=jvm.memory.non-heap.max><>Value)
# TYPE metrics_jvm_memory_non_heap_max_Value untyped
# HELP java_lang_GarbageCollector_Valid Valid (java.lang<type=GarbageCollector, name=PS Scavenge><>Valid)
# TYPE java_lang_GarbageCollector_Valid untyped
# HELP java_lang_MemoryManager_Valid Valid (java.lang<type=MemoryManager, name=CodeCacheManager><>Valid)
# TYPE java_lang_MemoryManager_Valid untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_utilization_max_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw-admin.utilization-max><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_utilization_max_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_50thPercentile untyped
# HELP metrics_jersey_client_neo4jRestClient_created_Count Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.created><>Count)
# TYPE metrics_jersey_client_neo4jRestClient_created_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_999thPercentile untyped
# HELP metrics_jvm_memory_pools_PS_Survivor_Space_used_after_gc_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Survivor-Space.used-after-gc><>Value)
# TYPE metrics_jvm_memory_pools_PS_Survivor_Space_used_after_gc_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Mean untyped
# HELP java_lang_Compilation_CompilationTimeMonitoringSupported CompilationTimeMonitoringSupported (java.lang<type=Compilation><>CompilationTimeMonitoringSupported)
# TYPE java_lang_Compilation_CompilationTimeMonitoringSupported untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_5xx_1m_Value Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.percent-5xx-1m><>Value)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_5xx_1m_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_FifteenMinuteRate untyped
# HELP java_lang_OperatingSystem_AvailableProcessors AvailableProcessors (java.lang<type=OperatingSystem><>AvailableProcessors)
# TYPE java_lang_OperatingSystem_AvailableProcessors untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_MeanRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_StdDev Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>StdDev)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_StdDev untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Mean Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>Mean)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_95thPercentile untyped
# HELP java_lang_MemoryPool_CollectionUsage_used java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=PS Old Gen><CollectionUsage>used)
# TYPE java_lang_MemoryPool_CollectionUsage_used untyped
# HELP metrics_ch_qos_logback_core_Appender_info_Count Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.info><>Count)
# TYPE metrics_ch_qos_logback_core_Appender_info_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Min untyped
# HELP java_lang_Threading_ThreadCpuTimeSupported ThreadCpuTimeSupported (java.lang<type=Threading><>ThreadCpuTimeSupported)
# TYPE java_lang_Threading_ThreadCpuTimeSupported untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_99thPercentile untyped
# HELP metrics_jersey_client_neo4jRestClient_terminated_Count Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.terminated><>Count)
# TYPE metrics_jersey_client_neo4jRestClient_terminated_Count untyped
# HELP metrics_jvm_threads_waiting_count_Value Attribute exposed for management (metrics<name=jvm.threads.waiting.count><>Value)
# TYPE metrics_jvm_threads_waiting_count_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_MeanRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>MeanRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_MeanRate untyped
# HELP java_lang_Threading_ObjectMonitorUsageSupported ObjectMonitorUsageSupported (java.lang<type=Threading><>ObjectMonitorUsageSupported)
# TYPE java_lang_Threading_ObjectMonitorUsageSupported untyped
# HELP java_lang_GarbageCollector_LastGcInfo_duration CompositeType for GC info for PS Scavenge (java.lang<type=GarbageCollector, name=PS Scavenge><LastGcInfo>duration)
# TYPE java_lang_GarbageCollector_LastGcInfo_duration untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Max untyped
# HELP metrics_jvm_memory_pools_Metaspace_max_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Metaspace.max><>Value)
# TYPE metrics_jvm_memory_pools_Metaspace_max_Value untyped
# HELP java_lang_Threading_ThreadCpuTimeEnabled ThreadCpuTimeEnabled (java.lang<type=Threading><>ThreadCpuTimeEnabled)
# TYPE java_lang_Threading_ThreadCpuTimeEnabled untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Count Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>Count)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_75thPercentile untyped
# HELP metrics_jvm_buffers_direct_capacity_Value Attribute exposed for management (metrics<name=jvm.buffers.direct.capacity><>Value)
# TYPE metrics_jvm_buffers_direct_capacity_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.5xx-responses><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_5xx_responses_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_999thPercentile untyped
# HELP metrics_jvm_memory_non_heap_committed_Value Attribute exposed for management (metrics<name=jvm.memory.non-heap.committed><>Value)
# TYPE metrics_jvm_memory_non_heap_committed_Value untyped
# HELP metrics_jvm_memory_pools_PS_Eden_Space_init_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Eden-Space.init><>Value)
# TYPE metrics_jvm_memory_pools_PS_Eden_Space_init_Value untyped
# HELP metrics_ch_qos_logback_core_Appender_warn_FifteenMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.warn><>FifteenMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_warn_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_98thPercentile untyped
# HELP metrics_jvm_threads_blocked_count_Value Attribute exposed for management (metrics<name=jvm.threads.blocked.count><>Value)
# TYPE metrics_jvm_threads_blocked_count_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_OneMinuteRate untyped
# HELP metrics_jvm_buffers_mapped_used_Value Attribute exposed for management (metrics<name=jvm.buffers.mapped.used><>Value)
# TYPE metrics_jvm_buffers_mapped_used_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_95thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Count Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>Count)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Count untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Max Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>Max)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Max untyped
# HELP metrics_TimeBoundHealthCheck_pool_created_FiveMinuteRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.created><>FiveMinuteRate)
# TYPE metrics_TimeBoundHealthCheck_pool_created_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Mean Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>Mean)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Min Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>Min)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Min untyped
# HELP java_nio_BufferPool_Count Count (java.nio<type=BufferPool, name=direct><>Count)
# TYPE java_nio_BufferPool_Count untyped
# HELP metrics_ch_qos_logback_core_Appender_all_Count Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.all><>Count)
# TYPE metrics_ch_qos_logback_core_Appender_all_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.1xx-responses><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.1xx-responses><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_OneMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>OneMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_OneMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_StdDev Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>StdDev)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_StdDev untyped
# HELP java_lang_Threading_ThreadAllocatedMemoryEnabled ThreadAllocatedMemoryEnabled (java.lang<type=Threading><>ThreadAllocatedMemoryEnabled)
# TYPE java_lang_Threading_ThreadAllocatedMemoryEnabled untyped
# HELP java_lang_OperatingSystem_ProcessCpuLoad ProcessCpuLoad (java.lang<type=OperatingSystem><>ProcessCpuLoad)
# TYPE java_lang_OperatingSystem_ProcessCpuLoad untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Mean Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>Mean)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Mean untyped
# HELP java_lang_Memory_NonHeapMemoryUsage_committed java.lang.management.MemoryUsage (java.lang<type=Memory><NonHeapMemoryUsage>committed)
# TYPE java_lang_Memory_NonHeapMemoryUsage_committed untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_FifteenMinuteRate untyped
# HELP java_lang_OperatingSystem_FreeSwapSpaceSize FreeSwapSpaceSize (java.lang<type=OperatingSystem><>FreeSwapSpaceSize)
# TYPE java_lang_OperatingSystem_FreeSwapSpaceSize untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_size_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw-admin.size><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_size_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>FifteenMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_FifteenMinuteRate untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_jobs_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw.jobs><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_jobs_Value untyped
# HELP java_lang_Memory_NonHeapMemoryUsage_init java.lang.management.MemoryUsage (java.lang<type=Memory><NonHeapMemoryUsage>init)
# TYPE java_lang_Memory_NonHeapMemoryUsage_init untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Count untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_utilization_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw.utilization><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_utilization_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.3xx-responses><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_Count untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_75thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>75thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_StdDev untyped
# HELP metrics_ch_qos_logback_core_Appender_error_FiveMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.error><>FiveMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_error_FiveMinuteRate untyped
# HELP java_lang_Memory_HeapMemoryUsage_init java.lang.management.MemoryUsage (java.lang<type=Memory><HeapMemoryUsage>init)
# TYPE java_lang_Memory_HeapMemoryUsage_init untyped
# HELP metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_pending_connections_Value Attribute exposed for management (metrics<name=org.apache.http.conn.HttpClientConnectionManager.neo4jRestClient.pending-connections><>Value)
# TYPE metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_pending_connections_Value untyped
# HELP metrics_jvm_memory_pools_Code_Cache_max_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Code-Cache.max><>Value)
# TYPE metrics_jvm_memory_pools_Code_Cache_max_Value untyped
# HELP metrics_jvm_memory_pools_Compressed_Class_Space_init_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Compressed-Class-Space.init><>Value)
# TYPE metrics_jvm_memory_pools_Compressed_Class_Space_init_Value untyped
# HELP metrics_jvm_threads_terminated_count_Value Attribute exposed for management (metrics<name=jvm.threads.terminated.count><>Value)
# TYPE metrics_jvm_threads_terminated_count_Value untyped
# HELP java_lang_Runtime_Uptime Uptime (java.lang<type=Runtime><>Uptime)
# TYPE java_lang_Runtime_Uptime untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_MeanRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>MeanRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_MeanRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_999thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>999thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_Min untyped
# HELP metrics_jvm_memory_heap_usage_Value Attribute exposed for management (metrics<name=jvm.memory.heap.usage><>Value)
# TYPE metrics_jvm_memory_heap_usage_Value untyped
# HELP metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_leased_connections_Value Attribute exposed for management (metrics<name=org.apache.http.conn.HttpClientConnectionManager.neo4jRestClient.leased-connections><>Value)
# TYPE metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_leased_connections_Value untyped
# HELP metrics_jvm_memory_heap_max_Value Attribute exposed for management (metrics<name=jvm.memory.heap.max><>Value)
# TYPE metrics_jvm_memory_heap_max_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Count untyped
# HELP metrics_jvm_threads_runnable_count_Value Attribute exposed for management (metrics<name=jvm.threads.runnable.count><>Value)
# TYPE metrics_jvm_threads_runnable_count_Value untyped
# HELP metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_max_connections_Value Attribute exposed for management (metrics<name=org.apache.http.conn.HttpClientConnectionManager.neo4jRestClient.max-connections><>Value)
# TYPE metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_max_connections_Value untyped
# HELP metrics_jvm_memory_non_heap_usage_Value Attribute exposed for management (metrics<name=jvm.memory.non-heap.usage><>Value)
# TYPE metrics_jvm_memory_non_heap_usage_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_4xx_1m_Value Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.percent-4xx-1m><>Value)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_4xx_1m_Value untyped
# HELP metrics_jvm_buffers_mapped_count_Value Attribute exposed for management (metrics<name=jvm.buffers.mapped.count><>Value)
# TYPE metrics_jvm_buffers_mapped_count_Value untyped
# HELP metrics_jvm_memory_heap_committed_Value Attribute exposed for management (metrics<name=jvm.memory.heap.committed><>Value)
# TYPE metrics_jvm_memory_heap_committed_Value untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_FiveMinuteRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>FiveMinuteRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_FiveMinuteRate untyped
# HELP java_lang_OperatingSystem_CommittedVirtualMemorySize CommittedVirtualMemorySize (java.lang<type=OperatingSystem><>CommittedVirtualMemorySize)
# TYPE java_lang_OperatingSystem_CommittedVirtualMemorySize untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_FiveMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>FiveMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_StdDev untyped
# HELP metrics_jersey_client_neo4jRestClient_created_OneMinuteRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.created><>OneMinuteRate)
# TYPE metrics_jersey_client_neo4jRestClient_created_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_FifteenMinuteRate untyped
# HELP metrics_TimeBoundHealthCheck_pool_created_FifteenMinuteRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.created><>FifteenMinuteRate)
# TYPE metrics_TimeBoundHealthCheck_pool_created_FifteenMinuteRate untyped
# HELP metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_available_connections_Value Attribute exposed for management (metrics<name=org.apache.http.conn.HttpClientConnectionManager.neo4jRestClient.available-connections><>Value)
# TYPE metrics_org_apache_http_conn_HttpClientConnectionManager_neo4jRestClient_available_connections_Value untyped
# HELP java_lang_MemoryPool_CollectionUsage_max java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=PS Old Gen><CollectionUsage>max)
# TYPE java_lang_MemoryPool_CollectionUsage_max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_999thPercentile untyped
# HELP java_lang_Memory_HeapMemoryUsage_max java.lang.management.MemoryUsage (java.lang<type=Memory><HeapMemoryUsage>max)
# TYPE java_lang_Memory_HeapMemoryUsage_max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_MeanRate untyped
# HELP metrics_jvm_attribute_uptime_Value Attribute exposed for management (metrics<name=jvm.attribute.uptime><>Value)
# TYPE metrics_jvm_attribute_uptime_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_75thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_98thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>98thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_98thPercentile untyped
# HELP java_lang_MemoryPool_PeakUsage_used java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><PeakUsage>used)
# TYPE java_lang_MemoryPool_PeakUsage_used untyped
# HELP metrics_jvm_memory_total_max_Value Attribute exposed for management (metrics<name=jvm.memory.total.max><>Value)
# TYPE metrics_jvm_memory_total_max_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_98thPercentile untyped
# HELP metrics_ch_qos_logback_core_Appender_debug_FiveMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.debug><>FiveMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_debug_FiveMinuteRate untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_committed java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageAfterGc>committed)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_committed untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_FifteenMinuteRate untyped
# HELP metrics_ch_qos_logback_core_Appender_info_FiveMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.info><>FiveMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_info_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_50thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>50thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_50thPercentile untyped
# HELP java_lang_GarbageCollector_CollectionCount CollectionCount (java.lang<type=GarbageCollector, name=PS Scavenge><>CollectionCount)
# TYPE java_lang_GarbageCollector_CollectionCount untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-dispatches><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_Count untyped
# HELP metrics_jvm_memory_total_init_Value Attribute exposed for management (metrics<name=jvm.memory.total.init><>Value)
# TYPE metrics_jvm_memory_total_init_Value untyped
# HELP metrics_jvm_buffers_direct_used_Value Attribute exposed for management (metrics<name=jvm.buffers.direct.used><>Value)
# TYPE metrics_jvm_buffers_direct_used_Value untyped
# HELP java_lang_MemoryPool_PeakUsage_max java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><PeakUsage>max)
# TYPE java_lang_MemoryPool_PeakUsage_max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_999thPercentile untyped
# HELP java_lang_MemoryPool_Usage_max java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><Usage>max)
# TYPE java_lang_MemoryPool_Usage_max untyped
# HELP java_lang_MemoryPool_Usage_init java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><Usage>init)
# TYPE java_lang_MemoryPool_Usage_init untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.1xx-responses><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_1xx_responses_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.2xx-responses><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_Count untyped
# HELP metrics_jersey_client_neo4jRestClient_terminated_FiveMinuteRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.terminated><>FiveMinuteRate)
# TYPE metrics_jersey_client_neo4jRestClient_terminated_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_MeanRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_FifteenMinuteRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>FifteenMinuteRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_FifteenMinuteRate untyped
# HELP metrics_jvm_memory_total_committed_Value Attribute exposed for management (metrics<name=jvm.memory.total.committed><>Value)
# TYPE metrics_jvm_memory_total_committed_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-timeouts><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_timeouts_FiveMinuteRate untyped
# HELP metrics_TimeBoundHealthCheck_pool_terminated_Count Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.terminated><>Count)
# TYPE metrics_TimeBoundHealthCheck_pool_terminated_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.2xx-responses><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Count untyped
# HELP metrics_ch_qos_logback_core_Appender_trace_MeanRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.trace><>MeanRate)
# TYPE metrics_ch_qos_logback_core_Appender_trace_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.3xx-responses><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Mean untyped
# HELP metrics_jvm_memory_pools_PS_Old_Gen_usage_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Old-Gen.usage><>Value)
# TYPE metrics_jvm_memory_pools_PS_Old_Gen_usage_Value untyped
# HELP metrics_jvm_memory_non_heap_init_Value Attribute exposed for management (metrics<name=jvm.memory.non-heap.init><>Value)
# TYPE metrics_jvm_memory_non_heap_init_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>FifteenMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.4xx-responses><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_OneMinuteRate untyped
# HELP metrics_jvm_memory_pools_Code_Cache_used_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Code-Cache.used><>Value)
# TYPE metrics_jvm_memory_pools_Code_Cache_used_Value untyped
# HELP metrics_jvm_memory_pools_Compressed_Class_Space_max_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Compressed-Class-Space.max><>Value)
# TYPE metrics_jvm_memory_pools_Compressed_Class_Space_max_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_MeanRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>MeanRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_MeanRate untyped
# HELP metrics_jvm_memory_pools_PS_Old_Gen_init_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Old-Gen.init><>Value)
# TYPE metrics_jvm_memory_pools_PS_Old_Gen_init_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_75thPercentile untyped
# HELP metrics_jvm_threads_new_count_Value Attribute exposed for management (metrics<name=jvm.threads.new.count><>Value)
# TYPE metrics_jvm_threads_new_count_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_FiveMinuteRate untyped
# HELP metrics_ch_qos_logback_core_Appender_trace_FifteenMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.trace><>FifteenMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_trace_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_active_dispatches_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.active-dispatches><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_active_dispatches_Count untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_used java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageAfterGc>used)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageAfterGc_used untyped
# HELP metrics_jvm_memory_pools_PS_Eden_Space_used_after_gc_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Eden-Space.used-after-gc><>Value)
# TYPE metrics_jvm_memory_pools_PS_Eden_Space_used_after_gc_Value untyped
# HELP java_lang_OperatingSystem_TotalSwapSpaceSize TotalSwapSpaceSize (java.lang<type=OperatingSystem><>TotalSwapSpaceSize)
# TYPE java_lang_OperatingSystem_TotalSwapSpaceSize untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_99thPercentile untyped
# HELP java_lang_Memory_HeapMemoryUsage_committed java.lang.management.MemoryUsage (java.lang<type=Memory><HeapMemoryUsage>committed)
# TYPE java_lang_Memory_HeapMemoryUsage_committed untyped
# HELP metrics_jersey_client_neo4jRestClient_terminated_OneMinuteRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.terminated><>OneMinuteRate)
# TYPE metrics_jersey_client_neo4jRestClient_terminated_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_95thPercentile untyped
# HELP metrics_ch_qos_logback_core_Appender_trace_FiveMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.trace><>FiveMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_trace_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_OneMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>OneMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.3xx-responses><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_98thPercentile untyped
# HELP metrics_jvm_gc_PS_MarkSweep_count_Value Attribute exposed for management (metrics<name=jvm.gc.PS-MarkSweep.count><>Value)
# TYPE metrics_jvm_gc_PS_MarkSweep_count_Value untyped
# HELP metrics_ch_qos_logback_core_Appender_info_MeanRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.info><>MeanRate)
# TYPE metrics_ch_qos_logback_core_Appender_info_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>Mean)
100 207k 100 207k 0 0 623k 0 --:--:-- --:--:-- --:--:-- 637k
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Mean untyped
# HELP metrics_jvm_memory_pools_Compressed_Class_Space_usage_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Compressed-Class-Space.usage><>Value)
# TYPE metrics_jvm_memory_pools_Compressed_Class_Space_usage_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Max Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.delete-requests><>Max)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_delete_requests_Max untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_StdDev Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>StdDev)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_50thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>50thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_50thPercentile untyped
# HELP java_lang_GarbageCollector_LastGcInfo_id CompositeType for GC info for PS Scavenge (java.lang<type=GarbageCollector, name=PS Scavenge><LastGcInfo>id)
# TYPE java_lang_GarbageCollector_LastGcInfo_id untyped
# HELP metrics_jvm_memory_pools_Metaspace_committed_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Metaspace.committed><>Value)
# TYPE metrics_jvm_memory_pools_Metaspace_committed_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_StdDev untyped
# HELP metrics_jvm_memory_pools_PS_Eden_Space_max_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Eden-Space.max><>Value)
# TYPE metrics_jvm_memory_pools_PS_Eden_Space_max_Value untyped
# HELP metrics_ch_qos_logback_core_Appender_all_FiveMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.all><>FiveMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_all_FiveMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Mean Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>Mean)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Mean untyped
# HELP metrics_jvm_memory_pools_PS_Old_Gen_max_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Old-Gen.max><>Value)
# TYPE metrics_jvm_memory_pools_PS_Old_Gen_max_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Count untyped
# HELP metrics_ch_qos_logback_core_Appender_warn_OneMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.warn><>OneMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_warn_OneMinuteRate untyped
# HELP java_lang_Runtime_BootClassPathSupported BootClassPathSupported (java.lang<type=Runtime><>BootClassPathSupported)
# TYPE java_lang_Runtime_BootClassPathSupported untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_75thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Min Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>Min)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_Min untyped
# HELP java_lang_MemoryPool_CollectionUsage_init java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=PS Old Gen><CollectionUsage>init)
# TYPE java_lang_MemoryPool_CollectionUsage_init untyped
# HELP metrics_TimeBoundHealthCheck_pool_terminated_MeanRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.terminated><>MeanRate)
# TYPE metrics_TimeBoundHealthCheck_pool_terminated_MeanRate untyped
# HELP java_lang_MemoryPool_CollectionUsage_committed java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=PS Old Gen><CollectionUsage>committed)
# TYPE java_lang_MemoryPool_CollectionUsage_committed untyped
# HELP java_lang_OperatingSystem_TotalPhysicalMemorySize TotalPhysicalMemorySize (java.lang<type=OperatingSystem><>TotalPhysicalMemorySize)
# TYPE java_lang_OperatingSystem_TotalPhysicalMemorySize untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_Mean untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_utilization_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw-admin.utilization><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_admin_utilization_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_4xx_15m_Value Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.percent-4xx-15m><>Value)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_4xx_15m_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_95thPercentile untyped
# HELP java_lang_GarbageCollector_CollectionTime CollectionTime (java.lang<type=GarbageCollector, name=PS Scavenge><>CollectionTime)
# TYPE java_lang_GarbageCollector_CollectionTime untyped
# HELP java_lang_MemoryPool_Usage_committed java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><Usage>committed)
# TYPE java_lang_MemoryPool_Usage_committed untyped
# HELP metrics_ch_qos_logback_core_Appender_all_OneMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.all><>OneMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_all_OneMinuteRate untyped
# HELP java_lang_MemoryPool_PeakUsage_init java.lang.management.MemoryUsage (java.lang<type=MemoryPool, name=Code Cache><PeakUsage>init)
# TYPE java_lang_MemoryPool_PeakUsage_init untyped
# HELP metrics_ch_qos_logback_core_Appender_error_OneMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.error><>OneMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_error_OneMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_99thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>99thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_OneMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_StdDev Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>StdDev)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.post-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_post_requests_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_StdDev untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_999thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>999thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_Max untyped
# HELP metrics_ch_qos_logback_core_Appender_info_OneMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.info><>OneMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_info_OneMinuteRate untyped
# HELP java_lang_OperatingSystem_FreePhysicalMemorySize FreePhysicalMemorySize (java.lang<type=OperatingSystem><>FreePhysicalMemorySize)
# TYPE java_lang_OperatingSystem_FreePhysicalMemorySize untyped
# HELP metrics_jvm_memory_total_used_Value Attribute exposed for management (metrics<name=jvm.memory.total.used><>Value)
# TYPE metrics_jvm_memory_total_used_Value untyped
# HELP metrics_jvm_memory_pools_PS_Survivor_Space_usage_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Survivor-Space.usage><>Value)
# TYPE metrics_jvm_memory_pools_PS_Survivor_Space_usage_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_FiveMinuteRate untyped
# HELP metrics_jvm_gc_PS_MarkSweep_time_Value Attribute exposed for management (metrics<name=jvm.gc.PS-MarkSweep.time><>Value)
# TYPE metrics_jvm_gc_PS_MarkSweep_time_Value untyped
# HELP java_lang_MemoryPool_UsageThresholdCount UsageThresholdCount (java.lang<type=MemoryPool, name=Code Cache><>UsageThresholdCount)
# TYPE java_lang_MemoryPool_UsageThresholdCount untyped
# HELP metrics_ch_qos_logback_core_Appender_warn_Count Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.warn><>Count)
# TYPE metrics_ch_qos_logback_core_Appender_warn_Count untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_99thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>99thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.2xx-responses><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_2xx_responses_FiveMinuteRate untyped
# HELP metrics_TimeBoundHealthCheck_pool_created_Count Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.created><>Count)
# TYPE metrics_TimeBoundHealthCheck_pool_created_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_4xx_5m_Value Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.percent-4xx-5m><>Value)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_percent_4xx_5m_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_999thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Count untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_OneMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>OneMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_OneMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-dispatches><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_FiveMinuteRate untyped
# HELP java_lang_MemoryPool_CollectionUsageThresholdCount CollectionUsageThresholdCount (java.lang<type=MemoryPool, name=PS Old Gen><>CollectionUsageThresholdCount)
# TYPE java_lang_MemoryPool_CollectionUsageThresholdCount untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_95thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>95thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_95thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_99thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>99thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_99thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_98thPercentile untyped
# HELP metrics_ch_qos_logback_core_Appender_trace_OneMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.trace><>OneMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_trace_OneMinuteRate untyped
# HELP metrics_jvm_memory_pools_Compressed_Class_Space_used_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Compressed-Class-Space.used><>Value)
# TYPE metrics_jvm_memory_pools_Compressed_Class_Space_used_Value untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_50thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>50thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_50thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.4xx-responses><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_Count untyped
# HELP java_lang_Memory_ObjectPendingFinalizationCount ObjectPendingFinalizationCount (java.lang<type=Memory><>ObjectPendingFinalizationCount)
# TYPE java_lang_Memory_ObjectPendingFinalizationCount untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_utilization_max_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw.utilization-max><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_utilization_max_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_95thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_95thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>95thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_75thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.options-requests><>75thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_options_requests_75thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.trace-requests><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_trace_requests_Count untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_committed java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageBeforeGc>committed)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_committed untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_99thPercentile untyped
# HELP metrics_ch_qos_logback_core_Appender_error_FifteenMinuteRate Attribute exposed for management (metrics<name=ch.qos.logback.core.Appender.error><>FifteenMinuteRate)
# TYPE metrics_ch_qos_logback_core_Appender_error_FifteenMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>FifteenMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_FifteenMinuteRate untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Min Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>Min)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_Min untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_used java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageBeforeGc>used)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_used untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_999thPercentile Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>999thPercentile)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_999thPercentile untyped
# HELP java_lang_Compilation_TotalCompilationTime TotalCompilationTime (java.lang<type=Compilation><>TotalCompilationTime)
# TYPE java_lang_Compilation_TotalCompilationTime untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.get-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_get_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_98thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>98thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_98thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_OneMinuteRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.post-requests><>OneMinuteRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_post_requests_OneMinuteRate untyped
# HELP metrics_jvm_memory_pools_Code_Cache_committed_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Code-Cache.committed><>Value)
# TYPE metrics_jvm_memory_pools_Code_Cache_committed_Value untyped
# HELP java_lang_MemoryPool_UsageThresholdExceeded UsageThresholdExceeded (java.lang<type=MemoryPool, name=Code Cache><>UsageThresholdExceeded)
# TYPE java_lang_MemoryPool_UsageThresholdExceeded untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_Max untyped
# HELP metrics_TimeBoundHealthCheck_pool_terminated_FifteenMinuteRate Attribute exposed for management (metrics<name=TimeBoundHealthCheck-pool.terminated><>FifteenMinuteRate)
# TYPE metrics_TimeBoundHealthCheck_pool_terminated_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_MeanRate untyped
# HELP java_lang_GarbageCollector_LastGcInfo_startTime CompositeType for GC info for PS Scavenge (java.lang<type=GarbageCollector, name=PS Scavenge><LastGcInfo>startTime)
# TYPE java_lang_GarbageCollector_LastGcInfo_startTime untyped
# HELP metrics_jersey_client_neo4jRestClient_terminated_FifteenMinuteRate Attribute exposed for management (metrics<name=jersey-client-neo4jRestClient.terminated><>FifteenMinuteRate)
# TYPE metrics_jersey_client_neo4jRestClient_terminated_FifteenMinuteRate untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_FifteenMinuteRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>FifteenMinuteRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_FifteenMinuteRate untyped
# HELP java_lang_MemoryPool_CollectionUsageThresholdSupported CollectionUsageThresholdSupported (java.lang<type=MemoryPool, name=Code Cache><>CollectionUsageThresholdSupported)
# TYPE java_lang_MemoryPool_CollectionUsageThresholdSupported untyped
# HELP java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_max java.lang.management.MemoryUsage (java.lang<type=GarbageCollector, name=PS Scavenge, key=Compressed Class Space><LastGcInfo, memoryUsageBeforeGc>max)
# TYPE java_lang_GarbageCollector_LastGcInfo_memoryUsageBeforeGc_max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_99thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Max Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.get-requests><>Max)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_get_requests_Max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_99thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>99thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_99thPercentile untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_95thPercentile Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8080.connections><>95thPercentile)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8080_connections_95thPercentile untyped
# HELP metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_MeanRate Attribute exposed for management (metrics<name=org.apache.http.client.HttpClient.neo4jRestClient.put-requests><>MeanRate)
# TYPE metrics_org_apache_http_client_HttpClient_neo4jRestClient_put_requests_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_Max untyped
# HELP java_lang_OperatingSystem_SystemCpuLoad SystemCpuLoad (java.lang<type=OperatingSystem><>SystemCpuLoad)
# TYPE java_lang_OperatingSystem_SystemCpuLoad untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_FiveMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.other-requests><>FiveMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_other_requests_FiveMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_Count Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.4xx-responses><>Count)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_4xx_responses_Count untyped
# HELP metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_jobs_queue_utilization_Value Attribute exposed for management (metrics<name=org.eclipse.jetty.util.thread.QueuedThreadPool.dw.jobs-queue-utilization><>Value)
# TYPE metrics_org_eclipse_jetty_util_thread_QueuedThreadPool_dw_jobs_queue_utilization_Value untyped
# HELP java_lang_Threading_DaemonThreadCount DaemonThreadCount (java.lang<type=Threading><>DaemonThreadCount)
# TYPE java_lang_Threading_DaemonThreadCount untyped
# HELP metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_MeanRate Attribute exposed for management (metrics<name=org.eclipse.jetty.server.HttpConnectionFactory.8081.connections><>MeanRate)
# TYPE metrics_org_eclipse_jetty_server_HttpConnectionFactory_8081_connections_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_FifteenMinuteRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_StdDev Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>StdDev)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_StdDev untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Max Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.head-requests><>Max)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_head_requests_Max untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_FifteenMinuteRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.async-dispatches><>FifteenMinuteRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_async_dispatches_FifteenMinuteRate untyped
# HELP metrics_jvm_memory_pools_PS_Eden_Space_committed_Value Attribute exposed for management (metrics<name=jvm.memory.pools.PS-Eden-Space.committed><>Value)
# TYPE metrics_jvm_memory_pools_PS_Eden_Space_committed_Value untyped
# HELP metrics_jvm_memory_pools_Compressed_Class_Space_committed_Value Attribute exposed for management (metrics<name=jvm.memory.pools.Compressed-Class-Space.committed><>Value)
# TYPE metrics_jvm_memory_pools_Compressed_Class_Space_committed_Value untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Mean Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.dispatches><>Mean)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_dispatches_Mean untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_MeanRate Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.3xx-responses><>MeanRate)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_3xx_responses_MeanRate untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.delete-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_delete_requests_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_95thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.move-requests><>95thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_move_requests_95thPercentile untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Min Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.put-requests><>Min)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_put_requests_Min untyped
# HELP metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_999thPercentile Attribute exposed for management (metrics<name=io.dropwizard.jetty.MutableServletContextHandler.connect-requests><>999thPercentile)
# TYPE metrics_io_dropwizard_jetty_MutableServletContextHandler_connect_requests_999thPercentile untyped
# HELP jmx_scrape_duration_seconds Time this JMX scrape took, in seconds.
# TYPE jmx_scrape_duration_seconds gauge
# HELP jmx_scrape_error Non-zero if this scrape failed.
# TYPE jmx_scrape_error gauge
# HELP jvm_classes_loaded The number of classes that are currently loaded in the JVM
# TYPE jvm_classes_loaded gauge
# HELP jvm_classes_loaded_total The total number of classes that have been loaded since the JVM has started execution
# TYPE jvm_classes_loaded_total counter
# HELP jvm_classes_unloaded_total The total number of classes that have been unloaded since the JVM has started execution
# TYPE jvm_classes_unloaded_total counter
# HELP jmx_config_reload_success_total Number of times configuration have successfully been reloaded.
# TYPE jmx_config_reload_success_total counter
# HELP jvm_buffer_pool_used_bytes Used bytes of a given JVM buffer pool.
# TYPE jvm_buffer_pool_used_bytes gauge
# HELP jvm_buffer_pool_capacity_bytes Bytes capacity of a given JVM buffer pool.
# TYPE jvm_buffer_pool_capacity_bytes gauge
# HELP jvm_buffer_pool_used_buffers Used buffers of a given JVM buffer pool.
# TYPE jvm_buffer_pool_used_buffers gauge
# HELP jvm_gc_collection_seconds Time spent in a given JVM garbage collector in seconds.
# TYPE jvm_gc_collection_seconds summary
# HELP jmx_exporter_build_info A metric with a constant '1' value labeled with the version of the JMX exporter.
# TYPE jmx_exporter_build_info gauge
# HELP jvm_memory_bytes_used Used bytes of a given JVM memory area.
# TYPE jvm_memory_bytes_used gauge
# HELP jvm_memory_bytes_committed Committed (bytes) of a given JVM memory area.
# TYPE jvm_memory_bytes_committed gauge
# HELP jvm_memory_bytes_max Max (bytes) of a given JVM memory area.
# TYPE jvm_memory_bytes_max gauge
# HELP jvm_memory_bytes_init Initial bytes of a given JVM memory area.
# TYPE jvm_memory_bytes_init gauge
# HELP jvm_memory_pool_bytes_used Used bytes of a given JVM memory pool.
# TYPE jvm_memory_pool_bytes_used gauge
# HELP jvm_memory_pool_bytes_committed Committed bytes of a given JVM memory pool.
# TYPE jvm_memory_pool_bytes_committed gauge
# HELP jvm_memory_pool_bytes_max Max bytes of a given JVM memory pool.
# TYPE jvm_memory_pool_bytes_max gauge
# HELP jvm_memory_pool_bytes_init Initial bytes of a given JVM memory pool.
# TYPE jvm_memory_pool_bytes_init gauge
Node exporter metrics
Information on the metrics provided by the Prometheus Node Exporter can be found on the exporter's webpage. Again, no detailed information for each metric is given, but the metrics' HELP text can be seen by use of the curl command, for example:

...
# HELP go_gc_duration_seconds A summary of the GC invocation durations.
# TYPE go_gc_duration_seconds summary
# HELP go_goroutines Number of goroutines that currently exist.
# TYPE go_goroutines gauge
# HELP go_info Information about the Go environment.
# TYPE go_info gauge
# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.
# TYPE go_memstats_alloc_bytes gauge
# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.
# TYPE go_memstats_alloc_bytes_total counter
# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.
# TYPE go_memstats_buck_hash_sys_bytes gauge
# HELP go_memstats_frees_total Total number of frees.
# TYPE go_memstats_frees_total counter
# HELP go_memstats_gc_cpu_fraction The fraction of this program's available CPU time used by the GC since the program started.
# TYPE go_memstats_gc_cpu_fraction gauge
# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.
# TYPE go_memstats_gc_sys_bytes gauge
# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.
# TYPE go_memstats_heap_alloc_bytes gauge
# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.
# TYPE go_memstats_heap_idle_bytes gauge
# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.
# TYPE go_memstats_heap_inuse_bytes gauge
# HELP go_memstats_heap_objects Number of allocated objects.
# TYPE go_memstats_heap_objects gauge
# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.
# TYPE go_memstats_heap_released_bytes gauge
# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.
# TYPE go_memstats_heap_sys_bytes gauge
# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.
# TYPE go_memstats_last_gc_time_seconds gauge
# HELP go_memstats_lookups_total Total number of pointer lookups.
# TYPE go_memstats_lookups_total counter
# HELP go_memstats_mallocs_total Total number of mallocs.
# TYPE go_memstats_mallocs_total counter
# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.
# TYPE go_memstats_mcache_inuse_bytes gauge
# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.
# TYPE go_memstats_mcache_sys_bytes gauge
# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.
# TYPE go_memstats_mspan_inuse_bytes gauge
# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.
# TYPE go_memstats_mspan_sys_bytes gauge
# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.
# TYPE go_memstats_next_gc_bytes gauge
# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.
# TYPE go_memstats_other_sys_bytes gauge
# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.
# TYPE go_memstats_stack_inuse_bytes gauge
# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.
# TYPE go_memstats_stack_sys_bytes gauge
# HELP go_memstats_sys_bytes Number of bytes obtained from system.
# TYPE go_memstats_sys_bytes gauge
# HELP go_threads Number of OS threads created.
# TYPE go_threads gauge
# HELP node_arp_entries ARP entries by device
# TYPE node_arp_entries gauge
# HELP node_boot_time_seconds Node boot time, in unixtime.
# TYPE node_boot_time_seconds gauge
# HELP node_context_switches_total Total number of context switches.
# TYPE node_context_switches_total counter
# HELP node_cpu_guest_seconds_total Seconds the cpus spent in guests (VMs) for each mode.
# TYPE node_cpu_guest_seconds_total counter
# HELP node_cpu_seconds_total Seconds the cpus spent in each mode.
# TYPE node_cpu_seconds_total counter
# HELP node_disk_io_now The number of I/Os currently in progress.
# TYPE node_disk_io_now gauge
# HELP node_disk_io_time_seconds_total Total seconds spent doing I/Os.
# TYPE node_disk_io_time_seconds_total counter
# HELP node_disk_io_time_weighted_seconds_total The weighted # of seconds spent doing I/Os.
# TYPE node_disk_io_time_weighted_seconds_total counter
# HELP node_disk_read_bytes_total The total number of bytes read successfully.
# TYPE node_disk_read_bytes_total counter
# HELP node_disk_read_time_seconds_total The total number of seconds spent by all reads.
# TYPE node_disk_read_time_seconds_total counter
# HELP node_disk_reads_completed_total The total number of reads completed successfully.
# TYPE node_disk_reads_completed_total counter
# HELP node_disk_reads_merged_total The total number of reads merged.
# TYPE node_disk_reads_merged_total counter
# HELP node_disk_write_time_seconds_total This is the total number of seconds spent by all writes.
# TYPE node_disk_write_time_seconds_total counter
# HELP node_disk_writes_completed_total The total number of writes completed successfully.
# TYPE node_disk_writes_completed_total counter
# HELP node_disk_writes_merged_total The number of writes merged.
# TYPE node_disk_writes_merged_total counter
# HELP node_disk_written_bytes_total The total number of bytes written successfully.
# TYPE node_disk_written_bytes_total counter
# HELP node_entropy_available_bits Bits of available entropy.
# TYPE node_entropy_available_bits gauge
# HELP node_exporter_build_info A metric with a constant '1' value labeled by version, revision, branch, and goversion from which node_exporter was built.
# TYPE node_exporter_build_info gauge
# HELP node_filefd_allocated File descriptor statistics: allocated.
# TYPE node_filefd_allocated gauge
# HELP node_filefd_maximum File descriptor statistics: maximum.
# TYPE node_filefd_maximum gauge
# HELP node_filesystem_avail_bytes Filesystem space available to non-root users in bytes.
# TYPE node_filesystem_avail_bytes gauge
# HELP node_filesystem_device_error Whether an error occurred while getting statistics for the given device.
# TYPE node_filesystem_device_error gauge
# HELP node_filesystem_files Filesystem total file nodes.
# TYPE node_filesystem_files gauge
# HELP node_filesystem_files_free Filesystem total free file nodes.
# TYPE node_filesystem_files_free gauge
# HELP node_filesystem_free_bytes Filesystem free space in bytes.
# TYPE node_filesystem_free_bytes gauge
# HELP node_filesystem_readonly Filesystem read-only status.
# TYPE node_filesystem_readonly gauge
# HELP node_filesystem_size_bytes Filesystem size in bytes.
# TYPE node_filesystem_size_bytes gauge
# HELP node_forks_total Total number of forks.
# TYPE node_forks_total counter
# HELP node_intr_total Total number of interrupts serviced.
# TYPE node_intr_total counter
# HELP node_load1 1m load average.
# TYPE node_load1 gauge
# HELP node_load15 15m load average.
# TYPE node_load15 gauge
# HELP node_load5 5m load average.
# TYPE node_load5 gauge
# HELP node_memory_Active_anon_bytes Memory information field Active_anon_bytes.
# TYPE node_memory_Active_anon_bytes gauge
# HELP node_memory_Active_bytes Memory information field Active_bytes.
# TYPE node_memory_Active_bytes gauge
# HELP node_memory_Active_file_bytes Memory information field Active_file_bytes.
# TYPE node_memory_Active_file_bytes gauge
# HELP node_memory_AnonHugePages_bytes Memory information field AnonHugePages_bytes.
# TYPE node_memory_AnonHugePages_bytes gauge
# HELP node_memory_AnonPages_bytes Memory information field AnonPages_bytes.
# TYPE node_memory_AnonPages_bytes gauge
# HELP node_memory_Bounce_bytes Memory information field Bounce_bytes.
# TYPE node_memory_Bounce_bytes gauge
# HELP node_memory_Buffers_bytes Memory information field Buffers_bytes.
# TYPE node_memory_Buffers_bytes gauge
# HELP node_memory_Cached_bytes Memory information field Cached_bytes.
# TYPE node_memory_Cached_bytes gauge
# HELP node_memory_CommitLimit_bytes Memory information field CommitLimit_bytes.
# TYPE node_memory_CommitLimit_bytes gauge
# HELP node_memory_Committed_AS_bytes Memory information field Committed_AS_bytes.
# TYPE node_memory_Committed_AS_bytes gauge
# HELP node_memory_DirectMap2M_bytes Memory information field DirectMap2M_bytes.
# TYPE node_memory_DirectMap2M_bytes gauge
# HELP node_memory_DirectMap4k_bytes Memory information field DirectMap4k_bytes.
# TYPE node_memory_DirectMap4k_bytes gauge
# HELP node_memory_Dirty_bytes Memory information field Dirty_bytes.
# TYPE node_memory_Dirty_bytes gauge
# HELP node_memory_HardwareCorrupted_bytes Memory information field HardwareCorrupted_bytes.
# TYPE node_memory_HardwareCorrupted_bytes gauge
# HELP node_memory_HugePages_Free Memory information field HugePages_Free.
# TYPE node_memory_HugePages_Free gauge
# HELP node_memory_HugePages_Rsvd Memory information field HugePages_Rsvd.
# TYPE node_memory_HugePages_Rsvd gauge
# HELP node_memory_HugePages_Surp Memory information field HugePages_Surp.
# TYPE node_memory_HugePages_Surp gauge
# HELP node_memory_HugePages_Total Memory information field HugePages_Total.
# TYPE node_memory_HugePages_Total gauge
# HELP node_memory_Hugepagesize_bytes Memory information field Hugepagesize_bytes.
# TYPE node_memory_Hugepagesize_bytes gauge
# HELP node_memory_Inactive_anon_bytes Memory information field Inactive_anon_bytes.
# TYPE node_memory_Inactive_anon_bytes gauge
# HELP node_memory_Inactive_bytes Memory information field Inactive_bytes.
# TYPE node_memory_Inactive_bytes gauge
# HELP node_memory_Inactive_file_bytes Memory information field Inactive_file_bytes.
# TYPE node_memory_Inactive_file_bytes gauge
# HELP node_memory_KernelStack_bytes Memory information field KernelStack_bytes.
# TYPE node_memory_KernelStack_bytes gauge
# HELP node_memory_Mapped_bytes Memory information field Mapped_bytes.
# TYPE node_memory_Mapped_bytes gauge
# HELP node_memory_MemFree_bytes Memory information field MemFree_bytes.
# TYPE node_memory_MemFree_bytes gauge
# HELP node_memory_MemTotal_bytes Memory information field MemTotal_bytes.
# TYPE node_memory_MemTotal_bytes gauge
# HELP node_memory_Mlocked_bytes Memory information field Mlocked_bytes.
# TYPE node_memory_Mlocked_bytes gauge
# HELP node_memory_NFS_Unstable_bytes Memory information field NFS_Unstable_bytes.
# TYPE node_memory_NFS_Unstable_bytes gauge
# HELP node_memory_PageTables_bytes Memory information field PageTables_bytes.
# TYPE node_memory_PageTables_bytes gauge
# HELP node_memory_SReclaimable_bytes Memory information field SReclaimable_bytes.
# TYPE node_memory_SReclaimable_bytes gauge
# HELP node_memory_SUnreclaim_bytes Memory information field SUnreclaim_bytes.
# TYPE node_memory_SUnreclaim_bytes gauge
# HELP node_memory_Shmem_bytes Memory information field Shmem_bytes.
# TYPE node_memory_Shmem_bytes gauge
# HELP node_memory_Slab_bytes Memory information field Slab_bytes.
# TYPE node_memory_Slab_bytes gauge
# HELP node_memory_SwapCached_bytes Memory information field SwapCached_bytes.
# TYPE node_memory_SwapCached_bytes gauge
# HELP node_memory_SwapFree_bytes Memory information field SwapFree_bytes.
# TYPE node_memory_SwapFree_bytes gauge
# HELP node_memory_SwapTotal_bytes Memory information field SwapTotal_bytes.
# TYPE node_memory_SwapTotal_bytes gauge
# HELP node_memory_Unevictable_bytes Memory information field Unevictable_bytes.
# TYPE node_memory_Unevictable_bytes gauge
# HELP node_memory_VmallocChunk_bytes Memory information field VmallocChunk_bytes.
# TYPE node_memory_VmallocChunk_bytes gauge
# HELP node_memory_VmallocTotal_bytes Memory information field VmallocTotal_bytes.
# TYPE node_memory_VmallocTotal_bytes gauge
# HELP node_memory_VmallocUsed_bytes Memory information field VmallocUsed_bytes.
# TYPE node_memory_VmallocUsed_bytes gauge
# HELP node_memory_WritebackTmp_bytes Memory information field WritebackTmp_bytes.
# TYPE node_memory_WritebackTmp_bytes gauge
# HELP node_memory_Writeback_bytes Memory information field Writeback_bytes.
# TYPE node_memory_Writeback_bytes gauge
# HELP node_netstat_Icmp6_InErrors Statistic Icmp6InErrors.
# TYPE node_netstat_Icmp6_InErrors untyped
# HELP node_netstat_Icmp6_InMsgs Statistic Icmp6InMsgs.
# TYPE node_netstat_Icmp6_InMsgs untyped
# HELP node_netstat_Icmp6_OutMsgs Statistic Icmp6OutMsgs.
# TYPE node_netstat_Icmp6_OutMsgs untyped
# HELP node_netstat_Icmp_InErrors Statistic IcmpInErrors.
# TYPE node_netstat_Icmp_InErrors untyped
# HELP node_netstat_Icmp_InMsgs Statistic IcmpInMsgs.
# TYPE node_netstat_Icmp_InMsgs untyped
# HELP node_netstat_Icmp_OutMsgs Statistic IcmpOutMsgs.
# TYPE node_netstat_Icmp_OutMsgs untyped
# HELP node_netstat_Ip6_InOctets Statistic Ip6InOctets.
# TYPE node_netstat_Ip6_InOctets untyped
# HELP node_netstat_Ip6_OutOctets Statistic Ip6OutOctets.
# TYPE node_netstat_Ip6_OutOctets untyped
# HELP node_netstat_IpExt_InOctets Statistic IpExtInOctets.
# TYPE node_netstat_IpExt_InOctets untyped
# HELP node_netstat_IpExt_OutOctets Statistic IpExtOutOctets.
# TYPE node_netstat_IpExt_OutOctets untyped
# HELP node_netstat_Ip_Forwarding Statistic IpForwarding.
# TYPE node_netstat_Ip_Forwarding untyped
# HELP node_netstat_TcpExt_ListenDrops Statistic TcpExtListenDrops.
# TYPE node_netstat_TcpExt_ListenDrops untyped
# HELP node_netstat_TcpExt_ListenOverflows Statistic TcpExtListenOverflows.
# TYPE node_netstat_TcpExt_ListenOverflows untyped
# HELP node_netstat_TcpExt_SyncookiesFailed Statistic TcpExtSyncookiesFailed.
# TYPE node_netstat_TcpExt_SyncookiesFailed untyped
# HELP node_netstat_TcpExt_SyncookiesRecv Statistic TcpExtSyncookiesRecv.
# TYPE node_netstat_TcpExt_SyncookiesRecv untyped
# HELP node_netstat_TcpExt_SyncookiesSent Statistic TcpExtSyncookiesSent.
# TYPE node_netstat_TcpExt_SyncookiesSent untyped
# HELP node_netstat_Tcp_ActiveOpens Statistic TcpActiveOpens.
# TYPE node_netstat_Tcp_ActiveOpens untyped
# HELP node_netstat_Tcp_CurrEstab Statistic TcpCurrEstab.
# TYPE node_netstat_Tcp_CurrEstab untyped
# HELP node_netstat_Tcp_InErrs Statistic TcpInErrs.
# TYPE node_netstat_Tcp_InErrs untyped
# HELP node_netstat_Tcp_PassiveOpens Statistic TcpPassiveOpens.
# TYPE node_netstat_Tcp_PassiveOpens untyped
# HELP node_netstat_Tcp_RetransSegs Statistic TcpRetransSegs.
# TYPE node_netstat_Tcp_RetransSegs untyped
# HELP node_netstat_Udp6_InDatagrams Statistic Udp6InDatagrams.
# TYPE node_netstat_Udp6_InDatagrams untyped
# HELP node_netstat_Udp6_InErrors Statistic Udp6InErrors.
# TYPE node_netstat_Udp6_InErrors untyped
# HELP node_netstat_Udp6_NoPorts Statistic Udp6NoPorts.
# TYPE node_netstat_Udp6_NoPorts untyped
# HELP node_netstat_Udp6_OutDatagrams Statistic Udp6OutDatagrams.
# TYPE node_netstat_Udp6_OutDatagrams untyped
# HELP node_netstat_UdpLite6_InErrors Statistic UdpLite6InErrors.
# TYPE node_netstat_UdpLite6_InErrors untyped
# HELP node_netstat_UdpLite_InErrors Statistic UdpLiteInErrors.
# TYPE node_netstat_UdpLite_InErrors untyped
# HELP node_netstat_Udp_InDatagrams Statistic UdpInDatagrams.
# TYPE node_netstat_Udp_InDatagrams untyped
# HELP node_netstat_Udp_InErrors Statistic UdpInErrors.
# TYPE node_netstat_Udp_InErrors untyped
# HELP node_netstat_Udp_NoPorts Statistic UdpNoPorts.
# TYPE node_netstat_Udp_NoPorts untyped
# HELP node_netstat_Udp_OutDatagrams Statistic UdpOutDatagrams.
# TYPE node_netstat_Udp_OutDatagrams untyped
# HELP node_network_address_assign_type address_assign_type value of /sys/class/net/<iface>.
# TYPE node_network_address_assign_type gauge
# HELP node_network_carrier carrier value of /sys/class/net/<iface>.
# TYPE node_network_carrier gauge
# HELP node_network_device_id device_id value of /sys/class/net/<iface>.
# TYPE node_network_device_id gauge
# HELP node_network_dormant dormant value of /sys/class/net/<iface>.
# TYPE node_network_dormant gauge
# HELP node_network_flags flags value of /sys/class/net/<iface>.
# TYPE node_network_flags gauge
# HELP node_network_iface_id iface_id value of /sys/class/net/<iface>.
# TYPE node_network_iface_id gauge
# HELP node_network_iface_link iface_link value of /sys/class/net/<iface>.
# TYPE node_network_iface_link gauge
# HELP node_network_iface_link_mode iface_link_mode value of /sys/class/net/<iface>.
# TYPE node_network_iface_link_mode gauge
# HELP node_network_mtu_bytes mtu_bytes value of /sys/class/net/<iface>.
# TYPE node_network_mtu_bytes gauge
# HELP node_network_protocol_type protocol_type value of /sys/class/net/<iface>.
# TYPE node_network_protocol_type gauge
# HELP node_network_receive_bytes_total Network device statistic receive_bytes.
# TYPE node_network_receive_bytes_total counter
# HELP node_network_receive_compressed_total Network device statistic receive_compressed.
# TYPE node_network_receive_compressed_total counter
# HELP node_network_receive_drop_total Network device statistic receive_drop.
# TYPE node_network_receive_drop_total counter
# HELP node_network_receive_errs_total Network device statistic receive_errs.
# TYPE node_network_receive_errs_total counter
# HELP node_network_receive_fifo_total Network device statistic receive_fifo.
# TYPE node_network_receive_fifo_total counter
# HELP node_network_receive_frame_total Network device statistic receive_frame.
# TYPE node_network_receive_frame_total counter
# HELP node_network_receive_multicast_total Network device statistic receive_multicast.
# TYPE node_network_receive_multicast_total counter
# HELP node_network_receive_packets_total Network device statistic receive_packets.
# TYPE node_network_receive_packets_total counter
# HELP node_network_transmit_bytes_total Network device statistic transmit_bytes.
# TYPE node_network_transmit_bytes_total counter
# HELP node_network_transmit_carrier_total Network device statistic transmit_carrier.
# TYPE node_network_transmit_carrier_total counter
# HELP node_network_transmit_colls_total Network device statistic transmit_colls.
# TYPE node_network_transmit_colls_total counter
# HELP node_network_transmit_compressed_total Network device statistic transmit_compressed.
# TYPE node_network_transmit_compressed_total counter
# HELP node_network_transmit_drop_total Network device statistic transmit_drop.
# TYPE node_network_transmit_drop_total counter
# HELP node_network_transmit_errs_total Network device statistic transmit_errs.
# TYPE node_network_transmit_errs_total counter
# HELP node_network_transmit_fifo_total Network device statistic transmit_fifo.
# TYPE node_network_transmit_fifo_total counter
# HELP node_network_transmit_packets_total Network device statistic transmit_packets.
# TYPE node_network_transmit_packets_total counter
# HELP node_network_transmit_queue_length transmit_queue_length value of /sys/class/net/<iface>.
# TYPE node_network_transmit_queue_length gauge
# HELP node_network_up Valid operstate for interface.
# TYPE node_network_up gauge
# HELP node_nf_conntrack_entries Number of currently allocated flow entries for connection tracking.
# TYPE node_nf_conntrack_entries gauge
# HELP node_nf_conntrack_entries_limit Maximum size of connection tracking table.
# TYPE node_nf_conntrack_entries_limit gauge
# HELP node_nfs_connections_total Total number of NFSd TCP connections.
# TYPE node_nfs_connections_total counter
# HELP node_nfs_packets_total Total NFSd network packets (sent+received) by protocol type.
# TYPE node_nfs_packets_total counter
# HELP node_nfs_requests_total Number of NFS procedures invoked.
# TYPE node_nfs_requests_total counter
# HELP node_nfs_rpc_authentication_refreshes_total Number of RPC authentication refreshes performed.
# TYPE node_nfs_rpc_authentication_refreshes_total counter
# HELP node_nfs_rpc_retransmissions_total Number of RPC transmissions performed.
# TYPE node_nfs_rpc_retransmissions_total counter
# HELP node_nfs_rpcs_total Total number of RPCs performed.
# TYPE node_nfs_rpcs_total counter
# HELP node_procs_blocked Number of processes blocked waiting for I/O to complete.
# TYPE node_procs_blocked gauge
# HELP node_procs_running Number of processes in runnable state.
# TYPE node_procs_running gauge
# HELP node_scrape_collector_duration_seconds node_exporter: Duration of a collector scrape.
# TYPE node_scrape_collector_duration_seconds gauge
# HELP node_scrape_collector_success node_exporter: Whether a collector succeeded.
# TYPE node_scrape_collector_success gauge
# HELP node_sockstat_FRAG_inuse Number of FRAG sockets in state inuse.
# TYPE node_sockstat_FRAG_inuse gauge
# HELP node_sockstat_FRAG_memory Number of FRAG sockets in state memory.
# TYPE node_sockstat_FRAG_memory gauge
# HELP node_sockstat_RAW_inuse Number of RAW sockets in state inuse.
# TYPE node_sockstat_RAW_inuse gauge
# HELP node_sockstat_TCP_alloc Number of TCP sockets in state alloc.
# TYPE node_sockstat_TCP_alloc gauge
# HELP node_sockstat_TCP_inuse Number of TCP sockets in state inuse.
# TYPE node_sockstat_TCP_inuse gauge
# HELP node_sockstat_TCP_mem Number of TCP sockets in state mem.
# TYPE node_sockstat_TCP_mem gauge
# HELP node_sockstat_TCP_mem_bytes Number of TCP sockets in state mem_bytes.
# TYPE node_sockstat_TCP_mem_bytes gauge
# HELP node_sockstat_TCP_orphan Number of TCP sockets in state orphan.
# TYPE node_sockstat_TCP_orphan gauge
# HELP node_sockstat_TCP_tw Number of TCP sockets in state tw.
# TYPE node_sockstat_TCP_tw gauge
# HELP node_sockstat_UDPLITE_inuse Number of UDPLITE sockets in state inuse.
# TYPE node_sockstat_UDPLITE_inuse gauge
# HELP node_sockstat_UDP_inuse Number of UDP sockets in state inuse.
# TYPE node_sockstat_UDP_inuse gauge
# HELP node_sockstat_UDP_mem Number of UDP sockets in state mem.
# TYPE node_sockstat_UDP_mem gauge
# HELP node_sockstat_UDP_mem_bytes Number of UDP sockets in state mem_bytes.
# TYPE node_sockstat_UDP_mem_bytes gauge
# HELP node_sockstat_sockets_used Number of sockets sockets in state used.
# TYPE node_sockstat_sockets_used gauge
# HELP node_textfile_scrape_error 1 if there was an error opening or reading a file, 0 otherwise
# TYPE node_textfile_scrape_error gauge
# HELP node_time_seconds System time in seconds since epoch (1970).
# TYPE node_time_seconds gauge
# HELP node_timex_estimated_error_seconds Estimated error in seconds.
# TYPE node_timex_estimated_error_seconds gauge
# HELP node_timex_frequency_adjustment_ratio Local clock frequency adjustment.
# TYPE node_timex_frequency_adjustment_ratio gauge
# HELP node_timex_loop_time_constant Phase-locked loop time constant.
# TYPE node_timex_loop_time_constant gauge
# HELP node_timex_maxerror_seconds Maximum error in seconds.
# TYPE node_timex_maxerror_seconds gauge
# HELP node_timex_offset_seconds Time offset in between local system and reference clock.
# TYPE node_timex_offset_seconds gauge
# HELP node_timex_pps_calibration_total Pulse per second count of calibration intervals.
# TYPE node_timex_pps_calibration_total counter
# HELP node_timex_pps_error_total Pulse per second count of calibration errors.
# TYPE node_timex_pps_error_total counter
# HELP node_timex_pps_frequency_hertz Pulse per second frequency.
# TYPE node_timex_pps_frequency_hertz gauge
# HELP node_timex_pps_jitter_seconds Pulse per second jitter.
# TYPE node_timex_pps_jitter_seconds gauge
# HELP node_timex_pps_jitter_total Pulse per second count of jitter limit exceeded events.
# TYPE node_timex_pps_jitter_total counter
# HELP node_timex_pps_shift_seconds Pulse per second interval duration.
# TYPE node_timex_pps_shift_seconds gauge
# HELP node_timex_pps_stability_exceeded_total Pulse per second count of stability limit exceeded events.
# TYPE node_timex_pps_stability_exceeded_total counter
# HELP node_timex_pps_stability_hertz Pulse per second stability, average of recent frequency changes.
# TYPE node_timex_pps_stability_hertz gauge
# HELP node_timex_status Value of the status array bits.
# TYPE node_timex_status gauge
# HELP node_timex_sync_status Is clock synchronized to a reliable server (1 = yes, 0 = no).
# TYPE node_timex_sync_status gauge
# HELP node_timex_tai_offset_seconds International Atomic Time (TAI) offset.
# TYPE node_timex_tai_offset_seconds gauge
# HELP node_timex_tick_seconds Seconds between clock ticks.
# TYPE node_timex_tick_seconds gauge
# HELP node_uname_info Labeled system information as provided by the uname system call.
# TYPE node_uname_info gauge
# HELP node_vmstat_pgfault /proc/vmstat information field pgfault.
# TYPE node_vmstat_pgfault untyped
# HELP node_vmstat_pgmajfault /proc/vmstat information field pgmajfault.
# TYPE node_vmstat_pgmajfault untyped
# HELP node_vmstat_pgpgin /proc/vmstat information field pgpgin.
# TYPE node_vmstat_pgpgin untyped
# HELP node_vmstat_pgpgout /proc/vmstat information field pgpgout.
# TYPE node_vmstat_pgpgout untyped
# HELP node_vmstat_pswpin /proc/vmstat information field pswpin.
# TYPE node_vmstat_pswpin untyped
# HELP node_vmstat_pswpout /proc/vmstat information field pswpout.
# TYPE node_vmstat_pswpout untyped
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes.
# TYPE process_virtual_memory_max_bytes gauge
# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.
# TYPE promhttp_metric_handler_requests_in_flight gauge
# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.
# TYPE promhttp_metric_handler_requests_total counter
StatsD metrics
Information for the StatsD Exporter metrics also have to be extracted from their HELP text, for example:

...
# HELP go_gc_duration_seconds A summary of the GC invocation durations.
# TYPE go_gc_duration_seconds summary
# HELP go_goroutines Number of goroutines that currently exist.
# TYPE go_goroutines gauge
# HELP go_info Information about the Go environment.
# TYPE go_info gauge
# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.
# TYPE go_memstats_alloc_bytes gauge
# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.
# TYPE go_memstats_alloc_bytes_total counter
# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.
# TYPE go_memstats_buck_hash_sys_bytes gauge
# HELP go_memstats_frees_total Total number of frees.
# TYPE go_memstats_frees_total counter
# HELP go_memstats_gc_cpu_fraction The fraction of this program's available CPU time used by the GC since the program started.
# TYPE go_memstats_gc_cpu_fraction gauge
# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.
# TYPE go_memstats_gc_sys_bytes gauge
# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.
# TYPE go_memstats_heap_alloc_bytes gauge
# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.
# TYPE go_memstats_heap_idle_bytes gauge
# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.
# TYPE go_memstats_heap_inuse_bytes gauge
# HELP go_memstats_heap_objects Number of allocated objects.
# TYPE go_memstats_heap_objects gauge
# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.
# TYPE go_memstats_heap_released_bytes gauge
# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.
# TYPE go_memstats_heap_sys_bytes gauge
# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.
# TYPE go_memstats_last_gc_time_seconds gauge
# HELP go_memstats_lookups_total Total number of pointer lookups.
# TYPE go_memstats_lookups_total counter
# HELP go_memstats_mallocs_total Total number of mallocs.
# TYPE go_memstats_mallocs_total counter
# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.
# TYPE go_memstats_mcache_inuse_bytes gauge
# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.
# TYPE go_memstats_mcache_sys_bytes gauge
# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.
# TYPE go_memstats_mspan_inuse_bytes gauge
# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.
# TYPE go_memstats_mspan_sys_bytes gauge
# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.
# TYPE go_memstats_next_gc_bytes gauge
# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.
# TYPE go_memstats_other_sys_bytes gauge
# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.
# TYPE go_memstats_stack_inuse_bytes gauge
# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.
# TYPE go_memstats_stack_sys_bytes gauge
# HELP go_memstats_sys_bytes Number of bytes obtained from system.
# TYPE go_memstats_sys_bytes gauge
# HELP go_threads Number of OS threads created.
# TYPE go_threads gauge
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes.
# TYPE process_virtual_memory_max_bytes gauge
# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.
# TYPE promhttp_metric_handler_requests_in_flight gauge
# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.
# TYPE promhttp_metric_handler_requests_total counter
# HELP statsd_exporter_build_info A metric with a constant '1' value labeled by version, revision, branch, and goversion from which statsd_exporter was built.
# TYPE statsd_exporter_build_info gauge
# HELP statsd_exporter_cache_length The count of unique metrics currently cached.
# TYPE statsd_exporter_cache_length gauge
# HELP statsd_exporter_event_queue_flushed_total Number of times events were flushed to exporter
# TYPE statsd_exporter_event_queue_flushed_total counter
# HELP statsd_exporter_events_total The total number of StatsD events seen.
# TYPE statsd_exporter_events_total counter
# HELP statsd_exporter_events_unmapped_total The total number of StatsD events no mapping was found for.
# TYPE statsd_exporter_events_unmapped_total counter
# HELP statsd_exporter_lines_total The total number of StatsD lines received.
# TYPE statsd_exporter_lines_total counter
# HELP statsd_exporter_loaded_mappings The current number of configured metric mappings.
# TYPE statsd_exporter_loaded_mappings gauge
# HELP statsd_exporter_metrics_total The total number of metrics.
# TYPE statsd_exporter_metrics_total gauge
# HELP statsd_exporter_samples_total The total number of StatsD samples received.
# TYPE statsd_exporter_samples_total counter
# HELP statsd_exporter_tag_errors_total The number of errors parsing DogStatsD tags.
# TYPE statsd_exporter_tag_errors_total counter
# HELP statsd_exporter_tags_total The total number of DogStatsD tags processed.
# TYPE statsd_exporter_tags_total counter
# HELP statsd_exporter_tcp_connection_errors_total The number of errors encountered reading from TCP.
# TYPE statsd_exporter_tcp_connection_errors_total counter
# HELP statsd_exporter_tcp_connections_total The total number of TCP connections handled.
# TYPE statsd_exporter_tcp_connections_total counter
# HELP statsd_exporter_tcp_too_long_lines_total The number of lines discarded due to being too long.
# TYPE statsd_exporter_tcp_too_long_lines_total counter
# HELP statsd_exporter_udp_packets_total The total number of StatsD packets received over UDP.
# TYPE statsd_exporter_udp_packets_total counter
# HELP statsd_exporter_unixgram_packets_total The total number of StatsD packets received over Unixgram.
# TYPE statsd_exporter_unixgram_packets_total counter
Grafana Metrics
Information on Grafana's metrics can be found on Grafana's Internal Grafana metrics webpage. Detailed information of its metrics is available from the metrics' HELP text, for example:

...
# HELP go_gc_duration_seconds A summary of the GC invocation durations.
# TYPE go_gc_duration_seconds summary
# HELP go_goroutines Number of goroutines that currently exist.
# TYPE go_goroutines gauge
# HELP go_info Information about the Go environment.
# TYPE go_info gauge
# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.
# TYPE go_memstats_alloc_bytes gauge
# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.
# TYPE go_memstats_alloc_bytes_total counter
# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.
# TYPE go_memstats_buck_hash_sys_bytes gauge
# HELP go_memstats_frees_total Total number of frees.
# TYPE go_memstats_frees_total counter
# HELP go_memstats_gc_cpu_fraction The fraction of this program's available CPU time used by the GC since the program started.
# TYPE go_memstats_gc_cpu_fraction gauge
# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.
# TYPE go_memstats_gc_sys_bytes gauge
# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.
# TYPE go_memstats_heap_alloc_bytes gauge
# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.
# TYPE go_memstats_heap_idle_bytes gauge
# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.
# TYPE go_memstats_heap_inuse_bytes gauge
# HELP go_memstats_heap_objects Number of allocated objects.
# TYPE go_memstats_heap_objects gauge
# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.
# TYPE go_memstats_heap_released_bytes gauge
# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.
# TYPE go_memstats_heap_sys_bytes gauge
# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.
# TYPE go_memstats_last_gc_time_seconds gauge
# HELP go_memstats_lookups_total Total number of pointer lookups.
# TYPE go_memstats_lookups_total counter
# HELP go_memstats_mallocs_total Total number of mallocs.
# TYPE go_memstats_mallocs_total counter
# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.
# TYPE go_memstats_mcache_inuse_bytes gauge
# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.
# TYPE go_memstats_mcache_sys_bytes gauge
# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.
# TYPE go_memstats_mspan_inuse_bytes gauge
# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.
# TYPE go_memstats_mspan_sys_bytes gauge
# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.
# TYPE go_memstats_next_gc_bytes gauge
# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.
# TYPE go_memstats_other_sys_bytes gauge
# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.
# TYPE go_memstats_stack_inuse_bytes gauge
# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.
# TYPE go_memstats_stack_sys_bytes gauge
# HELP go_memstats_sys_bytes Number of bytes obtained from system.
# TYPE go_memstats_sys_bytes gauge
# HELP go_threads Number of OS threads created.
# TYPE go_threads gauge
# HELP grafana_alerting_active_alerts amount of active alerts
# TYPE grafana_alerting_active_alerts gauge
# HELP grafana_alerting_execution_time_milliseconds summary of alert exeuction duration
# TYPE grafana_alerting_execution_time_milliseconds summary
# HELP grafana_api_admin_user_created_total api admin user created counter
# TYPE grafana_api_admin_user_created_total counter
# HELP grafana_api_dashboard_get_milliseconds summary for dashboard get duration
# TYPE grafana_api_dashboard_get_milliseconds summary
# HELP grafana_api_dashboard_save_milliseconds summary for dashboard save duration
# TYPE grafana_api_dashboard_save_milliseconds summary
# HELP grafana_api_dashboard_search_milliseconds summary for dashboard search duration
# TYPE grafana_api_dashboard_search_milliseconds summary
# HELP grafana_api_dashboard_snapshot_create_total dashboard snapshots created
# TYPE grafana_api_dashboard_snapshot_create_total counter
# HELP grafana_api_dashboard_snapshot_external_total external dashboard snapshots created
# TYPE grafana_api_dashboard_snapshot_external_total counter
# HELP grafana_api_dashboard_snapshot_get_total loaded dashboards
# TYPE grafana_api_dashboard_snapshot_get_total counter
# HELP grafana_api_dataproxy_request_all_milliseconds summary for dataproxy request duration
# TYPE grafana_api_dataproxy_request_all_milliseconds summary
# HELP grafana_api_login_oauth_total api login oauth counter
# TYPE grafana_api_login_oauth_total counter
# HELP grafana_api_login_post_total api login post counter
# TYPE grafana_api_login_post_total counter
# HELP grafana_api_login_saml_total api login saml counter
# TYPE grafana_api_login_saml_total counter
# HELP grafana_api_models_dashboard_insert_total dashboards inserted
# TYPE grafana_api_models_dashboard_insert_total counter
# HELP grafana_api_org_create_total api org created counter
# TYPE grafana_api_org_create_total counter
# HELP grafana_api_response_status_total api http response status
# TYPE grafana_api_response_status_total counter
# HELP grafana_api_user_signup_completed_total amount of users who completed the signup flow
# TYPE grafana_api_user_signup_completed_total counter
# HELP grafana_api_user_signup_invite_total amount of users who have been invited
# TYPE grafana_api_user_signup_invite_total counter
# HELP grafana_api_user_signup_started_total amount of users who started the signup flow
# TYPE grafana_api_user_signup_started_total counter
# HELP grafana_aws_cloudwatch_get_metric_data_total counter for getting metric data time series from aws
# TYPE grafana_aws_cloudwatch_get_metric_data_total counter
# HELP grafana_aws_cloudwatch_get_metric_statistics_total counter for getting metric statistics from aws
# TYPE grafana_aws_cloudwatch_get_metric_statistics_total counter
# HELP grafana_aws_cloudwatch_list_metrics_total counter for getting list of metrics from aws
# TYPE grafana_aws_cloudwatch_list_metrics_total counter
# HELP grafana_build_info A metric with a constant '1' value labeled by version, revision, branch, and goversion from which Grafana was built
# TYPE grafana_build_info gauge
# HELP grafana_db_datasource_query_by_id_total counter for getting datasource by id
# TYPE grafana_db_datasource_query_by_id_total counter
# HELP grafana_instance_start_total counter for started instances
# TYPE grafana_instance_start_total counter
# HELP grafana_ldap_users_sync_execution_time summary for LDAP users sync execution duration
# TYPE grafana_ldap_users_sync_execution_time summary
# HELP grafana_page_response_status_total page http response status
# TYPE grafana_page_response_status_total counter
# HELP grafana_proxy_response_status_total proxy http response status
# TYPE grafana_proxy_response_status_total counter
# HELP grafana_stat_active_users number of active users
# TYPE grafana_stat_active_users gauge
# HELP grafana_stat_total_orgs total amount of orgs
# TYPE grafana_stat_total_orgs gauge
# HELP grafana_stat_total_playlists total amount of playlists
# TYPE grafana_stat_total_playlists gauge
# HELP grafana_stat_total_users total amount of users
# TYPE grafana_stat_total_users gauge
# HELP grafana_stat_totals_active_admins total amount of active admins
# TYPE grafana_stat_totals_active_admins gauge
# HELP grafana_stat_totals_active_editors total amount of active editors
# TYPE grafana_stat_totals_active_editors gauge
# HELP grafana_stat_totals_active_viewers total amount of viewers
# TYPE grafana_stat_totals_active_viewers gauge
# HELP grafana_stat_totals_admins total amount of admins
# TYPE grafana_stat_totals_admins gauge
# HELP grafana_stat_totals_dashboard total amount of dashboards
# TYPE grafana_stat_totals_dashboard gauge
# HELP grafana_stat_totals_editors total amount of editors
# TYPE grafana_stat_totals_editors gauge
# HELP grafana_stat_totals_viewers total amount of viewers
# TYPE grafana_stat_totals_viewers gauge
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes.
# TYPE process_virtual_memory_max_bytes gauge
Prometheus metrics
Prometheus's metrics HELP text:

...
# HELP go_gc_duration_seconds A summary of the GC invocation durations.
# TYPE go_gc_duration_seconds summary
# HELP go_goroutines Number of goroutines that currently exist.
# TYPE go_goroutines gauge
# HELP go_info Information about the Go environment.
# TYPE go_info gauge
# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.
# TYPE go_memstats_alloc_bytes gauge
# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.
# TYPE go_memstats_alloc_bytes_total counter
# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.
# TYPE go_memstats_buck_hash_sys_bytes gauge
# HELP go_memstats_frees_total Total number of frees.
# TYPE go_memstats_frees_total counter
# HELP go_memstats_gc_cpu_fraction The fraction of this program's available CPU time used by the GC since the program started.
# TYPE go_memstats_gc_cpu_fraction gauge
# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.
# TYPE go_memstats_gc_sys_bytes gauge
# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.
# TYPE go_memstats_heap_alloc_bytes gauge
# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.
# TYPE go_memstats_heap_idle_bytes gauge
# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.
# TYPE go_memstats_heap_inuse_bytes gauge
# HELP go_memstats_heap_objects Number of allocated objects.
# TYPE go_memstats_heap_objects gauge
# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.
# TYPE go_memstats_heap_released_bytes gauge
# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.
# TYPE go_memstats_heap_sys_bytes gauge
# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.
# TYPE go_memstats_last_gc_time_seconds gauge
# HELP go_memstats_lookups_total Total number of pointer lookups.
# TYPE go_memstats_lookups_total counter
# HELP go_memstats_mallocs_total Total number of mallocs.
# TYPE go_memstats_mallocs_total counter
# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.
# TYPE go_memstats_mcache_inuse_bytes gauge
# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.
# TYPE go_memstats_mcache_sys_bytes gauge
# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.
# TYPE go_memstats_mspan_inuse_bytes gauge
# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.
# TYPE go_memstats_mspan_sys_bytes gauge
# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.
# TYPE go_memstats_next_gc_bytes gauge
# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.
# TYPE go_memstats_other_sys_bytes gauge
# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.
# TYPE go_memstats_stack_inuse_bytes gauge
# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.
# TYPE go_memstats_stack_sys_bytes gauge
# HELP go_memstats_sys_bytes Number of bytes obtained from system.
# TYPE go_memstats_sys_bytes gauge
# HELP go_threads Number of OS threads created.
# TYPE go_threads gauge
# HELP net_conntrack_dialer_conn_attempted_total Total number of connections attempted by the given dialer a given name.
# TYPE net_conntrack_dialer_conn_attempted_total counter
# HELP net_conntrack_dialer_conn_closed_total Total number of connections closed which originated from the dialer of a given name.
# TYPE net_conntrack_dialer_conn_closed_total counter
# HELP net_conntrack_dialer_conn_established_total Total number of connections successfully established by the given dialer a given name.
# TYPE net_conntrack_dialer_conn_established_total counter
# HELP net_conntrack_dialer_conn_failed_total Total number of connections failed to dial by the dialer a given name.
# TYPE net_conntrack_dialer_conn_failed_total counter
# HELP net_conntrack_listener_conn_accepted_total Total number of connections opened to the listener of a given name.
# TYPE net_conntrack_listener_conn_accepted_total counter
# HELP net_conntrack_listener_conn_closed_total Total number of connections closed that were made to the listener of a given name.
# TYPE net_conntrack_listener_conn_closed_total counter
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes.
# TYPE process_virtual_memory_max_bytes gauge
# HELP prometheus_api_remote_read_queries The current number of remote read queries being executed or waiting.
# TYPE prometheus_api_remote_read_queries gauge
# HELP prometheus_build_info A metric with a constant '1' value labeled by version, revision, branch, and goversion from which prometheus was built.
# TYPE prometheus_build_info gauge
# HELP prometheus_config_last_reload_success_timestamp_seconds Timestamp of the last successful configuration reload.
# TYPE prometheus_config_last_reload_success_timestamp_seconds gauge
# HELP prometheus_config_last_reload_successful Whether the last configuration reload attempt was successful.
# TYPE prometheus_config_last_reload_successful gauge
# HELP prometheus_engine_queries The current number of queries being executed or waiting.
# TYPE prometheus_engine_queries gauge
# HELP prometheus_engine_queries_concurrent_max The max number of concurrent queries.
# TYPE prometheus_engine_queries_concurrent_max gauge
# HELP prometheus_engine_query_duration_seconds Query timings
# TYPE prometheus_engine_query_duration_seconds summary
# HELP prometheus_http_request_duration_seconds Histogram of latencies for HTTP requests.
# TYPE prometheus_http_request_duration_seconds histogram
# HELP prometheus_http_response_size_bytes Histogram of response size for HTTP requests.
# TYPE prometheus_http_response_size_bytes histogram
# HELP prometheus_notifications_alertmanagers_discovered The number of alertmanagers discovered and active.
# TYPE prometheus_notifications_alertmanagers_discovered gauge
# HELP prometheus_notifications_dropped_total Total number of alerts dropped due to errors when sending to Alertmanager.
# TYPE prometheus_notifications_dropped_total counter
# HELP prometheus_notifications_queue_capacity The capacity of the alert notifications queue.
# TYPE prometheus_notifications_queue_capacity gauge
# HELP prometheus_notifications_queue_length The number of alert notifications in the queue.
# TYPE prometheus_notifications_queue_length gauge
# HELP prometheus_remote_storage_highest_timestamp_in_seconds Highest timestamp that has come into the remote storage via the Appender interface, in seconds since epoch.
# TYPE prometheus_remote_storage_highest_timestamp_in_seconds gauge
# HELP prometheus_remote_storage_samples_in_total Samples in to remote storage, compare to samples out for queue managers.
# TYPE prometheus_remote_storage_samples_in_total counter
# HELP prometheus_remote_storage_string_interner_zero_reference_releases_total The number of times release has been called for strings that are not interned.
# TYPE prometheus_remote_storage_string_interner_zero_reference_releases_total counter
# HELP prometheus_rule_evaluation_duration_seconds The duration for a rule to execute.
# TYPE prometheus_rule_evaluation_duration_seconds summary
# HELP prometheus_rule_evaluation_failures_total The total number of rule evaluation failures.
# TYPE prometheus_rule_evaluation_failures_total counter
# HELP prometheus_rule_evaluations_total The total number of rule evaluations.
# TYPE prometheus_rule_evaluations_total counter
# HELP prometheus_rule_group_duration_seconds The duration of rule group evaluations.
# TYPE prometheus_rule_group_duration_seconds summary
# HELP prometheus_rule_group_iterations_missed_total The total number of rule group evaluations missed due to slow rule group evaluation.
# TYPE prometheus_rule_group_iterations_missed_total counter
# HELP prometheus_rule_group_iterations_total The total number of scheduled rule group evaluations, whether executed or missed.
# TYPE prometheus_rule_group_iterations_total counter
# HELP prometheus_sd_consul_rpc_duration_seconds The duration of a Consul RPC call in seconds.
# TYPE prometheus_sd_consul_rpc_duration_seconds summary
# HELP prometheus_sd_consul_rpc_failures_total The number of Consul RPC call failures.
# TYPE prometheus_sd_consul_rpc_failures_total counter
# HELP prometheus_sd_discovered_targets Current number of discovered targets.
# TYPE prometheus_sd_discovered_targets gauge
# HELP prometheus_sd_dns_lookup_failures_total The number of DNS-SD lookup failures.
# TYPE prometheus_sd_dns_lookup_failures_total counter
# HELP prometheus_sd_dns_lookups_total The number of DNS-SD lookups.
# TYPE prometheus_sd_dns_lookups_total counter
# HELP prometheus_sd_file_read_errors_total The number of File-SD read errors.
# TYPE prometheus_sd_file_read_errors_total counter
# HELP prometheus_sd_file_scan_duration_seconds The duration of the File-SD scan in seconds.
# TYPE prometheus_sd_file_scan_duration_seconds summary
# HELP prometheus_sd_kubernetes_cache_last_resource_version Last resource version from the Kubernetes API.
# TYPE prometheus_sd_kubernetes_cache_last_resource_version gauge
# HELP prometheus_sd_kubernetes_cache_list_duration_seconds Duration of a Kubernetes API call in seconds.
# TYPE prometheus_sd_kubernetes_cache_list_duration_seconds summary
# HELP prometheus_sd_kubernetes_cache_list_items Count of items in a list from the Kubernetes API.
# TYPE prometheus_sd_kubernetes_cache_list_items summary
# HELP prometheus_sd_kubernetes_cache_list_total Total number of list operations.
# TYPE prometheus_sd_kubernetes_cache_list_total counter
# HELP prometheus_sd_kubernetes_cache_short_watches_total Total number of short watch operations.
# TYPE prometheus_sd_kubernetes_cache_short_watches_total counter
# HELP prometheus_sd_kubernetes_cache_watch_duration_seconds Duration of watches on the Kubernetes API.
# TYPE prometheus_sd_kubernetes_cache_watch_duration_seconds summary
# HELP prometheus_sd_kubernetes_cache_watch_events Number of items in watches on the Kubernetes API.
# TYPE prometheus_sd_kubernetes_cache_watch_events summary
# HELP prometheus_sd_kubernetes_cache_watches_total Total number of watch operations.
# TYPE prometheus_sd_kubernetes_cache_watches_total counter
# HELP prometheus_sd_kubernetes_events_total The number of Kubernetes events handled.
# TYPE prometheus_sd_kubernetes_events_total counter
# HELP prometheus_sd_received_updates_total Total number of update events received from the SD providers.
# TYPE prometheus_sd_received_updates_total counter
# HELP prometheus_sd_updates_total Total number of update events sent to the SD consumers.
# TYPE prometheus_sd_updates_total counter
# HELP prometheus_target_interval_length_seconds Actual intervals between scrapes.
# TYPE prometheus_target_interval_length_seconds summary
# HELP prometheus_target_scrape_pool_reloads_failed_total Total number of failed scrape loop reloads.
# TYPE prometheus_target_scrape_pool_reloads_failed_total counter
# HELP prometheus_target_scrape_pool_reloads_total Total number of scrape loop reloads.
# TYPE prometheus_target_scrape_pool_reloads_total counter
# HELP prometheus_target_scrape_pool_sync_total Total number of syncs that were executed on a scrape pool.
# TYPE prometheus_target_scrape_pool_sync_total counter
# HELP prometheus_target_scrape_pools_failed_total Total number of scrape pool creations that failed.
# TYPE prometheus_target_scrape_pools_failed_total counter
# HELP prometheus_target_scrape_pools_total Total number of scrape pool creation atttempts.
# TYPE prometheus_target_scrape_pools_total counter
# HELP prometheus_target_scrapes_cache_flush_forced_total How many times a scrape cache was flushed due to getting big while scrapes are failing.
# TYPE prometheus_target_scrapes_cache_flush_forced_total counter
# HELP prometheus_target_scrapes_exceeded_sample_limit_total Total number of scrapes that hit the sample limit and were rejected.
# TYPE prometheus_target_scrapes_exceeded_sample_limit_total counter
# HELP prometheus_target_scrapes_sample_duplicate_timestamp_total Total number of samples rejected due to duplicate timestamps but different values
# TYPE prometheus_target_scrapes_sample_duplicate_timestamp_total counter
# HELP prometheus_target_scrapes_sample_out_of_bounds_total Total number of samples rejected due to timestamp falling outside of the time bounds
# TYPE prometheus_target_scrapes_sample_out_of_bounds_total counter
# HELP prometheus_target_scrapes_sample_out_of_order_total Total number of samples rejected due to not being out of the expected order
# TYPE prometheus_target_scrapes_sample_out_of_order_total counter
# HELP prometheus_target_sync_length_seconds Actual interval to sync the scrape pool.
# TYPE prometheus_target_sync_length_seconds summary
# HELP prometheus_template_text_expansion_failures_total The total number of template text expansion failures.
# TYPE prometheus_template_text_expansion_failures_total counter
# HELP prometheus_template_text_expansions_total The total number of template text expansions.
# TYPE prometheus_template_text_expansions_total counter
# HELP prometheus_treecache_watcher_goroutines The current number of watcher goroutines.
# TYPE prometheus_treecache_watcher_goroutines gauge
# HELP prometheus_treecache_zookeeper_failures_total The total number of ZooKeeper failures.
# TYPE prometheus_treecache_zookeeper_failures_total counter
# HELP prometheus_tsdb_blocks_loaded Number of currently loaded data blocks
# TYPE prometheus_tsdb_blocks_loaded gauge
# HELP prometheus_tsdb_checkpoint_creations_failed_total Total number of checkpoint creations that failed.
# TYPE prometheus_tsdb_checkpoint_creations_failed_total counter
# HELP prometheus_tsdb_checkpoint_creations_total Total number of checkpoint creations attempted.
# TYPE prometheus_tsdb_checkpoint_creations_total counter
# HELP prometheus_tsdb_checkpoint_deletions_failed_total Total number of checkpoint deletions that failed.
# TYPE prometheus_tsdb_checkpoint_deletions_failed_total counter
# HELP prometheus_tsdb_checkpoint_deletions_total Total number of checkpoint deletions attempted.
# TYPE prometheus_tsdb_checkpoint_deletions_total counter
# HELP prometheus_tsdb_compaction_chunk_range_seconds Final time range of chunks on their first compaction
# TYPE prometheus_tsdb_compaction_chunk_range_seconds histogram
# HELP prometheus_tsdb_compaction_chunk_samples Final number of samples on their first compaction
# TYPE prometheus_tsdb_compaction_chunk_samples histogram
# HELP prometheus_tsdb_compaction_chunk_size_bytes Final size of chunks on their first compaction
# TYPE prometheus_tsdb_compaction_chunk_size_bytes histogram
# HELP prometheus_tsdb_compaction_duration_seconds Duration of compaction runs
# TYPE prometheus_tsdb_compaction_duration_seconds histogram
# HELP prometheus_tsdb_compaction_populating_block Set to 1 when a block is currently being written to the disk.
# TYPE prometheus_tsdb_compaction_populating_block gauge
# HELP prometheus_tsdb_compactions_failed_total Total number of compactions that failed for the partition.
# TYPE prometheus_tsdb_compactions_failed_total counter
# HELP prometheus_tsdb_compactions_total Total number of compactions that were executed for the partition.
# TYPE prometheus_tsdb_compactions_total counter
# HELP prometheus_tsdb_compactions_triggered_total Total number of triggered compactions for the partition.
# TYPE prometheus_tsdb_compactions_triggered_total counter
# HELP prometheus_tsdb_head_active_appenders Number of currently active appender transactions
# TYPE prometheus_tsdb_head_active_appenders gauge
# HELP prometheus_tsdb_head_chunks Total number of chunks in the head block.
# TYPE prometheus_tsdb_head_chunks gauge
# HELP prometheus_tsdb_head_chunks_created_total Total number of chunks created in the head
# TYPE prometheus_tsdb_head_chunks_created_total counter
# HELP prometheus_tsdb_head_chunks_removed_total Total number of chunks removed in the head
# TYPE prometheus_tsdb_head_chunks_removed_total counter
# HELP prometheus_tsdb_head_gc_duration_seconds Runtime of garbage collection in the head block.
# TYPE prometheus_tsdb_head_gc_duration_seconds summary
# HELP prometheus_tsdb_head_max_time Maximum timestamp of the head block. The unit is decided by the library consumer.
# TYPE prometheus_tsdb_head_max_time gauge
# HELP prometheus_tsdb_head_max_time_seconds Maximum timestamp of the head block.
# TYPE prometheus_tsdb_head_max_time_seconds gauge
# HELP prometheus_tsdb_head_min_time Minimum time bound of the head block. The unit is decided by the library consumer.
# TYPE prometheus_tsdb_head_min_time gauge
# HELP prometheus_tsdb_head_min_time_seconds Minimum time bound of the head block.
# TYPE prometheus_tsdb_head_min_time_seconds gauge
# HELP prometheus_tsdb_head_samples_appended_total Total number of appended samples.
# TYPE prometheus_tsdb_head_samples_appended_total counter
# HELP prometheus_tsdb_head_series Total number of series in the head block.
# TYPE prometheus_tsdb_head_series gauge
# HELP prometheus_tsdb_head_series_created_total Total number of series created in the head
# TYPE prometheus_tsdb_head_series_created_total counter
# HELP prometheus_tsdb_head_series_not_found_total Total number of requests for series that were not found.
# TYPE prometheus_tsdb_head_series_not_found_total counter
# HELP prometheus_tsdb_head_series_removed_total Total number of series removed in the head
# TYPE prometheus_tsdb_head_series_removed_total counter
# HELP prometheus_tsdb_head_truncations_failed_total Total number of head truncations that failed.
# TYPE prometheus_tsdb_head_truncations_failed_total counter
# HELP prometheus_tsdb_head_truncations_total Total number of head truncations attempted.
# TYPE prometheus_tsdb_head_truncations_total counter
# HELP prometheus_tsdb_lowest_timestamp Lowest timestamp value stored in the database. The unit is decided by the library consumer.
# TYPE prometheus_tsdb_lowest_timestamp gauge
# HELP prometheus_tsdb_lowest_timestamp_seconds Lowest timestamp value stored in the database.
# TYPE prometheus_tsdb_lowest_timestamp_seconds gauge
# HELP prometheus_tsdb_reloads_failures_total Number of times the database failed to reload block data from disk.
# TYPE prometheus_tsdb_reloads_failures_total counter
# HELP prometheus_tsdb_reloads_total Number of times the database reloaded block data from disk.
# TYPE prometheus_tsdb_reloads_total counter
# HELP prometheus_tsdb_size_retentions_total The number of times that blocks were deleted because the maximum number of bytes was exceeded.
# TYPE prometheus_tsdb_size_retentions_total counter
# HELP prometheus_tsdb_storage_blocks_bytes The number of bytes that are currently used for local storage by all blocks.
# TYPE prometheus_tsdb_storage_blocks_bytes gauge
# HELP prometheus_tsdb_symbol_table_size_bytes Size of symbol table on disk (in bytes)
# TYPE prometheus_tsdb_symbol_table_size_bytes gauge
# HELP prometheus_tsdb_time_retentions_total The number of times that blocks were deleted because the maximum time limit was exceeded.
# TYPE prometheus_tsdb_time_retentions_total counter
# HELP prometheus_tsdb_tombstone_cleanup_seconds The time taken to recompact blocks to remove tombstones.
# TYPE prometheus_tsdb_tombstone_cleanup_seconds histogram
# HELP prometheus_tsdb_vertical_compactions_total Total number of compactions done on overlapping blocks.
# TYPE prometheus_tsdb_vertical_compactions_total counter
# HELP prometheus_tsdb_wal_completed_pages_total Total number of completed pages.
# TYPE prometheus_tsdb_wal_completed_pages_total counter
# HELP prometheus_tsdb_wal_corruptions_total Total number of WAL corruptions.
# TYPE prometheus_tsdb_wal_corruptions_total counter
# HELP prometheus_tsdb_wal_fsync_duration_seconds Duration of WAL fsync.
# TYPE prometheus_tsdb_wal_fsync_duration_seconds summary
# HELP prometheus_tsdb_wal_page_flushes_total Total number of page flushes.
# TYPE prometheus_tsdb_wal_page_flushes_total counter
# HELP prometheus_tsdb_wal_truncate_duration_seconds Duration of WAL truncation.
# TYPE prometheus_tsdb_wal_truncate_duration_seconds summary
# HELP prometheus_tsdb_wal_truncations_failed_total Total number of WAL truncations that failed.
# TYPE prometheus_tsdb_wal_truncations_failed_total counter
# HELP prometheus_tsdb_wal_truncations_total Total number of WAL truncations attempted.
# TYPE prometheus_tsdb_wal_truncations_total counter
# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.
# TYPE promhttp_metric_handler_requests_in_flight gauge
# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.
# TYPE promhttp_metric_handler_requests_total counter