John Seekins
John Seekins
It really looks like https://github.com/influxdata/telegraf/pull/9875 would have solved my issue. I think in the case of Grafana, the problem was with `NaN`s in histograms. Too bad it was closed. The...
You can't. That is set by default. But you _can_ use "description".
If you look at the documentation, you see mentions of UTC time all over, but in particular: scheduler.enqueue_at(datetime(2020, 1, 1), func) # Date time should be in UTC So the...
> I am curious about this also. Is there any way to consume these metrics on the other end and provide a Prometheus endpoint that can be scraped? Providing a...
> Is there a workaround to this in Dashboards in the meantime? Is there some way I can inject track_total_hits into the query Dashboards is issuing? Accurate count results in...
@valyala I think you missed an edge case here: ``` Label names may contain ASCII letters, numbers, as well as underscores. They must match the regex [a-zA-Z_][a-zA-Z0-9_]*. Label names beginning...
I realize there's a few small things I should clarify: 1. For the use-case I'm imagining we'd want the client to be able to push directly to VictoriaMetrics (not a...
A couple of notes from trying @terabyte 's solution on Fedora 31... ``` for i in $(ps auxwwwfg | grep firefox | grep -v grep | awk '{print $2}'); do...
The missing steps within the script itself is commtting, pushing, and triggering the PR. That part is going to take some additional testing. But I wanted to get some eyes...
I've only used telegraf's statsd implementation (which I referenced above). This implementation explicitly allows maintaining counters so your second example (`now()` and `now()+1h`) works correctly. If this pattern is already...