Improve Jetty thread pool metrics

Follow-up change for be4184f7 which missed documentation. Also names of
newly added metrics didn't align with existing metrics for REST API.

- add documentation for the jetty metrics
- improve descriptions of the jetty metrics
- rename jetty thread pool metrics from httpd/jetty/* to
  http/server/jetty/* in order to align metric names with already
  existing REST API metrics

Change-Id: I1d4eabec91749f28d09df7d2d29606b133fefc4d
This commit is contained in:
Matthias Sohn
2020-01-31 10:37:47 +01:00
parent 720d0af16d
commit ae4a73b87c
2 changed files with 19 additions and 12 deletions

View File

@@ -56,6 +56,13 @@ objects needing finalization.
=== HTTP
* `http/server/jetty/threadpool/min_pool_size`: Minimum thread pool size
* `http/server/jetty/threadpool/max_pool_size`: Maximum thread pool size
* `http/server/jetty/threadpool/pool_size`: Current thread pool size
* `http/server/jetty/threadpool/idle_threads`: Idle threads
* `http/server/jetty/threadpool/active_threads`: Active threads
* `http/server/jetty/threadpool/reserved_threads`: Reserved threads
* `http/server/jetty/threadpool/queue_size`: Queued requests waiting for a thread
* `http/server/error_count`: Rate of REST API error responses.
* `http/server/success_count`: Rate of REST API success responses.
* `http/server/rest_api/count`: Rate of REST API calls by view.