-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Closed
Labels
Description
I have some Logstash events with 2 fields:
- a field indicating a success or error
- a field indicating the Autonomous System number of the event origin
I can currently/easily draw on the same histogram the counts of error event for, say, 5 selected AS.
Unfortunately it has a semantic drawback: if an AS is overly represented, it will probably also have more error events, even if that AS is no more faulty than another in percentage.
So I'd like to draw, on the same histogram, for, the same 5 AS, the percentage of errors by doing, for each bucket, count(errors(AS#n)) * 100 / (count(errors(AS#n)) + count(success(AS#n))).
Would it be doable with Kibana? Should I do some filtering in Logstash? Or should I forward some metrics to Graphite/statsd and continue from there?