-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Google-managed prometheus ingestion for metrics #259
Comments
For now, we don't plan to support this in individual language SDK exporters. There are a few other options you could try:
Would either of these work for your use case? |
It would be more efficient to integrate directly. Do you know if there is a documentation for this protocol/format? |
Are you using GKE or GCE? It would be good to know some more details of your use case and what you mean by "efficient" here.
We don't publicly document the format and it could be subject to change. I don't think we would want to take on maintenance of such an exporter right now, but I'll leave this open as a feature request. |
One use-case for wanting direct integration of exporter is when running as a Cloud Function. In that case, having to deploy an Otel Collector somewhere just in order to receive the OTLP metrics and then use the Collector to translate to It would probably be better if Google Monitoring just had a direct OTLP endpoint, rather than providing |
@evantorrie The example showcase exporting metrics from a Google Cloud Run Function (formerly known as Cloud Function) to Google Managed Prometheus using an OTel Collector. Granted it still uses an OpenTelemetry Collector, but it leverages Cloud Run's multi-container support, so you don't need to manage a separate persistent server (GCE instance or something similar) constantly running that hosts a collector. |
Hello
Java applications need to be able to export metrics using manage prometheus interface:
https://cloud.google.com/stackdriver/docs/managed-prometheus
Similar solution is done for Go (and used in otel-collector)
https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/tree/main/exporter/collector/googlemanagedprometheus
The text was updated successfully, but these errors were encountered: