Socket
Socket
Sign inDemoInstall

yandex-cloud-monitoring-metrics

Package Overview
Dependencies
84
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    yandex-cloud-monitoring-metrics

A library for sending metrics to yandex cloud monitoring


Version published
Weekly downloads
127
increased by71.62%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

yandex-cloud-monitoring-metrics

A library for sending metrics to yandex cloud monitoring.

API doc https://cloud.yandex.com/en/docs/monitoring/operations/metric/add.

Supported metric types

  1. DGAUGE: shows the metric value at a certain point in time. For example, the amount of used RAM.
  2. GAUGE: shows the metric value at a certain point in time.
  3. COUNTER: shows the metric value that increases over time. For example, the number of days of service continuous running.
  4. RATE: shows the change in the metric value over time. For example, the number of requests per second.

Getting started

  1. Get the ID of the folder for which you are granted the monitoring.editor role or a higher role (https://cloud.yandex.com/en/docs/resource-manager/operations/folder/get-id)
  2. Create a service account https://cloud.yandex.com/en-ru/docs/iam/concepts/users/service-accounts with monitoring.writer permission
  3. Store the service account ID, access key ID and private key

Install

npm install yandex-cloud-monitoring-metrics

Usage

const metricsLogger = new YandexCloudMonitoringMetricsLogger(
  process.env.SERVICE_ACCOUNT_ID,
  process.env.ACCESS_KEY_ID,
  process.env.PRIVATE_KEY,
  process.env.FOLDER_ID
);

const metrics: IYandexMetricRequest = {
  metrics: [
    {
      name: 'performance.metric',
      type: YandexMetricType.GAUGE,
      value: 150,
      labels: {
        env: 'production',
        tag1: 'value1',
      },
    },
  ],
};

const { writtenMetricsCount, error } = await metricsLogger.writeMetrics(
  metrics
);

Keywords

FAQs

Last updated on 05 Jul 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc