Google Cloud Monitoring exporter example
This example shows how to use go.opentelemetry.io/otel
to instrument a simple Go application with metrics and export the metrics to Google Cloud Monitoring
Build and run the application
Go to the example/metric/README.md instructions that describe how to build and run all examples.
Sample execution
$ ./metrics
2020/06/11 21:11:15 Most recent data: counter 110, observer 13.45
2020/06/11 21:11:15 Most recent data: counter 160, observer 16.02
2020/06/11 21:11:15 Most recent data: counter 134, observer 14.33
2020/06/11 21:11:15 Most recent data: counter 125, observer 15.12
...
Create dashboard
When filling in the Find resource type and metric box, use the metric names "custom.googleapis.com/opentelemetry/counter-a" and "custom.googleapis.com/opentelemetry/observer-a".
If you already know how to use Cloud Monitoring and would just like to confirm the data is properly received, you can run the dashboard creation script bundled in this directory. This command requires at least the roles/monitoring.dashboardEditor permissions to create a new dashboard.
$ ./create_dashboard.sh
This script creates a dashboard titled "OpenTelemetry exporter example/metric".
You should be able to view line charts like below once you create the dashboard.
Note: This script is configured to create dashboard which displays the metrics generated via the sdk
example.