Fix the list of common handler metrics.

This commit is contained in:
Andrzej Bialecki 2019-11-27 15:59:53 +01:00
parent 9d374b69a3
commit 47a908a0b9
1 changed files with 4 additions and 4 deletions

View File

@ -61,11 +61,9 @@ To get request times, specifically, you can send an API request such as:
|p95_ms |Request processing time in milliseconds for the request which belongs to the 95^th^ Percentile. E.g., if 100 requests are received, then the 95^th^ fastest request time will be reported in this statistic.
|p999_ms |Request processing time in milliseconds for the request which belongs to the 99.9^th^ Percentile. E.g., if 1000 requests are received, then the 999^th^ fastest request time will be reported in this statistic.
|p99_ms |Request processing time in milliseconds for the request which belongs to the 99^th^ Percentile. E.g., if 100 requests are received, then the 99^th^ fastest request time will be reported in this statistic.
|count |Total number of requests made since the Solr process was started.
|count |Total number of requests made since the Solr core was first created.
|median_ms |Median of all the request processing time.
|avgRequestsPerSecond |Average number of requests received per second.
|avgTimePerRequest |Average time taken for processing the requests. This parameter will decay over time, with a bias toward activity in the last 5 minutes.
|meanRate |Average number of requests received per second since the Solr core was first created.
|===
*Errors and Other Times*
@ -84,6 +82,8 @@ The table below shows the metric names and attributes to request:
`UPDATE./update.errors` |Number of errors encountered by handler. In addition to a count of errors, mean, 1 minute, 5 minute, and 15 minute rates are also available.
|`QUERY./select.clientErrors`
`UPDATE./update.clientErrors` |Number of syntax or parse errors made by a client while making requests. In addition to a count of errors, mean, 1 minute, 5 minute, and 15 minute rates are also available.
|`QUERY./select.requests`
`UPDATE./update.requests` |Number of requests received by this handler.
|`QUERY./select.serverErrors`
`UPDATE./update.serverErrors` |Number of errors thrown by the server while executing the request. In addition to a count of errors, mean, 1 minute, 5 minute, and 15 minute rates are also available.
|`QUERY./select.timeouts`