UNPKG

@google-cloud/opentelemetry-cloud-monitoring-exporter

Version:

OpenTelemetry Google Cloud Monitoring Exporter allows the user to send collected metrics to Google Cloud Monitoring.

50 lines (34 loc) 2.28 kB
# OpenTelemetry Google Cloud Monitoring Exporter [![NPM Published Version][npm-img]][npm-url] [![Apache License][license-image]][license-image] OpenTelemetry Google Cloud Monitoring Exporter allows the user to send collected metrics to Google Cloud Monitoring. [Cloud Monitoring](https://cloud.google.com/monitoring) provides visibility into the performance, uptime, and overall health of cloud-powered applications. It collects metrics, events, and metadata from Google Cloud, Amazon Web Services, hosted uptime probes, application instrumentation, and a variety of common application components including Cassandra, Nginx, Apache Web Server, Elasticsearch, and many others. Operations ingests that data and generates insights via dashboards, charts, and alerts. Cloud Monitoring alerting helps you collaborate by integrating with Slack, PagerDuty, and more. ## Installation ```bash npm install --save @opentelemetry/metrics npm install --save @google-cloud/opentelemetry-cloud-monitoring-exporter ``` ## Usage ```js const { MeterProvider } = require('@opentelemetry/metrics'); const { MetricExporter } = require('@google-cloud/opentelemetry-cloud-monitoring-exporter'); const exporter = new MetricExporter(); // Register the exporter const meter = new MeterProvider({ exporter, interval: 60000, }).getMeter('example-meter'); // Now, start recording data const counter = meter.createCounter('metric_name'); counter.add(10, { [key]: 'value' }); ``` ## Viewing your metrics: With the above you should now be able to navigate to the Google Cloud Monitoring UI at: <https://console.cloud.google.com/monitoring> ## Useful links - For more information on OpenTelemetry, visit: <https://opentelemetry.io/> - For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js> - Learn more about Google Cloud Monitoring at https://cloud.google.com/monitoring [license-url]: https://github.com/GoogleCloudPlatform/opentelemetry-operations-js/blob/master/LICENSE [npm-url]: https://www.npmjs.com/package/@google-cloud/opentelemetry-cloud-monitoring-exporter [npm-img]: https://badge.fury.io/js/%40google-cloud%2Fopentelemetry-cloud-monitoring-exporter.svg [license-image]: https://img.shields.io/badge/license-Apache_2.0-green.svg?style=flat