Page MenuHomePhabricator

Add prometheus exporter to Gerrit
Open, MediumPublic

Description

Requires upgrade to 2.14.x first, but there's now metrics plugins available and one of them is JMX. Let's do it.

Upstream plugin

Cf: T182759 for Jenkins.

  • JMX exporter for JVM generic metrics
  • Generic one to be setup for all Wikimedia JVM T177197
  • Expose Gerrit internal metrics to JMX (details below T184086#5340821 )~
  • apparently that cant be done.

Metrics exposed: https://gerrit.wikimedia.org/r/Documentation/metrics.html

Related Objects

StatusSubtypeAssignedTask
ResolvedTgr
ResolvedPaladox
Resolved demon
ResolvedNone
ResolvedNone
Resolvedfgiunchedi
OpenNone
ResolvedPaladox
ResolvedPaladox
ResolvedPaladox
DeclinedNone
Resolved demon
ResolvedPaladox
DeclinedNone
ResolvedPaladox
ResolvedNone
Resolvedhashar
Resolved demon
ResolvedNone
ResolvedPaladox
ResolvedPaladox
Resolved demon
ResolvedSecurityhashar
OpenNone

Event Timeline

demon triaged this task as Medium priority.Jan 3 2018, 5:41 PM
demon created this task.

Right after posting, I notice there's a stable-2.13 branch, so maybe I don't need to wait for the upgrade?

To give an outline of what's needed:

  • install prometheus-jmx-exporter debian package
  • tweak jvm's options to include -javaagent ...
  • ship an empty configuration file for jmx-exporter
  • check resulting metrics and tweak the configuration as needed

In puppet we've already got examples of other services doing the same, e.g. analytics daemons (by @elukey)

@demon do you want to add this plugin in your 2.14 patch or will you do a follow up adding this?

Seems like the metrics reporter plugin hasn't received any updates for 8 months now: https://gerrit.googlesource.com/plugins/metrics-reporter-jmx/

The javamelody plugin seems much more active: https://gerrit.googlesource.com/plugins/javamelody (got an update just today)

it also seems to support exposing metrics to Prometheus: https://github.com/javamelody/javamelody/wiki/UserGuideAdvanced#exposing-metrics-to-prometheus

Thanks @thcipriani for working on this! From a quick look it seems javamelody offers a deeper look into the jvm rather than pure JMX and exposes a read/write interface (e.g. you can force a gc run). re: prometheus metrics those are also protected by username/password AFAICS, meaning to scrape them we'll need to put credentials in prometheus config and sent those along in the http request? I've put a capture of said metrics in https://phabricator.wikimedia.org/P7810 for reference.

At any rate, I still think prometheus-jmx-exporter makes sense for gerrit's JVM too (in addition to javamelody? seems possible), if anything to be consistent with instrumentation from all other JVMs (i.e. T177197). What do you think?

This would have been useful for debugging T215004 , should we triage as high?

Just to +1 the idea of shipping javamelody to prometheus. Let me know if I can help at all.

@crusnov we could use your help, yup. We need to create a prometheusBearerToken [plugin.javamelody.prometheusBearerToken] https://gerrit.googlesource.com/plugins/javamelody/+/refs/heads/stable-2.15/src/main/resources/Documentation/config.md .Which then get prometheus to query gerrit.wikimedia.org/r/monitoring?format=prometheus using the token.

@crusnov we could use your help, yup. We need to create a prometheusBearerToken [plugin.javamelody.prometheusBearerToken] https://gerrit.googlesource.com/plugins/javamelody/+/refs/heads/stable-2.15/src/main/resources/Documentation/config.md .Which then get prometheus to query gerrit.wikimedia.org/r/monitoring?format=prometheus using the token.

Okay the general approach will be to have a dummy token in labsprivate hiera repository (see https://wikitech.wikimedia.org/wiki/Puppet#Private_puppet) whereas I can put a token in the real private. Then this token will be referred to in the gerrit configuration and in the prometheus configuration which will end up something similar to the scraping configuration in modules/profile/manifests/prometheus/k8s.pp (thanks @fgiunchedi :).

So the starting place is to get the gerrit puppet change and the labsprivate change in, and we can move from there.

Change 508621 had a related patch set uploaded (by Paladox; owner: Paladox):
[operations/puppet@production] Gerrit: Set plugin.javamelody.prometheusBearerToken

https://gerrit.wikimedia.org/r/508621

Change 508952 had a related patch set uploaded (by Paladox; owner: Paladox):
[operations/puppet@production] Add prometheus server for gerrit javamelody monitoring

https://gerrit.wikimedia.org/r/508952

Change 508621 merged by CRusnov:
[operations/puppet@production] Gerrit: Set plugin.javamelody.prometheusBearerToken

https://gerrit.wikimedia.org/r/508621

Change 508952 merged by CRusnov:
[operations/puppet@production] Add prometheus server for gerrit javamelody monitoring

https://gerrit.wikimedia.org/r/508952

Status

There is now a Javamelody prometheus exporter at https://gerrit.wikimedia.org/r/monitoring?format=prometheus . It reports JVM related metrics which are rendered on Grafana at https://grafana.wikimedia.org/d/Bw2mQ3iWz/gerrit-javamelody . That solely report Java internal metrics.


Gerrit also has its own metrics as listed on https://gerrit.wikimedia.org/r/Documentation/metrics.html and they can be exposed via plugins. It seems we would to investigate either of:

metrics-reporter-jmx

The code is a single java file with just a few lines of code. It just adds all the Gerrit metrics to the Jmx reporter. The devil question is: is that used by the already installed javamelody plugin there are apparently some hints on https://github.com/javamelody/javamelody/issues/767

https://gerrit.googlesource.com/plugins/metrics-reporter-jmx/

metrics-reporter-prometheus

It seems to add a brand new prometheus entry point with bearer token and a View Metrics global capability. Not sure we want all that additional complexity when we already have a Prometheus exporter. Maybe it is in the end easier to just add a second Prometheus endpoint dedicated to the Gerrit metrics.

https://gerrit.googlesource.com/plugins/metrics-reporter-prometheus/

In the end, I guess we need to try them out? :-]

I have quickly talked with @Paladox about it. He has tried the metrics-reporter-prometheus plugin and it does exposes all metrics to another endpoint. So we should add that plugin to our deployment, configure it, add a prometheus server and potentially we would have bunch of new metrics to build a dashboard with.

The endpoint might end up being https://gerrit.wikimedia.org/r/plugins/metrics-reporter-prometheus/metrics based on the documentation. That requires an authenticated request and the user to be assigned the View Metrics capability.

metrics-reporter-jmx

The code is a single java file with just a few lines of code. It just adds all the Gerrit metrics to the Jmx reporter. The devil question is: is that used by the already installed javamelody plugin there are apparently some hints on https://github.com/javamelody/javamelody/issues/767

https://gerrit.googlesource.com/plugins/metrics-reporter-jmx/

I'd be in favor of something like this.

Sort of orthogonal, please consider also adding the jmx exporter (even if it doesn't have gerrit-specific metrics yet) to get jvm general metrics (context is T177197: Export Prometheus-compatible JVM metrics from JVMs in production)

Sort of orthogonal, please consider also adding the jmx exporter (even if it doesn't have gerrit-specific metrics yet) to get jvm general metrics (context is T177197: Export Prometheus-compatible JVM metrics from JVMs in production)

The jmx export for the JVM has already been setup via this T184086 task, and from my summary:

There is now a Javamelody prometheus exporter at https://gerrit.wikimedia.org/r/monitoring?format=prometheus . It reports JVM related metrics which are rendered on Grafana at https://grafana.wikimedia.org/d/Bw2mQ3iWz/gerrit-javamelody . That solely report Java internal metrics.

The devil is to now have the Gerrit internal metrics to be reported back up :-] I guess we just need to setup a Gerrit with each plugins and see what happens / what has to be configured.

Sort of orthogonal, please consider also adding the jmx exporter (even if it doesn't have gerrit-specific metrics yet) to get jvm general metrics (context is T177197: Export Prometheus-compatible JVM metrics from JVMs in production)

The jmx export for the JVM has already been setup via this T184086 task, and from my summary:

There is now a Javamelody prometheus exporter at https://gerrit.wikimedia.org/r/monitoring?format=prometheus . It reports JVM related metrics which are rendered on Grafana at https://grafana.wikimedia.org/d/Bw2mQ3iWz/gerrit-javamelody . That solely report Java internal metrics.

The devil is to now have the Gerrit internal metrics to be reported backup :-] I guess we just need to setup a Gerrit with each plugins and see what happens / what has to be configured.

I think we're talking about two different things, what I'm referring to is jmx_exporter like we are deploying to the rest of JVMs, essentially the procedure I've outlined here https://phabricator.wikimedia.org/T184086#3872132, it doesn't look like that has been added yet? I believe it should, in addition to the existing exporters/plugins for gerrit that is.

Sorry indeed, I have been confused by all those plugins. Turns out today I lacked some metrics about the JVM which are not shown by the javamelody prometheus exporter and reflected at https://grafana.wikimedia.org/d/Bw2mQ3iWz/gerrit-javamelody?orgId=1

As @fgiunchedi said, we need another system jmx_exporter for the generic jvm options. So that has to be setup via some magic puppet changes.

I do not have any idea from where to start though there are a few leads in the previous comments on this task. I don't have the envy to dig into all the puppet settings that have to be setup for the jvm and to enable prometheus and possibly spend days on it. I am familiar with none of those tech (jvm/prometheus) and I don't have access to the private repo nor to puppet.git. As such, I would prefer people familiar with prometheus/jvm to set it up for us on Gerrit. Seems @elukey / @crusnov could potentially handle the change for us?

lmata subscribed.

moving to radar but probably will close eventually as the Gitlab move progresses

Gitlab is irrelevant, we still have to maintain Gerrit and will have to maintain it for as long as we have it in production. There is at least one part that would be helpful which is to collect the standard JMX metrics, that would at least give us some insights as to how the JVM is behaving which would surely be helpful when Gerrit sometime runs out of memory or when we have to tune the garbage collection.

Unfortunately it seems it is not that straightforward to configure Prometheus to collect them, but surely that can be done as seen on the parent task which is about collecting those metrics for all JVM (T177197). Jenkins, JVM based as well, is in the same situation (T182759).

Meanwhile we are using our own monitoring system (JavaMelody) which is probably suboptimal since we don't benefit from global exposure nor of any alerting :/

Change 640174 had a related patch set uploaded (by Hashar; owner: Hashar):
[operations/software/gerrit@deploy/wmf/stable-3.2] Add metrics-reporter-prometheus plugin

https://gerrit.wikimedia.org/r/640174

Change 640177 had a related patch set uploaded (by Hashar; owner: Hashar):
[operations/software/gerrit@deploy/wmf/stable-3.2] Add metrics-reporter-jmx plugin

https://gerrit.wikimedia.org/r/640177

I have tried metrics-reporter-jmx on a local Gerrit instance. It does exposes the Gerrit metrics on the mbeans page of JavaMelody (/monitoring?part=mbeans has a new metrics subtree):

gerrit-mbeans.png (389×400 px, 43 KB)

But they are not exposed on monitoring?format=prometheus . That was discussed at https://github.com/javamelody/javamelody/issues/767 Allow to access MBeans metrics with prometheus scraping.

I then tried metrics-reporter-prometheus. The metrics are exposed under the plugin namespace: /plugins/metrics-reporter-prometheus/metrics, the authenticated user must be be in a group granted View Metrics or Administrate Server. An alternative is to use a token which can be configured via plugins.metrics-reporter-prometheus.prometheusBearerToken.

The resulting metrics:

/plugins/metrics-reporter-prometheus/metrics
# HELP caches_memory_cached_accounts Generated from Dropwizard metric import (metric=caches/memory_cached/accounts, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_accounts gauge
caches_memory_cached_accounts 1.0
# HELP caches_memory_cached_adv_bases Generated from Dropwizard metric import (metric=caches/memory_cached/adv_bases, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_adv_bases gauge
caches_memory_cached_adv_bases 0.0
# HELP caches_memory_cached_change_kind Generated from Dropwizard metric import (metric=caches/memory_cached/change_kind, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_change_kind gauge
caches_memory_cached_change_kind 0.0
# HELP caches_memory_cached_change_notes Generated from Dropwizard metric import (metric=caches/memory_cached/change_notes, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_change_notes gauge
caches_memory_cached_change_notes 0.0
# HELP caches_memory_cached_changeid_project Generated from Dropwizard metric import (metric=caches/memory_cached/changeid_project, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_changeid_project gauge
caches_memory_cached_changeid_project 0.0
# HELP caches_memory_cached_changes Generated from Dropwizard metric import (metric=caches/memory_cached/changes, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_changes gauge
caches_memory_cached_changes 0.0
# HELP caches_memory_cached_conflicts Generated from Dropwizard metric import (metric=caches/memory_cached/conflicts, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_conflicts gauge
caches_memory_cached_conflicts 0.0
# HELP caches_memory_cached_default_preferences Generated from Dropwizard metric import (metric=caches/memory_cached/default_preferences, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_default_preferences gauge
caches_memory_cached_default_preferences 0.0
# HELP caches_memory_cached_diff Generated from Dropwizard metric import (metric=caches/memory_cached/diff, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_diff gauge
caches_memory_cached_diff 0.0
# HELP caches_memory_cached_diff_intraline Generated from Dropwizard metric import (metric=caches/memory_cached/diff_intraline, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_diff_intraline gauge
caches_memory_cached_diff_intraline 0.0
# HELP caches_memory_cached_diff_summary Generated from Dropwizard metric import (metric=caches/memory_cached/diff_summary, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_diff_summary gauge
caches_memory_cached_diff_summary 0.0
# HELP caches_memory_cached_external_ids_map Generated from Dropwizard metric import (metric=caches/memory_cached/external_ids_map, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_external_ids_map gauge
caches_memory_cached_external_ids_map 1.0
# HELP caches_memory_cached_git_tags Generated from Dropwizard metric import (metric=caches/memory_cached/git_tags, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_git_tags gauge
caches_memory_cached_git_tags 0.0
# HELP caches_memory_cached_groups Generated from Dropwizard metric import (metric=caches/memory_cached/groups, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups gauge
caches_memory_cached_groups 0.0
# HELP caches_memory_cached_groups_bymember Generated from Dropwizard metric import (metric=caches/memory_cached/groups_bymember, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups_bymember gauge
caches_memory_cached_groups_bymember 0.0
# HELP caches_memory_cached_groups_byname Generated from Dropwizard metric import (metric=caches/memory_cached/groups_byname, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups_byname gauge
caches_memory_cached_groups_byname 0.0
# HELP caches_memory_cached_groups_bysubgroup Generated from Dropwizard metric import (metric=caches/memory_cached/groups_bysubgroup, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups_bysubgroup gauge
caches_memory_cached_groups_bysubgroup 0.0
# HELP caches_memory_cached_groups_byuuid Generated from Dropwizard metric import (metric=caches/memory_cached/groups_byuuid, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups_byuuid gauge
caches_memory_cached_groups_byuuid 2.0
# HELP caches_memory_cached_groups_external Generated from Dropwizard metric import (metric=caches/memory_cached/groups_external, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups_external gauge
caches_memory_cached_groups_external 0.0
# HELP caches_memory_cached_groups_external_persisted Generated from Dropwizard metric import (metric=caches/memory_cached/groups_external_persisted, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_groups_external_persisted gauge
caches_memory_cached_groups_external_persisted 0.0
# HELP caches_memory_cached_mergeability Generated from Dropwizard metric import (metric=caches/memory_cached/mergeability, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_mergeability gauge
caches_memory_cached_mergeability 0.0
# HELP caches_memory_cached_oauth_tokens Generated from Dropwizard metric import (metric=caches/memory_cached/oauth_tokens, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_oauth_tokens gauge
caches_memory_cached_oauth_tokens 0.0
# HELP caches_memory_cached_permission_sort Generated from Dropwizard metric import (metric=caches/memory_cached/permission_sort, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_permission_sort gauge
caches_memory_cached_permission_sort 0.0
# HELP caches_memory_cached_plugin_lfs_lfs_project_locks Generated from Dropwizard metric import (metric=caches/memory_cached/plugin-lfs-lfs_project_locks, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_plugin_lfs_lfs_project_locks gauge
caches_memory_cached_plugin_lfs_lfs_project_locks 0.0
# HELP caches_memory_cached_plugin_resources Generated from Dropwizard metric import (metric=caches/memory_cached/plugin_resources, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_plugin_resources gauge
caches_memory_cached_plugin_resources 5.0
# HELP caches_memory_cached_project_list Generated from Dropwizard metric import (metric=caches/memory_cached/project_list, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_project_list gauge
caches_memory_cached_project_list 0.0
# HELP caches_memory_cached_projects Generated from Dropwizard metric import (metric=caches/memory_cached/projects, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_projects gauge
caches_memory_cached_projects 1.0
# HELP caches_memory_cached_prolog_rules Generated from Dropwizard metric import (metric=caches/memory_cached/prolog_rules, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_prolog_rules gauge
caches_memory_cached_prolog_rules 0.0
# HELP caches_memory_cached_pure_revert Generated from Dropwizard metric import (metric=caches/memory_cached/pure_revert, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_pure_revert gauge
caches_memory_cached_pure_revert 0.0
# HELP caches_memory_cached_sshkeys Generated from Dropwizard metric import (metric=caches/memory_cached/sshkeys, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_sshkeys gauge
caches_memory_cached_sshkeys 0.0
# HELP caches_memory_cached_static_content Generated from Dropwizard metric import (metric=caches/memory_cached/static_content, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_static_content gauge
caches_memory_cached_static_content 6.0
# HELP caches_memory_cached_web_sessions Generated from Dropwizard metric import (metric=caches/memory_cached/web_sessions, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_cached_web_sessions gauge
caches_memory_cached_web_sessions 1.0
# HELP caches_memory_eviction_count_accounts Generated from Dropwizard metric import (metric=caches/memory_eviction_count/accounts, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_accounts gauge
caches_memory_eviction_count_accounts 0.0
# HELP caches_memory_eviction_count_adv_bases Generated from Dropwizard metric import (metric=caches/memory_eviction_count/adv_bases, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_adv_bases gauge
caches_memory_eviction_count_adv_bases 0.0
# HELP caches_memory_eviction_count_change_kind Generated from Dropwizard metric import (metric=caches/memory_eviction_count/change_kind, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_change_kind gauge
caches_memory_eviction_count_change_kind 0.0
# HELP caches_memory_eviction_count_change_notes Generated from Dropwizard metric import (metric=caches/memory_eviction_count/change_notes, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_change_notes gauge
caches_memory_eviction_count_change_notes 0.0
# HELP caches_memory_eviction_count_changeid_project Generated from Dropwizard metric import (metric=caches/memory_eviction_count/changeid_project, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_changeid_project gauge
caches_memory_eviction_count_changeid_project 0.0
# HELP caches_memory_eviction_count_changes Generated from Dropwizard metric import (metric=caches/memory_eviction_count/changes, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_changes gauge
caches_memory_eviction_count_changes 0.0
# HELP caches_memory_eviction_count_conflicts Generated from Dropwizard metric import (metric=caches/memory_eviction_count/conflicts, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_conflicts gauge
caches_memory_eviction_count_conflicts 0.0
# HELP caches_memory_eviction_count_default_preferences Generated from Dropwizard metric import (metric=caches/memory_eviction_count/default_preferences, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_default_preferences gauge
caches_memory_eviction_count_default_preferences 0.0
# HELP caches_memory_eviction_count_diff Generated from Dropwizard metric import (metric=caches/memory_eviction_count/diff, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_diff gauge
caches_memory_eviction_count_diff 0.0
# HELP caches_memory_eviction_count_diff_intraline Generated from Dropwizard metric import (metric=caches/memory_eviction_count/diff_intraline, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_diff_intraline gauge
caches_memory_eviction_count_diff_intraline 0.0
# HELP caches_memory_eviction_count_diff_summary Generated from Dropwizard metric import (metric=caches/memory_eviction_count/diff_summary, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_diff_summary gauge
caches_memory_eviction_count_diff_summary 0.0
# HELP caches_memory_eviction_count_external_ids_map Generated from Dropwizard metric import (metric=caches/memory_eviction_count/external_ids_map, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_external_ids_map gauge
caches_memory_eviction_count_external_ids_map 0.0
# HELP caches_memory_eviction_count_git_tags Generated from Dropwizard metric import (metric=caches/memory_eviction_count/git_tags, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_git_tags gauge
caches_memory_eviction_count_git_tags 0.0
# HELP caches_memory_eviction_count_groups Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups gauge
caches_memory_eviction_count_groups 0.0
# HELP caches_memory_eviction_count_groups_bymember Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups_bymember, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups_bymember gauge
caches_memory_eviction_count_groups_bymember 0.0
# HELP caches_memory_eviction_count_groups_byname Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups_byname, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups_byname gauge
caches_memory_eviction_count_groups_byname 0.0
# HELP caches_memory_eviction_count_groups_bysubgroup Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups_bysubgroup, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups_bysubgroup gauge
caches_memory_eviction_count_groups_bysubgroup 0.0
# HELP caches_memory_eviction_count_groups_byuuid Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups_byuuid, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups_byuuid gauge
caches_memory_eviction_count_groups_byuuid 0.0
# HELP caches_memory_eviction_count_groups_external Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups_external, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups_external gauge
caches_memory_eviction_count_groups_external 0.0
# HELP caches_memory_eviction_count_groups_external_persisted Generated from Dropwizard metric import (metric=caches/memory_eviction_count/groups_external_persisted, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_groups_external_persisted gauge
caches_memory_eviction_count_groups_external_persisted 0.0
# HELP caches_memory_eviction_count_mergeability Generated from Dropwizard metric import (metric=caches/memory_eviction_count/mergeability, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_mergeability gauge
caches_memory_eviction_count_mergeability 0.0
# HELP caches_memory_eviction_count_oauth_tokens Generated from Dropwizard metric import (metric=caches/memory_eviction_count/oauth_tokens, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_oauth_tokens gauge
caches_memory_eviction_count_oauth_tokens 0.0
# HELP caches_memory_eviction_count_permission_sort Generated from Dropwizard metric import (metric=caches/memory_eviction_count/permission_sort, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_permission_sort gauge
caches_memory_eviction_count_permission_sort 0.0
# HELP caches_memory_eviction_count_plugin_lfs_lfs_project_locks Generated from Dropwizard metric import (metric=caches/memory_eviction_count/plugin-lfs-lfs_project_locks, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_plugin_lfs_lfs_project_locks gauge
caches_memory_eviction_count_plugin_lfs_lfs_project_locks 0.0
# HELP caches_memory_eviction_count_plugin_resources Generated from Dropwizard metric import (metric=caches/memory_eviction_count/plugin_resources, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_plugin_resources gauge
caches_memory_eviction_count_plugin_resources 0.0
# HELP caches_memory_eviction_count_project_list Generated from Dropwizard metric import (metric=caches/memory_eviction_count/project_list, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_project_list gauge
caches_memory_eviction_count_project_list 0.0
# HELP caches_memory_eviction_count_projects Generated from Dropwizard metric import (metric=caches/memory_eviction_count/projects, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_projects gauge
caches_memory_eviction_count_projects 0.0
# HELP caches_memory_eviction_count_prolog_rules Generated from Dropwizard metric import (metric=caches/memory_eviction_count/prolog_rules, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_prolog_rules gauge
caches_memory_eviction_count_prolog_rules 0.0
# HELP caches_memory_eviction_count_pure_revert Generated from Dropwizard metric import (metric=caches/memory_eviction_count/pure_revert, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_pure_revert gauge
caches_memory_eviction_count_pure_revert 0.0
# HELP caches_memory_eviction_count_sshkeys Generated from Dropwizard metric import (metric=caches/memory_eviction_count/sshkeys, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_sshkeys gauge
caches_memory_eviction_count_sshkeys 0.0
# HELP caches_memory_eviction_count_static_content Generated from Dropwizard metric import (metric=caches/memory_eviction_count/static_content, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_static_content gauge
caches_memory_eviction_count_static_content 0.0
# HELP caches_memory_eviction_count_web_sessions Generated from Dropwizard metric import (metric=caches/memory_eviction_count/web_sessions, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_eviction_count_web_sessions gauge
caches_memory_eviction_count_web_sessions 0.0
# HELP caches_memory_hit_ratio_accounts Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/accounts, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_accounts gauge
caches_memory_hit_ratio_accounts 99.21875
# HELP caches_memory_hit_ratio_adv_bases Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/adv_bases, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_adv_bases gauge
caches_memory_hit_ratio_adv_bases 100.0
# HELP caches_memory_hit_ratio_change_kind Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/change_kind, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_change_kind gauge
caches_memory_hit_ratio_change_kind 100.0
# HELP caches_memory_hit_ratio_change_notes Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/change_notes, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_change_notes gauge
caches_memory_hit_ratio_change_notes 100.0
# HELP caches_memory_hit_ratio_changeid_project Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/changeid_project, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_changeid_project gauge
caches_memory_hit_ratio_changeid_project 100.0
# HELP caches_memory_hit_ratio_changes Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/changes, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_changes gauge
caches_memory_hit_ratio_changes 100.0
# HELP caches_memory_hit_ratio_conflicts Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/conflicts, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_conflicts gauge
caches_memory_hit_ratio_conflicts 100.0
# HELP caches_memory_hit_ratio_default_preferences Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/default_preferences, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_default_preferences gauge
caches_memory_hit_ratio_default_preferences 100.0
# HELP caches_memory_hit_ratio_diff Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/diff, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_diff gauge
caches_memory_hit_ratio_diff 100.0
# HELP caches_memory_hit_ratio_diff_intraline Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/diff_intraline, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_diff_intraline gauge
caches_memory_hit_ratio_diff_intraline 100.0
# HELP caches_memory_hit_ratio_diff_summary Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/diff_summary, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_diff_summary gauge
caches_memory_hit_ratio_diff_summary 100.0
# HELP caches_memory_hit_ratio_external_ids_map Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/external_ids_map, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_external_ids_map gauge
caches_memory_hit_ratio_external_ids_map 97.6923076923077
# HELP caches_memory_hit_ratio_git_tags Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/git_tags, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_git_tags gauge
caches_memory_hit_ratio_git_tags 100.0
# HELP caches_memory_hit_ratio_groups Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups gauge
caches_memory_hit_ratio_groups 100.0
# HELP caches_memory_hit_ratio_groups_bymember Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups_bymember, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups_bymember gauge
caches_memory_hit_ratio_groups_bymember 100.0
# HELP caches_memory_hit_ratio_groups_byname Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups_byname, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups_byname gauge
caches_memory_hit_ratio_groups_byname 100.0
# HELP caches_memory_hit_ratio_groups_bysubgroup Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups_bysubgroup, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups_bysubgroup gauge
caches_memory_hit_ratio_groups_bysubgroup 100.0
# HELP caches_memory_hit_ratio_groups_byuuid Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups_byuuid, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups_byuuid gauge
caches_memory_hit_ratio_groups_byuuid 94.5945945945946
# HELP caches_memory_hit_ratio_groups_external Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups_external, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups_external gauge
caches_memory_hit_ratio_groups_external 100.0
# HELP caches_memory_hit_ratio_groups_external_persisted Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/groups_external_persisted, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_groups_external_persisted gauge
caches_memory_hit_ratio_groups_external_persisted 100.0
# HELP caches_memory_hit_ratio_mergeability Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/mergeability, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_mergeability gauge
caches_memory_hit_ratio_mergeability 100.0
# HELP caches_memory_hit_ratio_oauth_tokens Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/oauth_tokens, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_oauth_tokens gauge
caches_memory_hit_ratio_oauth_tokens 100.0
# HELP caches_memory_hit_ratio_permission_sort Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/permission_sort, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_permission_sort gauge
caches_memory_hit_ratio_permission_sort 100.0
# HELP caches_memory_hit_ratio_plugin_lfs_lfs_project_locks Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/plugin-lfs-lfs_project_locks, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_plugin_lfs_lfs_project_locks gauge
caches_memory_hit_ratio_plugin_lfs_lfs_project_locks 100.0
# HELP caches_memory_hit_ratio_plugin_resources Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/plugin_resources, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_plugin_resources gauge
caches_memory_hit_ratio_plugin_resources 0.0
# HELP caches_memory_hit_ratio_project_list Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/project_list, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_project_list gauge
caches_memory_hit_ratio_project_list 100.0
# HELP caches_memory_hit_ratio_projects Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/projects, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_projects gauge
caches_memory_hit_ratio_projects 99.35483870967742
# HELP caches_memory_hit_ratio_prolog_rules Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/prolog_rules, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_prolog_rules gauge
caches_memory_hit_ratio_prolog_rules 100.0
# HELP caches_memory_hit_ratio_pure_revert Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/pure_revert, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_pure_revert gauge
caches_memory_hit_ratio_pure_revert 100.0
# HELP caches_memory_hit_ratio_sshkeys Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/sshkeys, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_sshkeys gauge
caches_memory_hit_ratio_sshkeys 100.0
# HELP caches_memory_hit_ratio_static_content Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/static_content, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_static_content gauge
caches_memory_hit_ratio_static_content 0.0
# HELP caches_memory_hit_ratio_web_sessions Generated from Dropwizard metric import (metric=caches/memory_hit_ratio/web_sessions, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE caches_memory_hit_ratio_web_sessions gauge
caches_memory_hit_ratio_web_sessions 98.18181818181819
# HELP http_server_jetty_connections_connections Generated from Dropwizard metric import (metric=http/server/jetty/connections/connections, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_connections gauge
http_server_jetty_connections_connections 1.0
# HELP http_server_jetty_connections_connections_duration_max Generated from Dropwizard metric import (metric=http/server/jetty/connections/connections_duration_max, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_connections_duration_max gauge
http_server_jetty_connections_connections_duration_max 57495.0
# HELP http_server_jetty_connections_connections_duration_mean Generated from Dropwizard metric import (metric=http/server/jetty/connections/connections_duration_mean, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_connections_duration_mean gauge
http_server_jetty_connections_connections_duration_mean 26961.88888888889
# HELP http_server_jetty_connections_connections_duration_stdev Generated from Dropwizard metric import (metric=http/server/jetty/connections/connections_duration_stdev, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_connections_duration_stdev gauge
http_server_jetty_connections_connections_duration_stdev 15463.038167595008
# HELP http_server_jetty_connections_connections_total Generated from Dropwizard metric import (metric=http/server/jetty/connections/connections_total, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_connections_total gauge
http_server_jetty_connections_connections_total 10.0
# HELP http_server_jetty_connections_received_bytes Generated from Dropwizard metric import (metric=http/server/jetty/connections/received_bytes, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_received_bytes gauge
http_server_jetty_connections_received_bytes 24035.0
# HELP http_server_jetty_connections_received_messages Generated from Dropwizard metric import (metric=http/server/jetty/connections/received_messages, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_received_messages gauge
http_server_jetty_connections_received_messages 52.0
# HELP http_server_jetty_connections_sent_bytes Generated from Dropwizard metric import (metric=http/server/jetty/connections/sent_bytes, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_sent_bytes gauge
http_server_jetty_connections_sent_bytes 1206423.0
# HELP http_server_jetty_connections_sent_messages Generated from Dropwizard metric import (metric=http/server/jetty/connections/sent_messages, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_connections_sent_messages gauge
http_server_jetty_connections_sent_messages 52.0
# HELP http_server_jetty_threadpool_active_threads Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_active_threads gauge
http_server_jetty_threadpool_active_threads 3.0
# HELP http_server_jetty_threadpool_idle_threads Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/idle_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_idle_threads gauge
http_server_jetty_threadpool_idle_threads 3.0
# HELP http_server_jetty_threadpool_is_low_on_threads Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/is_low_on_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_is_low_on_threads gauge
http_server_jetty_threadpool_is_low_on_threads 0.0
# HELP http_server_jetty_threadpool_max_pool_size Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_max_pool_size gauge
http_server_jetty_threadpool_max_pool_size 25.0
# HELP http_server_jetty_threadpool_min_pool_size Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/min_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_min_pool_size gauge
http_server_jetty_threadpool_min_pool_size 5.0
# HELP http_server_jetty_threadpool_pool_size Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_pool_size gauge
http_server_jetty_threadpool_pool_size 7.0
# HELP http_server_jetty_threadpool_queue_size Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/queue_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_queue_size gauge
http_server_jetty_threadpool_queue_size 0.0
# HELP http_server_jetty_threadpool_reserved_threads Generated from Dropwizard metric import (metric=http/server/jetty/threadpool/reserved_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE http_server_jetty_threadpool_reserved_threads gauge
http_server_jetty_threadpool_reserved_threads 2.0
# HELP jgit_block_cache_avg_load_time Generated from Dropwizard metric import (metric=jgit/block_cache/avg_load_time, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_avg_load_time gauge
jgit_block_cache_avg_load_time 0.0
# HELP jgit_block_cache_cache_used Generated from Dropwizard metric import (metric=jgit/block_cache/cache_used, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_cache_used gauge
jgit_block_cache_cache_used 0.0
# HELP jgit_block_cache_cache_used_per_repository_ Generated from Dropwizard metric import (metric=jgit/block_cache/cache_used_per_repository/, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE jgit_block_cache_cache_used_per_repository_ gauge
jgit_block_cache_cache_used_per_repository_ 0.0
# HELP jgit_block_cache_eviction_count Generated from Dropwizard metric import (metric=jgit/block_cache/eviction_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_eviction_count gauge
jgit_block_cache_eviction_count 0.0
# HELP jgit_block_cache_eviction_ratio Generated from Dropwizard metric import (metric=jgit/block_cache/eviction_ratio, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_eviction_ratio gauge
jgit_block_cache_eviction_ratio 0.0
# HELP jgit_block_cache_hit_count Generated from Dropwizard metric import (metric=jgit/block_cache/hit_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_hit_count gauge
jgit_block_cache_hit_count 0.0
# HELP jgit_block_cache_hit_ratio Generated from Dropwizard metric import (metric=jgit/block_cache/hit_ratio, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_hit_ratio gauge
jgit_block_cache_hit_ratio 1.0
# HELP jgit_block_cache_load_failure_count Generated from Dropwizard metric import (metric=jgit/block_cache/load_failure_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_load_failure_count gauge
jgit_block_cache_load_failure_count 0.0
# HELP jgit_block_cache_load_failure_ratio Generated from Dropwizard metric import (metric=jgit/block_cache/load_failure_ratio, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_load_failure_ratio gauge
jgit_block_cache_load_failure_ratio 0.0
# HELP jgit_block_cache_load_success_count Generated from Dropwizard metric import (metric=jgit/block_cache/load_success_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_load_success_count gauge
jgit_block_cache_load_success_count 0.0
# HELP jgit_block_cache_miss_count Generated from Dropwizard metric import (metric=jgit/block_cache/miss_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_miss_count gauge
jgit_block_cache_miss_count 0.0
# HELP jgit_block_cache_miss_ratio Generated from Dropwizard metric import (metric=jgit/block_cache/miss_ratio, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_miss_ratio gauge
jgit_block_cache_miss_ratio 0.0
# HELP jgit_block_cache_open_files Generated from Dropwizard metric import (metric=jgit/block_cache/open_files, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_open_files gauge
jgit_block_cache_open_files 0.0
# HELP jgit_block_cache_total_load_time Generated from Dropwizard metric import (metric=jgit/block_cache/total_load_time, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE jgit_block_cache_total_load_time gauge
jgit_block_cache_total_load_time 0.0
# HELP plugins_healthcheck_activeworkers_latest_latency Generated from Dropwizard metric import (metric=plugins/healthcheck/activeworkers/latest_latency, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE plugins_healthcheck_activeworkers_latest_latency gauge
plugins_healthcheck_activeworkers_latest_latency 0.0
# HELP plugins_healthcheck_auth_latest_latency Generated from Dropwizard metric import (metric=plugins/healthcheck/auth/latest_latency, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE plugins_healthcheck_auth_latest_latency gauge
plugins_healthcheck_auth_latest_latency 0.0
# HELP plugins_healthcheck_deadlock_latest_latency Generated from Dropwizard metric import (metric=plugins/healthcheck/deadlock/latest_latency, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE plugins_healthcheck_deadlock_latest_latency gauge
plugins_healthcheck_deadlock_latest_latency 0.0
# HELP plugins_healthcheck_jgit_latest_latency Generated from Dropwizard metric import (metric=plugins/healthcheck/jgit/latest_latency, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE plugins_healthcheck_jgit_latest_latency gauge
plugins_healthcheck_jgit_latest_latency 0.0
# HELP plugins_healthcheck_projectslist_latest_latency Generated from Dropwizard metric import (metric=plugins/healthcheck/projectslist/latest_latency, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE plugins_healthcheck_projectslist_latest_latency gauge
plugins_healthcheck_projectslist_latest_latency 0.0
# HELP plugins_healthcheck_querychanges_latest_latency Generated from Dropwizard metric import (metric=plugins/healthcheck/querychanges/latest_latency, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE plugins_healthcheck_querychanges_latest_latency gauge
plugins_healthcheck_querychanges_latest_latency 0.0
# HELP proc_birth_timestamp Generated from Dropwizard metric import (metric=proc/birth_timestamp, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_birth_timestamp gauge
proc_birth_timestamp 1.604942036578E15
# HELP proc_cpu_num_cores Generated from Dropwizard metric import (metric=proc/cpu/num_cores, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_cpu_num_cores gauge
proc_cpu_num_cores 8.0
# HELP proc_cpu_system_load Generated from Dropwizard metric import (metric=proc/cpu/system_load, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_cpu_system_load gauge
proc_cpu_system_load 0.92
# HELP proc_cpu_usage Generated from Dropwizard metric import (metric=proc/cpu/usage, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_cpu_usage gauge
proc_cpu_usage 36.29
# HELP proc_jvm_gc_count_G1_Old_Generation Generated from Dropwizard metric import (metric=proc/jvm/gc/count/G1 Old Generation, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE proc_jvm_gc_count_G1_Old_Generation gauge
proc_jvm_gc_count_G1_Old_Generation 0.0
# HELP proc_jvm_gc_count_G1_Young_Generation Generated from Dropwizard metric import (metric=proc/jvm/gc/count/G1 Young Generation, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE proc_jvm_gc_count_G1_Young_Generation gauge
proc_jvm_gc_count_G1_Young_Generation 12.0
# HELP proc_jvm_gc_time_G1_Old_Generation Generated from Dropwizard metric import (metric=proc/jvm/gc/time/G1 Old Generation, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE proc_jvm_gc_time_G1_Old_Generation gauge
proc_jvm_gc_time_G1_Old_Generation 0.0
# HELP proc_jvm_gc_time_G1_Young_Generation Generated from Dropwizard metric import (metric=proc/jvm/gc/time/G1 Young Generation, type=com.google.gerrit.metrics.dropwizard.BucketedCallback$ValueGauge)
# TYPE proc_jvm_gc_time_G1_Young_Generation gauge
proc_jvm_gc_time_G1_Young_Generation 217.0
# HELP proc_jvm_memory_heap_committed Generated from Dropwizard metric import (metric=proc/jvm/memory/heap_committed, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_memory_heap_committed gauge
proc_jvm_memory_heap_committed 1.9922944E8
# HELP proc_jvm_memory_heap_used Generated from Dropwizard metric import (metric=proc/jvm/memory/heap_used, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_memory_heap_used gauge
proc_jvm_memory_heap_used 9.9664896E7
# HELP proc_jvm_memory_non_heap_committed Generated from Dropwizard metric import (metric=proc/jvm/memory/non_heap_committed, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_memory_non_heap_committed gauge
proc_jvm_memory_non_heap_committed 1.09162496E8
# HELP proc_jvm_memory_non_heap_used Generated from Dropwizard metric import (metric=proc/jvm/memory/non_heap_used, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_memory_non_heap_used gauge
proc_jvm_memory_non_heap_used 1.0434328E8
# HELP proc_jvm_memory_object_pending_finalization_count Generated from Dropwizard metric import (metric=proc/jvm/memory/object_pending_finalization_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_memory_object_pending_finalization_count gauge
proc_jvm_memory_object_pending_finalization_count 0.0
# HELP proc_jvm_thread_num_daemon_live Generated from Dropwizard metric import (metric=proc/jvm/thread/num_daemon_live, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_thread_num_daemon_live gauge
proc_jvm_thread_num_daemon_live 53.0
# HELP proc_jvm_thread_num_deadlocked_threads Generated from Dropwizard metric import (metric=proc/jvm/thread/num_deadlocked_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_thread_num_deadlocked_threads gauge
proc_jvm_thread_num_deadlocked_threads 0.0
# HELP proc_jvm_thread_num_live Generated from Dropwizard metric import (metric=proc/jvm/thread/num_live, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_thread_num_live gauge
proc_jvm_thread_num_live 71.0
# HELP proc_jvm_thread_num_peak_live Generated from Dropwizard metric import (metric=proc/jvm/thread/num_peak_live, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_thread_num_peak_live gauge
proc_jvm_thread_num_peak_live 74.0
# HELP proc_jvm_thread_num_total_started Generated from Dropwizard metric import (metric=proc/jvm/thread/num_total_started, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_jvm_thread_num_total_started gauge
proc_jvm_thread_num_total_started 81.0
# HELP proc_num_open_fds Generated from Dropwizard metric import (metric=proc/num_open_fds, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_num_open_fds gauge
proc_num_open_fds 259.0
# HELP proc_uptime Generated from Dropwizard metric import (metric=proc/uptime, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE proc_uptime gauge
proc_uptime 162909.0
# HELP queue_index_batch_active_threads Generated from Dropwizard metric import (metric=queue/index_batch/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_batch_active_threads gauge
queue_index_batch_active_threads 0.0
# HELP queue_index_batch_max_pool_size Generated from Dropwizard metric import (metric=queue/index_batch/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_batch_max_pool_size gauge
queue_index_batch_max_pool_size 2.147483647E9
# HELP queue_index_batch_pool_size Generated from Dropwizard metric import (metric=queue/index_batch/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_batch_pool_size gauge
queue_index_batch_pool_size 0.0
# HELP queue_index_batch_scheduled_tasks Generated from Dropwizard metric import (metric=queue/index_batch/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_batch_scheduled_tasks gauge
queue_index_batch_scheduled_tasks 0.0
# HELP queue_index_batch_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/index_batch/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_batch_total_completed_tasks_count gauge
queue_index_batch_total_completed_tasks_count 0.0
# HELP queue_index_batch_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/index_batch/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_batch_total_scheduled_tasks_count gauge
queue_index_batch_total_scheduled_tasks_count 0.0
# HELP queue_index_interactive_active_threads Generated from Dropwizard metric import (metric=queue/index_interactive/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_interactive_active_threads gauge
queue_index_interactive_active_threads 0.0
# HELP queue_index_interactive_max_pool_size Generated from Dropwizard metric import (metric=queue/index_interactive/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_interactive_max_pool_size gauge
queue_index_interactive_max_pool_size 2.147483647E9
# HELP queue_index_interactive_pool_size Generated from Dropwizard metric import (metric=queue/index_interactive/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_interactive_pool_size gauge
queue_index_interactive_pool_size 5.0
# HELP queue_index_interactive_scheduled_tasks Generated from Dropwizard metric import (metric=queue/index_interactive/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_interactive_scheduled_tasks gauge
queue_index_interactive_scheduled_tasks 0.0
# HELP queue_index_interactive_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/index_interactive/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_interactive_total_completed_tasks_count gauge
queue_index_interactive_total_completed_tasks_count 18.0
# HELP queue_index_interactive_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/index_interactive/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_index_interactive_total_scheduled_tasks_count gauge
queue_index_interactive_total_scheduled_tasks_count 18.0
# HELP queue_receive_commits_active_threads Generated from Dropwizard metric import (metric=queue/receive_commits/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_receive_commits_active_threads gauge
queue_receive_commits_active_threads 0.0
# HELP queue_receive_commits_max_pool_size Generated from Dropwizard metric import (metric=queue/receive_commits/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_receive_commits_max_pool_size gauge
queue_receive_commits_max_pool_size 2.147483647E9
# HELP queue_receive_commits_pool_size Generated from Dropwizard metric import (metric=queue/receive_commits/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_receive_commits_pool_size gauge
queue_receive_commits_pool_size 0.0
# HELP queue_receive_commits_scheduled_tasks Generated from Dropwizard metric import (metric=queue/receive_commits/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_receive_commits_scheduled_tasks gauge
queue_receive_commits_scheduled_tasks 0.0
# HELP queue_receive_commits_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/receive_commits/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_receive_commits_total_completed_tasks_count gauge
queue_receive_commits_total_completed_tasks_count 0.0
# HELP queue_receive_commits_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/receive_commits/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_receive_commits_total_scheduled_tasks_count gauge
queue_receive_commits_total_scheduled_tasks_count 0.0
# HELP queue_send_email_active_threads Generated from Dropwizard metric import (metric=queue/send_email/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_send_email_active_threads gauge
queue_send_email_active_threads 0.0
# HELP queue_send_email_max_pool_size Generated from Dropwizard metric import (metric=queue/send_email/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_send_email_max_pool_size gauge
queue_send_email_max_pool_size 2.147483647E9
# HELP queue_send_email_pool_size Generated from Dropwizard metric import (metric=queue/send_email/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_send_email_pool_size gauge
queue_send_email_pool_size 0.0
# HELP queue_send_email_scheduled_tasks Generated from Dropwizard metric import (metric=queue/send_email/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_send_email_scheduled_tasks gauge
queue_send_email_scheduled_tasks 0.0
# HELP queue_send_email_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/send_email/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_send_email_total_completed_tasks_count gauge
queue_send_email_total_completed_tasks_count 0.0
# HELP queue_send_email_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/send_email/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_send_email_total_scheduled_tasks_count gauge
queue_send_email_total_scheduled_tasks_count 0.0
# HELP queue_ssh_batch_worker_active_threads Generated from Dropwizard metric import (metric=queue/ssh_batch_worker/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_batch_worker_active_threads gauge
queue_ssh_batch_worker_active_threads 0.0
# HELP queue_ssh_batch_worker_max_pool_size Generated from Dropwizard metric import (metric=queue/ssh_batch_worker/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_batch_worker_max_pool_size gauge
queue_ssh_batch_worker_max_pool_size 2.147483647E9
# HELP queue_ssh_batch_worker_pool_size Generated from Dropwizard metric import (metric=queue/ssh_batch_worker/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_batch_worker_pool_size gauge
queue_ssh_batch_worker_pool_size 0.0
# HELP queue_ssh_batch_worker_scheduled_tasks Generated from Dropwizard metric import (metric=queue/ssh_batch_worker/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_batch_worker_scheduled_tasks gauge
queue_ssh_batch_worker_scheduled_tasks 0.0
# HELP queue_ssh_batch_worker_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_batch_worker/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_batch_worker_total_completed_tasks_count gauge
queue_ssh_batch_worker_total_completed_tasks_count 0.0
# HELP queue_ssh_batch_worker_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_batch_worker/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_batch_worker_total_scheduled_tasks_count gauge
queue_ssh_batch_worker_total_scheduled_tasks_count 0.0
# HELP queue_ssh_command_start_active_threads Generated from Dropwizard metric import (metric=queue/ssh_command_start/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_command_start_active_threads gauge
queue_ssh_command_start_active_threads 0.0
# HELP queue_ssh_command_start_max_pool_size Generated from Dropwizard metric import (metric=queue/ssh_command_start/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_command_start_max_pool_size gauge
queue_ssh_command_start_max_pool_size 2.147483647E9
# HELP queue_ssh_command_start_pool_size Generated from Dropwizard metric import (metric=queue/ssh_command_start/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_command_start_pool_size gauge
queue_ssh_command_start_pool_size 0.0
# HELP queue_ssh_command_start_scheduled_tasks Generated from Dropwizard metric import (metric=queue/ssh_command_start/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_command_start_scheduled_tasks gauge
queue_ssh_command_start_scheduled_tasks 0.0
# HELP queue_ssh_command_start_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_command_start/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_command_start_total_completed_tasks_count gauge
queue_ssh_command_start_total_completed_tasks_count 0.0
# HELP queue_ssh_command_start_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_command_start/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_command_start_total_scheduled_tasks_count gauge
queue_ssh_command_start_total_scheduled_tasks_count 0.0
# HELP queue_ssh_interactive_worker_active_threads Generated from Dropwizard metric import (metric=queue/ssh_interactive_worker/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_interactive_worker_active_threads gauge
queue_ssh_interactive_worker_active_threads 0.0
# HELP queue_ssh_interactive_worker_max_pool_size Generated from Dropwizard metric import (metric=queue/ssh_interactive_worker/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_interactive_worker_max_pool_size gauge
queue_ssh_interactive_worker_max_pool_size 2.147483647E9
# HELP queue_ssh_interactive_worker_pool_size Generated from Dropwizard metric import (metric=queue/ssh_interactive_worker/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_interactive_worker_pool_size gauge
queue_ssh_interactive_worker_pool_size 0.0
# HELP queue_ssh_interactive_worker_scheduled_tasks Generated from Dropwizard metric import (metric=queue/ssh_interactive_worker/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_interactive_worker_scheduled_tasks gauge
queue_ssh_interactive_worker_scheduled_tasks 0.0
# HELP queue_ssh_interactive_worker_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_interactive_worker/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_interactive_worker_total_completed_tasks_count gauge
queue_ssh_interactive_worker_total_completed_tasks_count 0.0
# HELP queue_ssh_interactive_worker_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_interactive_worker/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_interactive_worker_total_scheduled_tasks_count gauge
queue_ssh_interactive_worker_total_scheduled_tasks_count 0.0
# HELP queue_ssh_stream_worker_active_threads Generated from Dropwizard metric import (metric=queue/ssh_stream_worker/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_stream_worker_active_threads gauge
queue_ssh_stream_worker_active_threads 0.0
# HELP queue_ssh_stream_worker_max_pool_size Generated from Dropwizard metric import (metric=queue/ssh_stream_worker/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_stream_worker_max_pool_size gauge
queue_ssh_stream_worker_max_pool_size 2.147483647E9
# HELP queue_ssh_stream_worker_pool_size Generated from Dropwizard metric import (metric=queue/ssh_stream_worker/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_stream_worker_pool_size gauge
queue_ssh_stream_worker_pool_size 0.0
# HELP queue_ssh_stream_worker_scheduled_tasks Generated from Dropwizard metric import (metric=queue/ssh_stream_worker/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_stream_worker_scheduled_tasks gauge
queue_ssh_stream_worker_scheduled_tasks 0.0
# HELP queue_ssh_stream_worker_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_stream_worker/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_stream_worker_total_completed_tasks_count gauge
queue_ssh_stream_worker_total_completed_tasks_count 0.0
# HELP queue_ssh_stream_worker_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/ssh_stream_worker/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_ssh_stream_worker_total_scheduled_tasks_count gauge
queue_ssh_stream_worker_total_scheduled_tasks_count 0.0
# HELP queue_work_queue_active_threads Generated from Dropwizard metric import (metric=queue/work_queue/active_threads, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_work_queue_active_threads gauge
queue_work_queue_active_threads 0.0
# HELP queue_work_queue_max_pool_size Generated from Dropwizard metric import (metric=queue/work_queue/max_pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_work_queue_max_pool_size gauge
queue_work_queue_max_pool_size 2.147483647E9
# HELP queue_work_queue_pool_size Generated from Dropwizard metric import (metric=queue/work_queue/pool_size, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_work_queue_pool_size gauge
queue_work_queue_pool_size 2.0
# HELP queue_work_queue_scheduled_tasks Generated from Dropwizard metric import (metric=queue/work_queue/scheduled_tasks, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_work_queue_scheduled_tasks gauge
queue_work_queue_scheduled_tasks 2.0
# HELP queue_work_queue_total_completed_tasks_count Generated from Dropwizard metric import (metric=queue/work_queue/total_completed_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_work_queue_total_completed_tasks_count gauge
queue_work_queue_total_completed_tasks_count 2.0
# HELP queue_work_queue_total_scheduled_tasks_count Generated from Dropwizard metric import (metric=queue/work_queue/total_scheduled_tasks_count, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE queue_work_queue_total_scheduled_tasks_count gauge
queue_work_queue_total_scheduled_tasks_count 4.0
# HELP sshd_sessions_connected Generated from Dropwizard metric import (metric=sshd/sessions/connected, type=com.google.gerrit.metrics.dropwizard.CallbackMetricImpl0$$Lambda$192/0x0000000840361440)
# TYPE sshd_sessions_connected gauge
sshd_sessions_connected 0.0
# HELP action_auto_retry_count_total Generated from Dropwizard metric import (metric=action/auto_retry_count_total, type=com.codahale.metrics.Counter)
# TYPE action_auto_retry_count_total gauge
action_auto_retry_count_total 0.0
# HELP action_failures_on_auto_retry_count_total Generated from Dropwizard metric import (metric=action/failures_on_auto_retry_count_total, type=com.codahale.metrics.Counter)
# TYPE action_failures_on_auto_retry_count_total gauge
action_failures_on_auto_retry_count_total 0.0
# HELP action_retry_attempt_count_total Generated from Dropwizard metric import (metric=action/retry_attempt_count_total, type=com.codahale.metrics.Counter)
# TYPE action_retry_attempt_count_total gauge
action_retry_attempt_count_total 0.0
# HELP action_retry_timeout_count_total Generated from Dropwizard metric import (metric=action/retry_timeout_count_total, type=com.codahale.metrics.Counter)
# TYPE action_retry_timeout_count_total gauge
action_retry_timeout_count_total 0.0
# HELP plugin_error_count_total Generated from Dropwizard metric import (metric=plugin/error_count_total, type=com.codahale.metrics.Counter)
# TYPE plugin_error_count_total gauge
plugin_error_count_total 0.0
# HELP plugins_delete_project_plugin_error_count_total Generated from Dropwizard metric import (metric=plugins/delete-project/plugin/error_count_total, type=com.codahale.metrics.Counter)
# TYPE plugins_delete_project_plugin_error_count_total gauge
plugins_delete_project_plugin_error_count_total 0.0
# HELP git_upload_pack_pack_bytes_total Generated from Dropwizard metric import (metric=git/upload-pack/pack_bytes_total, type=com.codahale.metrics.Histogram)
# TYPE git_upload_pack_pack_bytes_total summary
git_upload_pack_pack_bytes_total{quantile="0.5",} 0.0
git_upload_pack_pack_bytes_total{quantile="0.75",} 0.0
git_upload_pack_pack_bytes_total{quantile="0.95",} 0.0
git_upload_pack_pack_bytes_total{quantile="0.98",} 0.0
git_upload_pack_pack_bytes_total{quantile="0.99",} 0.0
git_upload_pack_pack_bytes_total{quantile="0.999",} 0.0
git_upload_pack_pack_bytes_total_count 0.0
# HELP http_server_rest_api_response_bytes_restapi_account_GetCapabilities Generated from Dropwizard metric import (metric=http/server/rest_api/response_bytes/restapi.account.GetCapabilities, type=com.codahale.metrics.Histogram)
# TYPE http_server_rest_api_response_bytes_restapi_account_GetCapabilities summary
http_server_rest_api_response_bytes_restapi_account_GetCapabilities{quantile="0.5",} 306.0
http_server_rest_api_response_bytes_restapi_account_GetCapabilities{quantile="0.75",} 306.0
http_server_rest_api_response_bytes_restapi_account_GetCapabilities{quantile="0.95",} 306.0
http_server_rest_api_response_bytes_restapi_account_GetCapabilities{quantile="0.98",} 306.0
http_server_rest_api_response_bytes_restapi_account_GetCapabilities{quantile="0.99",} 306.0
http_server_rest_api_response_bytes_restapi_account_GetCapabilities{quantile="0.999",} 306.0
http_server_rest_api_response_bytes_restapi_account_GetCapabilities_count 2.0
# HELP http_server_rest_api_response_bytes_restapi_account_GetDetail Generated from Dropwizard metric import (metric=http/server/rest_api/response_bytes/restapi.account.GetDetail, type=com.codahale.metrics.Histogram)
# TYPE http_server_rest_api_response_bytes_restapi_account_GetDetail summary
http_server_rest_api_response_bytes_restapi_account_GetDetail{quantile="0.5",} 184.0
http_server_rest_api_response_bytes_restapi_account_GetDetail{quantile="0.75",} 184.0
http_server_rest_api_response_bytes_restapi_account_GetDetail{quantile="0.95",} 184.0
http_server_rest_api_response_bytes_restapi_account_GetDetail{quantile="0.98",} 184.0
http_server_rest_api_response_bytes_restapi_account_GetDetail{quantile="0.99",} 184.0
http_server_rest_api_response_bytes_restapi_account_GetDetail{quantile="0.999",} 184.0
http_server_rest_api_response_bytes_restapi_account_GetDetail_count 2.0
# HELP http_server_rest_api_response_bytes_restapi_account_GetStatus Generated from Dropwizard metric import (metric=http/server/rest_api/response_bytes/restapi.account.GetStatus, type=com.codahale.metrics.Histogram)
# TYPE http_server_rest_api_response_bytes_restapi_account_GetStatus summary
http_server_rest_api_response_bytes_restapi_account_GetStatus{quantile="0.5",} 8.0
http_server_rest_api_response_bytes_restapi_account_GetStatus{quantile="0.75",} 8.0
http_server_rest_api_response_bytes_restapi_account_GetStatus{quantile="0.95",} 8.0
http_server_rest_api_response_bytes_restapi_account_GetStatus{quantile="0.98",} 8.0
http_server_rest_api_response_bytes_restapi_account_GetStatus{quantile="0.99",} 8.0
http_server_rest_api_response_bytes_restapi_account_GetStatus{quantile="0.999",} 8.0
http_server_rest_api_response_bytes_restapi_account_GetStatus_count 2.0
# HELP http_server_rest_api_response_bytes_restapi_change_QueryChanges Generated from Dropwizard metric import (metric=http/server/rest_api/response_bytes/restapi.change.QueryChanges, type=com.codahale.metrics.Histogram)
# TYPE http_server_rest_api_response_bytes_restapi_change_QueryChanges summary
http_server_rest_api_response_bytes_restapi_change_QueryChanges{quantile="0.5",} 31.0
http_server_rest_api_response_bytes_restapi_change_QueryChanges{quantile="0.75",} 31.0
http_server_rest_api_response_bytes_restapi_change_QueryChanges{quantile="0.95",} 31.0
http_server_rest_api_response_bytes_restapi_change_QueryChanges{quantile="0.98",} 31.0
http_server_rest_api_response_bytes_restapi_change_QueryChanges{quantile="0.99",} 31.0
http_server_rest_api_response_bytes_restapi_change_QueryChanges{quantile="0.999",} 31.0
http_server_rest_api_response_bytes_restapi_change_QueryChanges_count 2.0
# HELP http_server_rest_api_response_bytes_total Generated from Dropwizard metric import (metric=http/server/rest_api/response_bytes_total, type=com.codahale.metrics.Histogram)
# TYPE http_server_rest_api_response_bytes_total summary
http_server_rest_api_response_bytes_total{quantile="0.5",} 184.0
http_server_rest_api_response_bytes_total{quantile="0.75",} 306.0
http_server_rest_api_response_bytes_total{quantile="0.95",} 306.0
http_server_rest_api_response_bytes_total{quantile="0.98",} 306.0
http_server_rest_api_response_bytes_total{quantile="0.99",} 306.0
http_server_rest_api_response_bytes_total{quantile="0.999",} 306.0
http_server_rest_api_response_bytes_total_count 8.0
# HELP change_submit_rule_evaluation Generated from Dropwizard metric import (metric=change/submit_rule_evaluation, type=com.codahale.metrics.Timer)
# TYPE change_submit_rule_evaluation summary
change_submit_rule_evaluation{quantile="0.5",} 0.0
change_submit_rule_evaluation{quantile="0.75",} 0.0
change_submit_rule_evaluation{quantile="0.95",} 0.0
change_submit_rule_evaluation{quantile="0.98",} 0.0
change_submit_rule_evaluation{quantile="0.99",} 0.0
change_submit_rule_evaluation{quantile="0.999",} 0.0
change_submit_rule_evaluation_count 0.0
# HELP change_submit_type_evaluation Generated from Dropwizard metric import (metric=change/submit_type_evaluation, type=com.codahale.metrics.Timer)
# TYPE change_submit_type_evaluation summary
change_submit_type_evaluation{quantile="0.5",} 0.0
change_submit_type_evaluation{quantile="0.75",} 0.0
change_submit_type_evaluation{quantile="0.95",} 0.0
change_submit_type_evaluation{quantile="0.98",} 0.0
change_submit_type_evaluation{quantile="0.99",} 0.0
change_submit_type_evaluation{quantile="0.999",} 0.0
change_submit_type_evaluation_count 0.0
# HELP git_upload_pack_phase_compressing_total Generated from Dropwizard metric import (metric=git/upload-pack/phase_compressing_total, type=com.codahale.metrics.Timer)
# TYPE git_upload_pack_phase_compressing_total summary
git_upload_pack_phase_compressing_total{quantile="0.5",} 0.0
git_upload_pack_phase_compressing_total{quantile="0.75",} 0.0
git_upload_pack_phase_compressing_total{quantile="0.95",} 0.0
git_upload_pack_phase_compressing_total{quantile="0.98",} 0.0
git_upload_pack_phase_compressing_total{quantile="0.99",} 0.0
git_upload_pack_phase_compressing_total{quantile="0.999",} 0.0
git_upload_pack_phase_compressing_total_count 0.0
# HELP git_upload_pack_phase_counting_total Generated from Dropwizard metric import (metric=git/upload-pack/phase_counting_total, type=com.codahale.metrics.Timer)
# TYPE git_upload_pack_phase_counting_total summary
git_upload_pack_phase_counting_total{quantile="0.5",} 0.0
git_upload_pack_phase_counting_total{quantile="0.75",} 0.0
git_upload_pack_phase_counting_total{quantile="0.95",} 0.0
git_upload_pack_phase_counting_total{quantile="0.98",} 0.0
git_upload_pack_phase_counting_total{quantile="0.99",} 0.0
git_upload_pack_phase_counting_total{quantile="0.999",} 0.0
git_upload_pack_phase_counting_total_count 0.0
# HELP git_upload_pack_phase_writing_total Generated from Dropwizard metric import (metric=git/upload-pack/phase_writing_total, type=com.codahale.metrics.Timer)
# TYPE git_upload_pack_phase_writing_total summary
git_upload_pack_phase_writing_total{quantile="0.5",} 0.0
git_upload_pack_phase_writing_total{quantile="0.75",} 0.0
git_upload_pack_phase_writing_total{quantile="0.95",} 0.0
git_upload_pack_phase_writing_total{quantile="0.98",} 0.0
git_upload_pack_phase_writing_total{quantile="0.99",} 0.0
git_upload_pack_phase_writing_total{quantile="0.999",} 0.0
git_upload_pack_phase_writing_total_count 0.0
# HELP group_guess_relevant_groups_latency Generated from Dropwizard metric import (metric=group/guess_relevant_groups_latency, type=com.codahale.metrics.Timer)
# TYPE group_guess_relevant_groups_latency summary
group_guess_relevant_groups_latency{quantile="0.5",} 0.0
group_guess_relevant_groups_latency{quantile="0.75",} 0.0
group_guess_relevant_groups_latency{quantile="0.95",} 0.0
group_guess_relevant_groups_latency{quantile="0.98",} 0.0
group_guess_relevant_groups_latency{quantile="0.99",} 0.0
group_guess_relevant_groups_latency{quantile="0.999",} 0.0
group_guess_relevant_groups_latency_count 0.0
# HELP http_server_rest_api_change_json_format_query_results_latency Generated from Dropwizard metric import (metric=http/server/rest_api/change_json/format_query_results_latency, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_change_json_format_query_results_latency summary
http_server_rest_api_change_json_format_query_results_latency{quantile="0.5",} 8.212800000000001E-5
http_server_rest_api_change_json_format_query_results_latency{quantile="0.75",} 0.001125305
http_server_rest_api_change_json_format_query_results_latency{quantile="0.95",} 0.001125305
http_server_rest_api_change_json_format_query_results_latency{quantile="0.98",} 0.001125305
http_server_rest_api_change_json_format_query_results_latency{quantile="0.99",} 0.001125305
http_server_rest_api_change_json_format_query_results_latency{quantile="0.999",} 0.001125305
http_server_rest_api_change_json_format_query_results_latency_count 4.0
# HELP http_server_rest_api_change_json_to_change_info_latency Generated from Dropwizard metric import (metric=http/server/rest_api/change_json/to_change_info_latency, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_change_json_to_change_info_latency summary
http_server_rest_api_change_json_to_change_info_latency{quantile="0.5",} 0.0
http_server_rest_api_change_json_to_change_info_latency{quantile="0.75",} 0.0
http_server_rest_api_change_json_to_change_info_latency{quantile="0.95",} 0.0
http_server_rest_api_change_json_to_change_info_latency{quantile="0.98",} 0.0
http_server_rest_api_change_json_to_change_info_latency{quantile="0.99",} 0.0
http_server_rest_api_change_json_to_change_info_latency{quantile="0.999",} 0.0
http_server_rest_api_change_json_to_change_info_latency_count 0.0
# HELP http_server_rest_api_change_json_to_change_infos_latency Generated from Dropwizard metric import (metric=http/server/rest_api/change_json/to_change_infos_latency, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_change_json_to_change_infos_latency summary
http_server_rest_api_change_json_to_change_infos_latency{quantile="0.5",} 7.690000000000001E-7
http_server_rest_api_change_json_to_change_infos_latency{quantile="0.75",} 1.19E-6
http_server_rest_api_change_json_to_change_infos_latency{quantile="0.95",} 2.826E-6
http_server_rest_api_change_json_to_change_infos_latency{quantile="0.98",} 5.894000000000001E-6
http_server_rest_api_change_json_to_change_infos_latency{quantile="0.99",} 5.894000000000001E-6
http_server_rest_api_change_json_to_change_infos_latency{quantile="0.999",} 5.894000000000001E-6
http_server_rest_api_change_json_to_change_infos_latency_count 18.0
# HELP http_server_rest_api_server_latency_restapi_account_GetCapabilities Generated from Dropwizard metric import (metric=http/server/rest_api/server_latency/restapi.account.GetCapabilities, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_server_latency_restapi_account_GetCapabilities summary
http_server_rest_api_server_latency_restapi_account_GetCapabilities{quantile="0.5",} 0.0039004710000000004
http_server_rest_api_server_latency_restapi_account_GetCapabilities{quantile="0.75",} 0.012683479000000001
http_server_rest_api_server_latency_restapi_account_GetCapabilities{quantile="0.95",} 0.012683479000000001
http_server_rest_api_server_latency_restapi_account_GetCapabilities{quantile="0.98",} 0.012683479000000001
http_server_rest_api_server_latency_restapi_account_GetCapabilities{quantile="0.99",} 0.012683479000000001
http_server_rest_api_server_latency_restapi_account_GetCapabilities{quantile="0.999",} 0.012683479000000001
http_server_rest_api_server_latency_restapi_account_GetCapabilities_count 2.0
# HELP http_server_rest_api_server_latency_restapi_account_GetDetail Generated from Dropwizard metric import (metric=http/server/rest_api/server_latency/restapi.account.GetDetail, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_server_latency_restapi_account_GetDetail summary
http_server_rest_api_server_latency_restapi_account_GetDetail{quantile="0.5",} 0.0031457440000000002
http_server_rest_api_server_latency_restapi_account_GetDetail{quantile="0.75",} 0.03796734
http_server_rest_api_server_latency_restapi_account_GetDetail{quantile="0.95",} 0.03796734
http_server_rest_api_server_latency_restapi_account_GetDetail{quantile="0.98",} 0.03796734
http_server_rest_api_server_latency_restapi_account_GetDetail{quantile="0.99",} 0.03796734
http_server_rest_api_server_latency_restapi_account_GetDetail{quantile="0.999",} 0.03796734
http_server_rest_api_server_latency_restapi_account_GetDetail_count 2.0
# HELP http_server_rest_api_server_latency_restapi_account_GetStatus Generated from Dropwizard metric import (metric=http/server/rest_api/server_latency/restapi.account.GetStatus, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_server_latency_restapi_account_GetStatus summary
http_server_rest_api_server_latency_restapi_account_GetStatus{quantile="0.5",} 0.001899957
http_server_rest_api_server_latency_restapi_account_GetStatus{quantile="0.75",} 0.038161224
http_server_rest_api_server_latency_restapi_account_GetStatus{quantile="0.95",} 0.038161224
http_server_rest_api_server_latency_restapi_account_GetStatus{quantile="0.98",} 0.038161224
http_server_rest_api_server_latency_restapi_account_GetStatus{quantile="0.99",} 0.038161224
http_server_rest_api_server_latency_restapi_account_GetStatus{quantile="0.999",} 0.038161224
http_server_rest_api_server_latency_restapi_account_GetStatus_count 2.0
# HELP http_server_rest_api_server_latency_restapi_change_QueryChanges Generated from Dropwizard metric import (metric=http/server/rest_api/server_latency/restapi.change.QueryChanges, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_server_latency_restapi_change_QueryChanges summary
http_server_rest_api_server_latency_restapi_change_QueryChanges{quantile="0.5",} 0.020903737000000002
http_server_rest_api_server_latency_restapi_change_QueryChanges{quantile="0.75",} 0.177927737
http_server_rest_api_server_latency_restapi_change_QueryChanges{quantile="0.95",} 0.177927737
http_server_rest_api_server_latency_restapi_change_QueryChanges{quantile="0.98",} 0.177927737
http_server_rest_api_server_latency_restapi_change_QueryChanges{quantile="0.99",} 0.177927737
http_server_rest_api_server_latency_restapi_change_QueryChanges{quantile="0.999",} 0.177927737
http_server_rest_api_server_latency_restapi_change_QueryChanges_count 2.0
# HELP http_server_rest_api_server_latency_total Generated from Dropwizard metric import (metric=http/server/rest_api/server_latency_total, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_server_latency_total summary
http_server_rest_api_server_latency_total{quantile="0.5",} 0.0039004710000000004
http_server_rest_api_server_latency_total{quantile="0.75",} 0.020903737000000002
http_server_rest_api_server_latency_total{quantile="0.95",} 0.177927737
http_server_rest_api_server_latency_total{quantile="0.98",} 0.177927737
http_server_rest_api_server_latency_total{quantile="0.99",} 0.177927737
http_server_rest_api_server_latency_total{quantile="0.999",} 0.177927737
http_server_rest_api_server_latency_total_count 8.0
# HELP http_server_rest_api_ui_actions_latency_total Generated from Dropwizard metric import (metric=http/server/rest_api/ui_actions/latency_total, type=com.codahale.metrics.Timer)
# TYPE http_server_rest_api_ui_actions_latency_total summary
http_server_rest_api_ui_actions_latency_total{quantile="0.5",} 0.0
http_server_rest_api_ui_actions_latency_total{quantile="0.75",} 0.0
http_server_rest_api_ui_actions_latency_total{quantile="0.95",} 0.0
http_server_rest_api_ui_actions_latency_total{quantile="0.98",} 0.0
http_server_rest_api_ui_actions_latency_total{quantile="0.99",} 0.0
http_server_rest_api_ui_actions_latency_total{quantile="0.999",} 0.0
http_server_rest_api_ui_actions_latency_total_count 0.0
# HELP notedb_external_id_partial_read_latency Generated from Dropwizard metric import (metric=notedb/external_id_partial_read_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_external_id_partial_read_latency summary
notedb_external_id_partial_read_latency{quantile="0.5",} 0.0
notedb_external_id_partial_read_latency{quantile="0.75",} 0.0
notedb_external_id_partial_read_latency{quantile="0.95",} 0.0
notedb_external_id_partial_read_latency{quantile="0.98",} 0.0
notedb_external_id_partial_read_latency{quantile="0.99",} 0.0
notedb_external_id_partial_read_latency{quantile="0.999",} 0.0
notedb_external_id_partial_read_latency_count 0.0
# HELP notedb_parse_latency Generated from Dropwizard metric import (metric=notedb/parse_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_parse_latency summary
notedb_parse_latency{quantile="0.5",} 0.0
notedb_parse_latency{quantile="0.75",} 0.0
notedb_parse_latency{quantile="0.95",} 0.0
notedb_parse_latency{quantile="0.98",} 0.0
notedb_parse_latency{quantile="0.99",} 0.0
notedb_parse_latency{quantile="0.999",} 0.0
notedb_parse_latency_count 0.0
# HELP notedb_read_all_external_ids_latency Generated from Dropwizard metric import (metric=notedb/read_all_external_ids_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_read_all_external_ids_latency summary
notedb_read_all_external_ids_latency{quantile="0.5",} 0.012482495000000001
notedb_read_all_external_ids_latency{quantile="0.75",} 0.012482495000000001
notedb_read_all_external_ids_latency{quantile="0.95",} 0.012482495000000001
notedb_read_all_external_ids_latency{quantile="0.98",} 0.012482495000000001
notedb_read_all_external_ids_latency{quantile="0.99",} 0.012482495000000001
notedb_read_all_external_ids_latency{quantile="0.999",} 0.012482495000000001
notedb_read_all_external_ids_latency_count 1.0
# HELP notedb_read_latency Generated from Dropwizard metric import (metric=notedb/read_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_read_latency summary
notedb_read_latency{quantile="0.5",} 0.0
notedb_read_latency{quantile="0.75",} 0.0
notedb_read_latency{quantile="0.95",} 0.0
notedb_read_latency{quantile="0.98",} 0.0
notedb_read_latency{quantile="0.99",} 0.0
notedb_read_latency{quantile="0.999",} 0.0
notedb_read_latency_count 0.0
# HELP notedb_read_single_account_config_latency Generated from Dropwizard metric import (metric=notedb/read_single_account_config_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_read_single_account_config_latency summary
notedb_read_single_account_config_latency{quantile="0.5",} 0.0
notedb_read_single_account_config_latency{quantile="0.75",} 0.0
notedb_read_single_account_config_latency{quantile="0.95",} 0.0
notedb_read_single_account_config_latency{quantile="0.98",} 0.0
notedb_read_single_account_config_latency{quantile="0.99",} 0.0
notedb_read_single_account_config_latency{quantile="0.999",} 0.0
notedb_read_single_account_config_latency_count 0.0
# HELP notedb_read_single_external_id_latency Generated from Dropwizard metric import (metric=notedb/read_single_external_id_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_read_single_external_id_latency summary
notedb_read_single_external_id_latency{quantile="0.5",} 0.0
notedb_read_single_external_id_latency{quantile="0.75",} 0.0
notedb_read_single_external_id_latency{quantile="0.95",} 0.0
notedb_read_single_external_id_latency{quantile="0.98",} 0.0
notedb_read_single_external_id_latency{quantile="0.99",} 0.0
notedb_read_single_external_id_latency{quantile="0.999",} 0.0
notedb_read_single_external_id_latency_count 0.0
# HELP notedb_stage_update_latency Generated from Dropwizard metric import (metric=notedb/stage_update_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_stage_update_latency summary
notedb_stage_update_latency{quantile="0.5",} 0.0
notedb_stage_update_latency{quantile="0.75",} 0.0
notedb_stage_update_latency{quantile="0.95",} 0.0
notedb_stage_update_latency{quantile="0.98",} 0.0
notedb_stage_update_latency{quantile="0.99",} 0.0
notedb_stage_update_latency{quantile="0.999",} 0.0
notedb_stage_update_latency_count 0.0
# HELP notedb_update_latency Generated from Dropwizard metric import (metric=notedb/update_latency, type=com.codahale.metrics.Timer)
# TYPE notedb_update_latency summary
notedb_update_latency{quantile="0.5",} 0.0
notedb_update_latency{quantile="0.75",} 0.0
notedb_update_latency{quantile="0.95",} 0.0
notedb_update_latency{quantile="0.98",} 0.0
notedb_update_latency{quantile="0.99",} 0.0
notedb_update_latency{quantile="0.999",} 0.0
notedb_update_latency_count 0.0
# HELP permissions_permission_collection_filter_latency Generated from Dropwizard metric import (metric=permissions/permission_collection/filter_latency, type=com.codahale.metrics.Timer)
# TYPE permissions_permission_collection_filter_latency summary
permissions_permission_collection_filter_latency{quantile="0.5",} 0.0
permissions_permission_collection_filter_latency{quantile="0.75",} 0.0
permissions_permission_collection_filter_latency{quantile="0.95",} 0.0
permissions_permission_collection_filter_latency{quantile="0.98",} 0.0
permissions_permission_collection_filter_latency{quantile="0.99",} 0.0
permissions_permission_collection_filter_latency{quantile="0.999",} 0.0
permissions_permission_collection_filter_latency_count 0.0
# HELP plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_ Generated from Dropwizard metric import (metric=plugin/latency/codemirror-editor/com.google.gerrit.extensions.webui.JavaScriptPlugin/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_ summary
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.5",} 3.1769E-5
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.75",} 3.1769E-5
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.95",} 1.09431E-4
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.98",} 1.09431E-4
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.99",} 1.09431E-4
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.999",} 1.09431E-4
plugin_latency_codemirror_editor_com_google_gerrit_extensions_webui_JavaScriptPlugin__count 4.0
# HELP plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_ Generated from Dropwizard metric import (metric=plugin/latency/delete-project/com.google.gerrit.extensions.webui.JavaScriptPlugin/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_ summary
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.5",} 1.3954E-5
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.75",} 1.5673E-5
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.95",} 2.4818000000000002E-5
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.98",} 2.4818000000000002E-5
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.99",} 2.4818000000000002E-5
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.999",} 2.4818000000000002E-5
plugin_latency_delete_project_com_google_gerrit_extensions_webui_JavaScriptPlugin__count 4.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.BranchCommand/Branch, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch{quantile="0.5",} 7.374E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch{quantile="0.75",} 8.221E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch{quantile="0.95",} 2.3457000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch{quantile="0.98",} 2.3457000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch{quantile="0.99",} 2.3457000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch{quantile="0.999",} 2.3457000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_BranchCommand_Branch_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.CheckoutCommand/Checkout, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout{quantile="0.5",} 7.32E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout{quantile="0.75",} 7.81E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout{quantile="0.95",} 8.799E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout{quantile="0.98",} 8.799E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout{quantile="0.99",} 8.799E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout{quantile="0.999",} 8.799E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CheckoutCommand_Checkout_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.CherryPickCommand/Cherry Pick, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick{quantile="0.5",} 7.207000000000001E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick{quantile="0.75",} 7.909E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick{quantile="0.95",} 8.25E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick{quantile="0.98",} 8.25E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick{quantile="0.99",} 8.25E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick{quantile="0.999",} 8.25E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CherryPickCommand_Cherry_Pick_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.CloneCommand/Clone, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone{quantile="0.5",} 5.4952000000000005E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone{quantile="0.75",} 6.112500000000001E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone{quantile="0.95",} 9.33869E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone{quantile="0.98",} 9.33869E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone{quantile="0.99",} 9.33869E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone{quantile="0.999",} 9.33869E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneCommand_Clone_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.CloneWithCommitMsgHook/Clone with commit-msg hook, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook{quantile="0.5",} 9.805600000000001E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook{quantile="0.75",} 1.0805500000000001E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook{quantile="0.95",} 1.6883500000000002E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook{quantile="0.98",} 1.6883500000000002E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook{quantile="0.99",} 1.6883500000000002E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook{quantile="0.999",} 1.6883500000000002E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_CloneWithCommitMsgHook_Clone_with_commit_msg_hook_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.FormatPatchCommand/Format Patch, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch{quantile="0.5",} 6.9400000000000005E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch{quantile="0.75",} 7.875E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch{quantile="0.95",} 3.1216E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch{quantile="0.98",} 3.1216E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch{quantile="0.99",} 3.1216E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch{quantile="0.999",} 3.1216E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_FormatPatchCommand_Format_Patch_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.command.PullCommand/Pull, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull{quantile="0.5",} 7.477000000000001E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull{quantile="0.75",} 8.208E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull{quantile="0.95",} 3.457E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull{quantile="0.98",} 3.457E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull{quantile="0.99",} 3.457E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull{quantile="0.999",} 3.457E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_command_PullCommand_Pull_count 12.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.scheme.AnonymousHttpScheme/anonymous http, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http{quantile="0.5",} 7.361990000000001E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http{quantile="0.75",} 7.99419E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http{quantile="0.95",} 8.50783E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http{quantile="0.98",} 8.50783E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http{quantile="0.99",} 8.50783E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http{quantile="0.999",} 8.50783E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_AnonymousHttpScheme_anonymous_http_count 4.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.scheme.GitScheme/git, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git{quantile="0.5",} 8.611000000000001E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git{quantile="0.75",} 9.271E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git{quantile="0.95",} 9.32E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git{quantile="0.98",} 9.32E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git{quantile="0.99",} 9.32E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git{quantile="0.999",} 9.32E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_GitScheme_git_count 4.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.scheme.HttpScheme/http, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http{quantile="0.5",} 8.48991E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http{quantile="0.75",} 8.79372E-4
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http{quantile="0.95",} 0.00236958
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http{quantile="0.98",} 0.00236958
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http{quantile="0.99",} 0.00236958
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http{quantile="0.999",} 0.00236958
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_HttpScheme_http_count 4.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.scheme.RepoScheme/repo, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo{quantile="0.5",} 5.903E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo{quantile="0.75",} 6.705E-6
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo{quantile="0.95",} 2.3610000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo{quantile="0.98",} 2.3610000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo{quantile="0.99",} 2.3610000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo{quantile="0.999",} 2.3610000000000003E-5
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_RepoScheme_repo_count 4.0
# HELP plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh Generated from Dropwizard metric import (metric=plugin/latency/download-commands/com.googlesource.gerrit.plugins.download.scheme.SshScheme/ssh, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh summary
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh{quantile="0.5",} 0.001219777
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh{quantile="0.75",} 0.0012403240000000001
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh{quantile="0.95",} 0.0032013500000000004
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh{quantile="0.98",} 0.0032013500000000004
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh{quantile="0.99",} 0.0032013500000000004
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh{quantile="0.999",} 0.0032013500000000004
plugin_latency_download_commands_com_googlesource_gerrit_plugins_download_scheme_SshScheme_ssh_count 4.0
# HELP plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_ Generated from Dropwizard metric import (metric=plugin/latency/gerrit/com.google.gerrit.server.TraceRequestListener/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_ summary
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_{quantile="0.5",} 1.817E-5
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_{quantile="0.75",} 3.1498E-5
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_{quantile="0.95",} 9.611110000000001E-4
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_{quantile="0.98",} 9.611110000000001E-4
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_{quantile="0.99",} 9.611110000000001E-4
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener_{quantile="0.999",} 9.611110000000001E-4
plugin_latency_gerrit_com_google_gerrit_server_TraceRequestListener__count 8.0
# HELP plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_ Generated from Dropwizard metric import (metric=plugin/latency/gerrit/com.google.gerrit.server.account.InternalGroupBackend/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_ summary
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_{quantile="0.5",} 2.7023000000000002E-5
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_{quantile="0.75",} 4.1969000000000004E-5
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_{quantile="0.95",} 1.84796E-4
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_{quantile="0.98",} 1.84796E-4
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_{quantile="0.99",} 1.84796E-4
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend_{quantile="0.999",} 0.002682149
plugin_latency_gerrit_com_google_gerrit_server_account_InternalGroupBackend__count 42.0
# HELP plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_ Generated from Dropwizard metric import (metric=plugin/latency/gerrit/com.google.gerrit.server.account.UniversalGroupBackend$ConfigCheck/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_ summary
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_{quantile="0.5",} 5.55653E-4
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_{quantile="0.75",} 5.55653E-4
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_{quantile="0.95",} 5.55653E-4
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_{quantile="0.98",} 5.55653E-4
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_{quantile="0.99",} 5.55653E-4
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck_{quantile="0.999",} 5.55653E-4
plugin_latency_gerrit_com_google_gerrit_server_account_UniversalGroupBackend_ConfigCheck__count 1.0
# HELP plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_ Generated from Dropwizard metric import (metric=plugin/latency/gerrit/com.google.gerrit.server.group.SystemGroupBackend$NameCheck/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_ summary
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_{quantile="0.5",} 9.424800000000001E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_{quantile="0.75",} 9.424800000000001E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_{quantile="0.95",} 9.424800000000001E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_{quantile="0.98",} 9.424800000000001E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_{quantile="0.99",} 9.424800000000001E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck_{quantile="0.999",} 9.424800000000001E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_NameCheck__count 1.0
# HELP plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_ Generated from Dropwizard metric import (metric=plugin/latency/gerrit/com.google.gerrit.server.group.SystemGroupBackend/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_ summary
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_{quantile="0.5",} 9.177E-6
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_{quantile="0.75",} 1.6093E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_{quantile="0.95",} 3.8483000000000004E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_{quantile="0.98",} 4.2287000000000004E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_{quantile="0.99",} 4.2287000000000004E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend_{quantile="0.999",} 4.2287000000000004E-5
plugin_latency_gerrit_com_google_gerrit_server_group_SystemGroupBackend__count 42.0
# HELP plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_ Generated from Dropwizard metric import (metric=plugin/latency/gerrit/com.google.gerrit.server.plugins.JarPluginProvider/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_ summary
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_{quantile="0.5",} 9.584E-6
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_{quantile="0.75",} 1.1719E-5
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_{quantile="0.95",} 3.9849000000000004E-5
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_{quantile="0.98",} 4.3577E-5
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_{quantile="0.99",} 4.8018E-5
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider_{quantile="0.999",} 1.78399E-4
plugin_latency_gerrit_com_google_gerrit_server_plugins_JarPluginProvider__count 192.0
# HELP plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_ Generated from Dropwizard metric import (metric=plugin/latency/javamelody/com.googlesource.gerrit.plugins.javamelody.MonitoringTopMenu/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_ summary
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_{quantile="0.5",} 4.791E-6
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_{quantile="0.75",} 4.799E-6
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_{quantile="0.95",} 3.3054E-5
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_{quantile="0.98",} 3.3054E-5
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_{quantile="0.99",} 3.3054E-5
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu_{quantile="0.999",} 3.3054E-5
plugin_latency_javamelody_com_googlesource_gerrit_plugins_javamelody_MonitoringTopMenu__count 4.0
# HELP plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_ Generated from Dropwizard metric import (metric=plugin/latency/lfs/com.google.gerrit.extensions.webui.JavaScriptPlugin/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_ summary
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.5",} 1.1654E-5
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.75",} 1.8251000000000002E-5
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.95",} 1.8251000000000002E-5
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.98",} 1.8251000000000002E-5
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.99",} 1.8251000000000002E-5
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.999",} 1.8251000000000002E-5
plugin_latency_lfs_com_google_gerrit_extensions_webui_JavaScriptPlugin__count 4.0
# HELP plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_ Generated from Dropwizard metric import (metric=plugin/latency/reviewers/com.google.gerrit.extensions.webui.JavaScriptPlugin/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_ summary
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.5",} 1.1414000000000001E-5
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.75",} 1.6816E-5
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.95",} 1.6816E-5
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.98",} 1.6816E-5
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.99",} 1.6816E-5
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.999",} 1.6816E-5
plugin_latency_reviewers_com_google_gerrit_extensions_webui_JavaScriptPlugin__count 4.0
# HELP plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_ Generated from Dropwizard metric import (metric=plugin/latency/zuul/com.google.gerrit.extensions.webui.JavaScriptPlugin/, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_ summary
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.5",} 1.0709E-5
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.75",} 1.5E-5
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.95",} 1.6619E-5
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.98",} 1.6619E-5
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.99",} 1.6619E-5
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin_{quantile="0.999",} 1.6619E-5
plugin_latency_zuul_com_google_gerrit_extensions_webui_JavaScriptPlugin__count 4.0
# HELP plugin_latency_total Generated from Dropwizard metric import (metric=plugin/latency_total, type=com.codahale.metrics.Timer)
# TYPE plugin_latency_total summary
plugin_latency_total{quantile="0.5",} 1.0144000000000001E-5
plugin_latency_total{quantile="0.75",} 2.3269E-5
plugin_latency_total{quantile="0.95",} 1.1358000000000001E-4
plugin_latency_total{quantile="0.98",} 7.99419E-4
plugin_latency_total{quantile="0.99",} 9.33869E-4
plugin_latency_total{quantile="0.999",} 0.0032013500000000004
plugin_latency_total_count 414.0
# HELP plugins_delete_project_plugin_latency_total Generated from Dropwizard metric import (metric=plugins/delete-project/plugin/latency_total, type=com.codahale.metrics.Timer)
# TYPE plugins_delete_project_plugin_latency_total summary
plugins_delete_project_plugin_latency_total{quantile="0.5",} 0.0
plugins_delete_project_plugin_latency_total{quantile="0.75",} 0.0
plugins_delete_project_plugin_latency_total{quantile="0.95",} 0.0
plugins_delete_project_plugin_latency_total{quantile="0.98",} 0.0
plugins_delete_project_plugin_latency_total{quantile="0.99",} 0.0
plugins_delete_project_plugin_latency_total{quantile="0.999",} 0.0
plugins_delete_project_plugin_latency_total_count 0.0
# HELP query_query_latency_accounts Generated from Dropwizard metric import (metric=query/query_latency/accounts, type=com.codahale.metrics.Timer)
# TYPE query_query_latency_accounts summary
query_query_latency_accounts{quantile="0.5",} 0.0018104800000000002
query_query_latency_accounts{quantile="0.75",} 0.003915004000000001
query_query_latency_accounts{quantile="0.95",} 0.030027439000000003
query_query_latency_accounts{quantile="0.98",} 0.030027439000000003
query_query_latency_accounts{quantile="0.99",} 0.030027439000000003
query_query_latency_accounts{quantile="0.999",} 0.030027439000000003
query_query_latency_accounts_count 8.0
# HELP query_query_latency_changes Generated from Dropwizard metric import (metric=query/query_latency/changes, type=com.codahale.metrics.Timer)
# TYPE query_query_latency_changes summary
query_query_latency_changes{quantile="0.5",} 0.008931049
query_query_latency_changes{quantile="0.75",} 0.038997729
query_query_latency_changes{quantile="0.95",} 0.090150752
query_query_latency_changes{quantile="0.98",} 0.090150752
query_query_latency_changes{quantile="0.99",} 0.090150752
query_query_latency_changes{quantile="0.999",} 0.090150752
query_query_latency_changes_count 4.0
# HELP query_query_latency_total Generated from Dropwizard metric import (metric=query/query_latency_total, type=com.codahale.metrics.Timer)
# TYPE query_query_latency_total summary
query_query_latency_total{quantile="0.5",} 0.003915004000000001
query_query_latency_total{quantile="0.75",} 0.008931049
query_query_latency_total{quantile="0.95",} 0.090150752
query_query_latency_total{quantile="0.98",} 0.090150752
query_query_latency_total{quantile="0.99",} 0.090150752
query_query_latency_total{quantile="0.999",} 0.090150752
query_query_latency_total_count 12.0
# HELP sequence_next_id_latency_total Generated from Dropwizard metric import (metric=sequence/next_id_latency_total, type=com.codahale.metrics.Timer)
# TYPE sequence_next_id_latency_total summary
sequence_next_id_latency_total{quantile="0.5",} 0.0
sequence_next_id_latency_total{quantile="0.75",} 0.0
sequence_next_id_latency_total{quantile="0.95",} 0.0
sequence_next_id_latency_total{quantile="0.98",} 0.0
sequence_next_id_latency_total{quantile="0.99",} 0.0
sequence_next_id_latency_total{quantile="0.999",} 0.0
sequence_next_id_latency_total_count 0.0
# HELP events_total_total Generated from Dropwizard metric import (metric=events_total, type=com.codahale.metrics.Meter)
# TYPE events_total_total counter
events_total_total 0.0
# HELP git_upload_pack_request_count_total_total Generated from Dropwizard metric import (metric=git/upload-pack/request_count_total, type=com.codahale.metrics.Meter)
# TYPE git_upload_pack_request_count_total_total counter
git_upload_pack_request_count_total_total 0.0
# HELP http_server_error_count_404_total Generated from Dropwizard metric import (metric=http/server/error_count/404, type=com.codahale.metrics.Meter)
# TYPE http_server_error_count_404_total counter
http_server_error_count_404_total 1.0
# HELP http_server_error_count_total_total Generated from Dropwizard metric import (metric=http/server/error_count_total, type=com.codahale.metrics.Meter)
# TYPE http_server_error_count_total_total counter
http_server_error_count_total_total 1.0
# HELP http_server_rest_api_change_id_type_total_total Generated from Dropwizard metric import (metric=http/server/rest_api/change_id_type_total, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_change_id_type_total_total counter
http_server_rest_api_change_id_type_total_total 0.0
# HELP http_server_rest_api_count_restapi_account_GetCapabilities_total Generated from Dropwizard metric import (metric=http/server/rest_api/count/restapi.account.GetCapabilities, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_count_restapi_account_GetCapabilities_total counter
http_server_rest_api_count_restapi_account_GetCapabilities_total 2.0
# HELP http_server_rest_api_count_restapi_account_GetDetail_total Generated from Dropwizard metric import (metric=http/server/rest_api/count/restapi.account.GetDetail, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_count_restapi_account_GetDetail_total counter
http_server_rest_api_count_restapi_account_GetDetail_total 2.0
# HELP http_server_rest_api_count_restapi_account_GetStatus_total Generated from Dropwizard metric import (metric=http/server/rest_api/count/restapi.account.GetStatus, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_count_restapi_account_GetStatus_total counter
http_server_rest_api_count_restapi_account_GetStatus_total 2.0
# HELP http_server_rest_api_count_restapi_change_QueryChanges_total Generated from Dropwizard metric import (metric=http/server/rest_api/count/restapi.change.QueryChanges, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_count_restapi_change_QueryChanges_total counter
http_server_rest_api_count_restapi_change_QueryChanges_total 2.0
# HELP http_server_rest_api_count_total_total Generated from Dropwizard metric import (metric=http/server/rest_api/count_total, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_count_total_total counter
http_server_rest_api_count_total_total 8.0
# HELP http_server_rest_api_error_count_total_total Generated from Dropwizard metric import (metric=http/server/rest_api/error_count_total, type=com.codahale.metrics.Meter)
# TYPE http_server_rest_api_error_count_total_total counter
http_server_rest_api_error_count_total_total 0.0
# HELP http_server_success_count_200_total Generated from Dropwizard metric import (metric=http/server/success_count/200, type=com.codahale.metrics.Meter)
# TYPE http_server_success_count_200_total counter
http_server_success_count_200_total 21.0
# HELP http_server_success_count_204_total Generated from Dropwizard metric import (metric=http/server/success_count/204, type=com.codahale.metrics.Meter)
# TYPE http_server_success_count_204_total counter
http_server_success_count_204_total 2.0
# HELP http_server_success_count_304_total Generated from Dropwizard metric import (metric=http/server/success_count/304, type=com.codahale.metrics.Meter)
# TYPE http_server_success_count_304_total counter
http_server_success_count_304_total 2.0
# HELP http_server_success_count_total_total Generated from Dropwizard metric import (metric=http/server/success_count_total, type=com.codahale.metrics.Meter)
# TYPE http_server_success_count_total_total counter
http_server_success_count_total_total 25.0
# HELP license_cla_check_count_total Generated from Dropwizard metric import (metric=license/cla_check_count, type=com.codahale.metrics.Meter)
# TYPE license_cla_check_count_total counter
license_cla_check_count_total 0.0
# HELP notedb_external_id_cache_load_count_false_total Generated from Dropwizard metric import (metric=notedb/external_id_cache_load_count/false, type=com.codahale.metrics.Meter)
# TYPE notedb_external_id_cache_load_count_false_total counter
notedb_external_id_cache_load_count_false_total 1.0
# HELP notedb_external_id_cache_load_count_total_total Generated from Dropwizard metric import (metric=notedb/external_id_cache_load_count_total, type=com.codahale.metrics.Meter)
# TYPE notedb_external_id_cache_load_count_total_total counter
notedb_external_id_cache_load_count_total_total 1.0
# HELP plugins_healthcheck_activeworkers_failure_total Generated from Dropwizard metric import (metric=plugins/healthcheck/activeworkers/failure, type=com.codahale.metrics.Meter)
# TYPE plugins_healthcheck_activeworkers_failure_total counter
plugins_healthcheck_activeworkers_failure_total 0.0
# HELP plugins_healthcheck_auth_failure_total Generated from Dropwizard metric import (metric=plugins/healthcheck/auth/failure, type=com.codahale.metrics.Meter)
# TYPE plugins_healthcheck_auth_failure_total counter
plugins_healthcheck_auth_failure_total 0.0
# HELP plugins_healthcheck_deadlock_failure_total Generated from Dropwizard metric import (metric=plugins/healthcheck/deadlock/failure, type=com.codahale.metrics.Meter)
# TYPE plugins_healthcheck_deadlock_failure_total counter
plugins_healthcheck_deadlock_failure_total 0.0
# HELP plugins_healthcheck_jgit_failure_total Generated from Dropwizard metric import (metric=plugins/healthcheck/jgit/failure, type=com.codahale.metrics.Meter)
# TYPE plugins_healthcheck_jgit_failure_total counter
plugins_healthcheck_jgit_failure_total 0.0
# HELP plugins_healthcheck_projectslist_failure_total Generated from Dropwizard metric import (metric=plugins/healthcheck/projectslist/failure, type=com.codahale.metrics.Meter)
# TYPE plugins_healthcheck_projectslist_failure_total counter
plugins_healthcheck_projectslist_failure_total 0.0
# HELP plugins_healthcheck_querychanges_failure_total Generated from Dropwizard metric import (metric=plugins/healthcheck/querychanges/failure, type=com.codahale.metrics.Meter)
# TYPE plugins_healthcheck_querychanges_failure_total counter
plugins_healthcheck_querychanges_failure_total 0.0
# HELP sshd_sessions_authentication_failures_total Generated from Dropwizard metric import (metric=sshd/sessions/authentication_failures, type=com.codahale.metrics.Meter)
# TYPE sshd_sessions_authentication_failures_total counter
sshd_sessions_authentication_failures_total 0.0
# HELP sshd_sessions_created_total Generated from Dropwizard metric import (metric=sshd/sessions/created, type=com.codahale.metrics.Meter)
# TYPE sshd_sessions_created_total counter
sshd_sessions_created_total 0.0

That has pretty much everything we have been looking for a while.

Change 640215 had a related patch set uploaded (by Hashar; owner: Hashar):
[operations/puppet@production] prometheus: collect Gerrit internal metrics

https://gerrit.wikimedia.org/r/640215

Change 640177 merged by Hashar:
[operations/software/gerrit@deploy/wmf/stable-3.2] Add metrics-reporter-jmx plugin

https://gerrit.wikimedia.org/r/640177

Change 640174 merged by Hashar:
[operations/software/gerrit@deploy/wmf/stable-3.2] Add metrics-reporter-prometheus plugin

https://gerrit.wikimedia.org/r/640174

Mentioned in SAL (#wikimedia-operations) [2020-11-10T08:04:44Z] <hashar@deploy1001> Started deploy [gerrit/gerrit@5a41181]: jmx and prometheus metrics reporters - T184086

Mentioned in SAL (#wikimedia-operations) [2020-11-10T08:04:54Z] <hashar@deploy1001> Finished deploy [gerrit/gerrit@5a41181]: jmx and prometheus metrics reporters - T184086 (duration: 00m 10s)

Change 640215 merged by Filippo Giunchedi:
[operations/puppet@production] prometheus: collect Gerrit internal metrics

https://gerrit.wikimedia.org/r/640215

The patch is live, unfortunately due to how our Prometheus puppetization works it means we're scraping metrics from gerrit from all sites. Given that the number of metrics is not high (~2k ballpark) we're ok for now but we definitely need to tune the configuration so that only Prometheus hosts in eqiad scrape gerrit metrics

Change 641144 had a related patch set uploaded (by Filippo Giunchedi; owner: Filippo Giunchedi):
[operations/puppet@production] prometheus: limit gerrit polling to codfw/eqiad

https://gerrit.wikimedia.org/r/641144

The patch is live, unfortunately due to how our Prometheus puppetization works it means we're scraping metrics from gerrit from all sites. Given that the number of metrics is not high (~2k ballpark) we're ok for now but we definitely need to tune the configuration so that only Prometheus hosts in eqiad scrape gerrit metrics

Normally we'd scrape metrics from the internal hostnames (e.g. gerrit1001.wikimedia.org) not the service hostname (gerrit.wikimedia.org) and that sorts itself out with multi-site deployments. However gerrit is setup so that internal hostnames don't serve data, so the next best thing is to poll from eqiad and codfw all the time the same data. Not ideal but good enough because we're talking about a single host

Change 641144 merged by Filippo Giunchedi:
[operations/puppet@production] prometheus: limit gerrit polling to codfw/eqiad

https://gerrit.wikimedia.org/r/641144

From a discussion with Filippo, the metrics are exposed on the service hostname. That makes it a bit hard to configure the Prometheus collectors. We should instead have them exposed on the hostname, we can then have the Prometheus server to configure the Gerrit targets using Puppetdb. So https://gerrit1001.wikimedia.org and https://gerrit2001.wikimedia.org.

We currently have:

modules/profile/manifests/prometheus/ops.pp
lang=puppet
    $gerrit_targets = {
      'targets' => ['gerrit.wikimedia.org:443'],
      'labels'  => {'cluster' => 'misc', 'site' => 'eqiad'},
    }
    file {
        "${targets_path}/gerrit.yaml":
            content => ordered_yaml([$gerrit_targets]);
    }
'file_sd_configs' => [
    { 'files' => [ "${targets_path}/gerrit.yaml" ] }
],

Thus we should be able to grab the targets from Puppet using something such as:

prometheus::class_config{ "gerrit_${::site}":
    dest       => "${targets_path}/gerrit_${::site}.yaml",
    site       => $::site,
    class_name => 'profile::gerrit',
    port       => 9150,
    labels     => {}
}

And update file_sd_configs to refer to both files (gerrit_eqiad.yaml and gerrit_codfw.yaml).

On the Gerrit servers, Apache would have to be taught to listen on the hostname IP. Possibly with some restrictions to only allow the monitoring URLs.

Hint for later: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#file_sd_config

I kind of forgot about this task. It is still not complete since we need to collect metrics for the replica. Seems the way to go is to use the server hostname, however Gerrit exposes its interface to a service IP which might be problematic. No progress so far.