Ulf Wiger
Ulf Wiger
So shouldn't also `Liine2` be made into an Anno?
Rebase and reissue for review
Have you looked at [exometer_report_snmp](https://github.com/Feuerlabs/exometer/blob/master/doc/README.md#exometer_report_snmp)? Regarding metric values, exometer is a bit ambivalent. Basically, metric values can be of any type, but some metric types, e.g. histograms, require inputs to...
There is something that is not yet documented. If you specify the option `{update_event, true}` (either via `exometer:new/3` or `exometer:setopts/2`), exometer will send a message to a process registered as...
I thought a bit about that, but am not sure I've arrived at a great solution. I considered adding an option, `{snmp_syntax, binary()}` when creating the metric. This could then...
Passing tags in the update operation would be difficult. However, it would be possible to add tags as part of `Extra` for a given subscription entry, and extend the `exometer_report_statsd`...
Ack. The `retry_failed_metrics` value really shouldn't have been part of the key in the first place. Since it is, I guess the unsubscribe_() function will need to use ets:select() with...
The way exometer works, you typically define a reporter which subscribes to metrics and at regular (configurable) intervals pushes data to some data store, log or analytics backend. What this...
Ok, just to check: your `snapshot_count()` function searches for metrics with the pattern `[tick, '_', '_', '_']`, but you previously said that your updates look like `exometer:update_or_create([tick, StockName], 1, counter,...
Well, my example simply wrote the metric and values to an ets table, using an increasing timestamp to separate consecutive updates. But the `tick_reporter` used the same callback (`exometer_report_bulk`) as...