A telemetry_metrics reporter that prints to the Logger https://hex.pm/packages/telemetry_metrics_logger
  • Elixir 98.1%
  • Earthly 1.9%
Find a file
2026-05-27 18:05:04 +00:00
.woodpecker Update docker.io/elixir Docker tag to v1.19 2025-10-22 22:43:01 +00:00
lib Fix warning about attaching anonymous function 2024-12-01 09:22:07 -07:00
test Apply mix.format to all source files 2021-09-24 11:12:52 +02:00
.formatter.exs Initial commit 2020-11-15 12:32:20 -07:00
.gitattributes Initial commit 2020-11-15 12:32:20 -07:00
.gitignore Initial commit 2020-11-15 12:32:20 -07:00
CHANGELOG.md Document missing 0.1.2 release 2025-05-24 12:02:37 -06:00
code_of_conduct.md Add CONTRIBUTING.md and code_of_conduct.md 2020-11-16 11:01:09 -07:00
CONTRIBUTING.md Add CONTRIBUTING.md and code_of_conduct.md 2020-11-16 11:01:09 -07:00
Earthfile Use Earthly for builds 2022-04-29 17:06:03 -06:00
LICENSE Add a LICENSE, and extra sections to the README 2020-11-15 12:49:33 -07:00
mix.exs Update dependency ex_doc to ~> 0.40 2026-01-22 03:12:59 +00:00
mix.lock Update dependency ex_doc to v0.40.2 2026-05-27 18:05:02 +00:00
README.md fix(docs): update CI badge [ci skip] 2026-05-27 11:34:36 -06:00
renovate.json Update renovate.json 2026-05-27 16:03:31 +00:00

TelemetryMetricsLogger

status-badge Hex.pm Version Hex.pm License hexdocs.pm

A telemetry_metrics reporter that prints to the Logger.

This is different from the built-in console reporter for two reasons:

  1. This reporter prints to the logger, instead of standard output
  2. This reporter calculates metrics and prints a periodic report, instead of printing every configured event immediately

Installation

This package can be installed by adding telemetry_metrics_logger to your list of dependencies in mix.exs:

def deps do
  [
    {:telemetry_metrics_logger, "~> 0.1"}
  ]
end

The docs can be found at https://hexdocs.pm/telemetry_metrics_logger.

Usage

For example, imagine the given metrics:

metrics = [
  last_value("vm.memory.binary", unit: :byte),
  counter("vm.memory.total"),
  summary("phoenix.endpoint.stop.duration", unit: {:native, :millisecond})
]

A this reporter can be started as a child of your supervision tree like this:

{TelemetryMetricsLogger, metrics: metrics, interval: 60}

Then, every sixty seconds, you will see a report like this:

12:31:54.492 [info]  Telemetry report 2020-11-09T17:48:00Z
  Event [:vm, :memory]
    Measurement "binary"
      Last value: 100 B
    Measurement "total"
      Counter: 1
  Event [:phoenix, :endpoint, :stop]
    Measurement "duration"
      Summary:
        Average: 101 ms
        Min: 52 ms
        Max: 127 ms

Maintainer

This project was developed by Rosa Richter. You can get in touch with her on Matrix.

Contributing

Questions and pull requests are more than welcome. I follow Elixir's tenet of bad documentation being a bug, so if anything is unclear, please file an issue! Ideally, my answer to your question will be in an update to the docs.

Please see CONTRIBUTING.md for all the details you could ever want about helping me with this project.

Note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

License

MIT License

Copyright 2025 Rosa Richter

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.