elixometer
elixometer copied to clipboard
A light Elixir wrapper around exometer.
Bumps [dialyxir](https://github.com/jeremyjh/dialyxir) from 1.1.0 to 1.2.0. Changelog Sourced from dialyxir's changelog. Unreleased changes post [1.2.0] [1.2.0] - 2022-07-20 Added "github" formatter. Commits 04f1bda Bump version d38e42f feat: Adds a github...
Seeing a genserver timeout via `ensure_registered`. What's weird is that genserver message (`{:subscribe,...}`) should only be called when the metric hasn't been registered before, but the metric should be registered...
What benefits do I get from using this over directly using exometer? What trade-offs were made (i.e. is there any downside to using this)?
We are planning to use elixometer to send metrics to datadog (with exometer_datadog). I know it's possible with some of datadog's libraries to set tags on metrics. For example, the...
A default formatter `Elixometer.Utils` is called instead of a configured one: https://github.com/pinterest/elixometer/blob/c4a886b52e405a52e749b799e2a27908d526ecf5/lib/elixometer.ex#L292 To fix, `Elixometer.Utils` should either expose the configured formatter, or implement `clear_counter/1`. Exposing formatter is preferable, because there...
If my understanding is right, only one reporter is supported in Elixometer at the moment, right? If so, is there anyway to support multiple ones?
When people (or mistake in the script) forget to put value for env, it will output the same value as if "prod" has been put in. It looks like it...
For every subscribe call it is calling application:gen_all_env..., though I suspect subscribe call is not that frequent. Would moving get_all_env to init phase and store in state be better? How...
Hi! I'm just wondering how I might access predefined exomter reports. I tried to add a `predefined` section to the config but that didn't work: ``` # Configure Elixometer Instrumentation...
Bumps [excoveralls](https://github.com/parroty/excoveralls) from 0.14.4 to 0.15.0. Release notes Sourced from excoveralls's releases. v0.15.0 Enhancements Allows flag_name to pass thru to the coveralls.io API (#290). Changes Allow subdir and rootdir to...