-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose local metrics to the batch processor (#11582)
* expose request/response counters to local exporter * add changelog entry * add PR number * add local collection doc
- Loading branch information
Showing
4 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[[monitoring-local-collection]] | ||
= Use the select metrics emitted directly to your monitoring cluster | ||
++++ | ||
<titleabbrev>Use local collection</titleabbrev> | ||
++++ | ||
|
||
In 8.10 and later, we emit a selected set of metrics directly to the monitoring | ||
cluster. | ||
The benefit of using local collection instead of internal collection is that | ||
the metrics are sent directly to your main monitoring index, making it easier | ||
to view shared data. | ||
|
||
[[select-metrics]] | ||
== The select metrics | ||
|
||
We only ship a select list of metrics, to avoid overwhelming your monitoring cluster. | ||
If you need the entire set of metrics and traces we can expose, you should use | ||
<<configuration-instrumentation,Self Instrumentation>> instead of local | ||
collection. | ||
|
||
Here is the list of every metrics we currently expose: | ||
|
||
* http.server.request.count | ||
* http.server.response.valid.count | ||
* http.server.response.errors.count | ||
* http.server.errors.timeout | ||
* http.server.errors.ratelimit | ||
* grpc.server.request.count | ||
* grpc.server.response.valid.count | ||
* grpc.server.response.errors.count | ||
* grpc.server.errors.timeout | ||
* grpc.server.errors.ratelimit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters