go-grpc-prometheus icon indicating copy to clipboard operation
go-grpc-prometheus copied to clipboard

Prometheus monitoring for your gRPC Go servers.

Results 33 go-grpc-prometheus issues
Sort by recently updated
recently updated
newest added

https://github.com/grpc-ecosystem/go-grpc-prometheus/blob/c225b8c3b01faf2899099b768856a9e916e5087b/client_metrics.go#L111 SentMessage and ReceivedMessage is use to StreamClientInterceptor?

It's useful to monitor the current number of connected clients. This can be used to check against resource exhaustion or leaks, like go rotines, or open FDs.

I would like to exclude all metrics from `grpc.health.v1.Health` from list of metrics that are collection from my grpc server. I looked for it code but couldn't figure out how...

After poking around with ServerMetrics type I was unable to modify the behavior of`NewServerMetrics()` function under server_metrics.go. Can someone help me understand how can one add `Namespace/Subsystem` `CounterOpts` to e.g....

I needed to change the namespace so I checked here first and found https://github.com/grpc-ecosystem/go-grpc-prometheus/issues/29. It took a few minutes to figure out because all the metrics are private on *Server...

I've uploaded a grafana dashboard template for go-grpc-prometheus: https://grafana.com/dashboards/9186 . And I'd like to receive some advice from others :)

This is great, but my client is C++, do we have equivalent C++ library as well?

There are thousands of grpc methods in my app, which makes the single metric size is larger than 16MB. I would like to customize the metrics (e.g. remove `grpc_method` label)...

I'm the author of [promgrpc](https://github.com/piotrkowalczuk/promgrpc) (that, in fact, is using a lot of code from this repository). In reply to https://github.com/grpc-ecosystem/go-grpc-prometheus/issues/37#issuecomment-429737667 I would like to know if you are open...

I've POC'd adding summary metrics in a similar way as histograms. It's enabled via a similar method `EnableHandlingTimeSummary()`. Is there interest in me submitting a PR? Motivation: Our monitoring situation...