changed: The following functions are now async (return a promise):
registry.metrics()registry.getMetricsAsJSON()registry.getMetricsAsArray()registry.getSingleMetricAsString()
If your metrics server has a line like res.send(register.metrics()), you
should change it to res.send(await register.metrics()).
Additionally, all metric types now accept an optional collect function,
which is called when the metric's value should be collected and within which
you should set the metric's value. You should provide a collect function for
point-in-time metrics (e.g. current memory usage, as opposed to HTTP request
durations that are continuously logged in a histogram).
changed: register.clusterMetrics() no longer accepts a callback; it only
returns a promise.
removed: v12.0.0 added the undocumented functions registry.registerCollector
and registry.collectors(). These have been removed. If you were using them,
you should instead provide a collect function as described above.
Changed
fix: provide nodejs_version_info metric value after calling registry.resetMetrics() (#238)
fix: provide process_max_fds metric value after calling registry.resetMetrics()
fix: provide process_start_time_seconds metric value after calling registry.resetMetrics()
chore: improve performance of registry.getMetricAsPrometheusString
chore: refactor metrics to reduce code duplication
chore: replace utils.getPropertiesFromObj with Object.values
chore: remove unused catch bindings
chore: upgrade Prettier to 2.x
fix: startTimer returns number in typescript instead of void
fix: incorrect typings of `registry.getSingleMetric' (#388)
chore: stop testing node v13 on CI
Added
feat: exposed registry.registerCollector() and registry.collectors() methods in TypeScript declaration
Added: complete working example of a pushgateway push in example/pushgateway.js
feat: added support for adding labels to default metrics (#374)
changed: The following functions are now async (return a promise):
registry.metrics()registry.getMetricsAsJSON()registry.getMetricsAsArray()registry.getSingleMetricAsString()
If your metrics server has a line like res.send(register.metrics()), you
should change it to res.send(await register.metrics()).
Additionally, all metric types now accept an optional collect function,
which is called when the metric's value should be collected and within which
you should set the metric's value. You should provide a collect function for
point-in-time metrics (e.g. current memory usage, as opposed to HTTP request
durations that are continuously logged in a histogram).
changed: register.clusterMetrics() no longer accepts a callback; it only
returns a promise.
removed: v12.0.0 added the undocumented functions registry.registerCollector
and registry.collectors(). These have been removed. If you were using them,
you should instead provide a collect function as described above.
Changed
fix: provide nodejs_version_info metric value after calling registry.resetMetrics() (#238)
fix: provide process_max_fds metric value after calling registry.resetMetrics()
fix: provide process_start_time_seconds metric value after calling registry.resetMetrics()
chore: improve performance of registry.getMetricAsPrometheusString
chore: refactor metrics to reduce code duplication
chore: replace utils.getPropertiesFromObj with Object.values
chore: remove unused catch bindings
chore: upgrade Prettier to 2.x
fix: startTimer returns number in typescript instead of void
fix: incorrect typings of `registry.getSingleMetric' (#388)
chore: stop testing node v13 on CI
Added
feat: exposed registry.registerCollector() and registry.collectors() methods in TypeScript declaration
Added: complete working example of a pushgateway push in example/pushgateway.js
feat: added support for adding labels to default metrics (#374)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Bumps prom-client from 12.0.0 to 13.0.0.
Release notes
Sourced from prom-client's releases.
Changelog
Sourced from prom-client's changelog.
Commits
2c9ae0e
13.0.0fecd75e
feat: added support for adding labels to default metrics (#374)8d69d1f
chore: remove appveyor CI (#395)815a51a
Removed appveyor badge68ec87a
chore: remove travis badge from readme (#360)48ed6c8
a complete working example of a pushgateway push (#377)74f182e
chore: remove travis CI config (#394)bed0e1d
chore: update eslint and typescript to latest (#393)5649396
bug: fix regression in 4e6aacd (#384)25f9c40
fix(types):Registry.getSingleMetric
may returnundefined
(#388)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)