https://github.com/23skidoo/vmstats_telemetry_metrics
vmstats sink that produces telemetry events (WIP, do not use)
https://github.com/23skidoo/vmstats_telemetry_metrics
elixir metrics telemetry vmstats wip-do-not-use
Last synced: 11 months ago
JSON representation
vmstats sink that produces telemetry events (WIP, do not use)
- Host: GitHub
- URL: https://github.com/23skidoo/vmstats_telemetry_metrics
- Owner: 23Skidoo
- License: bsd-3-clause
- Created: 2024-06-10T21:11:53.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T22:39:14.000Z (about 2 years ago)
- Last Synced: 2025-03-04T12:34:30.375Z (over 1 year ago)
- Topics: elixir, metrics, telemetry, vmstats, wip-do-not-use
- Language: Elixir
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# VmstatsTelemetryMetrics
A `vmstats` sink that generates `telemetry` events, to be used in conjunction
with `telemetry_metrics`.
## Description
[`vmstats`](https://github.com/ferd/vmstats/) is a tiny Erlang app that gathers
metrics on the Erlang VM and sends them to a configurable sink.
This library implements a `vmstats` sink that generates `telemetry` events.
There are also metrics definitions for
[`telemetry_metrics`](https://hexdocs.pm/telemetry_metrics/) and an [event
registry](https://hexdocs.pm/telemetry_registry/).
This library is supposed to be used in conjunction with a `telemetry_metrics`
reporter such as
[`telemetry_metrics_statsd`](https://hexdocs.pm/telemetry_metrics_statsd/) for
pushing the metrics to e.g. [Datadog](http://datadoghq.com).
## Installation
The package is [available in Hex](https://hex.pm/docs/publish). Add
`vmstats_telemetry_metrics` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:vmstats_telemetry_metrics, "~> 0.1.0"}
]
end
```
Docs can be found at .
## Usage
TODO