1.1.3-20220204130209.commit-b430b6b • Published 4 years ago

@well-known-components/metrics v1.1.3-20220204130209.commit-b430b6b

Weekly downloads
21
License
Apache-2.0
Repository
github
Last release
4 years ago

metrics

npm i @well-known-components/metrics

Configuration via config component

Here is a list of configuration keys that may be used by this component:

  • WKC_METRICS_PUBLIC_PATH: string path to expose metrics, default: /metrics
  • WKC_METRICS_BEARER_TOKEN: string bearer token to protect metrics, default: not set
  • WKC_METRICS_COLLECT_DEFAULT: "true" | "false" collect default nodejs metrics, default: true

Define your metrics in a static file

// src/metrics.ts

import { IMetricsComponent } from "@well-known-components/interfaces"
import { validateMetricsDeclaration } from "@well-known-components/metrics"

export const metricDeclarations = {
  // IMetricsComponent.SummaryType
  // IMetricsComponent.HistogramType
  // IMetricsComponent.GaugeType
  // IMetricsComponent.CounterType
  user_counter: {
    type: IMetricsComponent.CounterType,
    help: "Count calls to /user/:userId",
    labelNames: ["userId"],
  },
}

// type assertions
validateMetricsDeclaration(metricDeclarations)

Define the component

// src/components.ts

import { metricDeclarations } from "./metrics"

export async function initComponents(): Promise<AppComponents> {
  ...
  // const config
  // const server
  const metrics = await createMetricsComponent(metricDeclarations, { server, config })

  return { ...components, metrics }
}

Register metrics

export async function userIdHandler(context: { components: Pick<AppComponents, "metrics"> }) {
  const {
    components: { metrics },
  } = context

  metrics.increment("user_counter", { userId: Math.random() })
  // metrics.decrement("user_counter", { userId: Math.random() })
  // metrics.observe("user_counter", { userId: Math.random() }, 1)
  // metrics.reset("user_counter")

  return {}
}
2.1.0

2 years ago

2.0.1

3 years ago

2.0.0

4 years ago

1.1.3

4 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago