You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, this is a snapshot of my view, it basically counts the number of log messages per unit of time, splitting the bars between INFO and ERROR messages. These logs refer to incoming API calls.
All nice and dandy, but then one of our partners automated jobs started, and we got inundated by requests:
See the problem? No?! I didn't either for a little while!
Kibana actually switched the colour-keys and the relative position of the bar segments (see the legend on the right) so the second graph does not read "ok, an automated job is running" but rather "OMG! Nothing is working as it should, alarm!!".
What is happening is that Kibana4 uses the colour green for the bucket with the most objects in it, and places this segment of the bar at the bottom. In our case the balance between INFO and ERROR tipped with the broken import.
I classify this as an anti-feature as it defeats the purpose of having an intuitive, visual data representation, but I don't have a killer solution to it. The best I could come up with is:
Allow to optionally "lock down" colours (so, kibana will keep track of what colours have been used for what values and never recycle a colour for a new value, unless the colour cache is manually flushed
Allow to optionally "lock down" order. This is same principle as above, but with "position in the bar" rather than colours (so, in my case, INFO would always be the bar segment on the bottom, with ERROR on top of it, regardless of maybe having 200 INFO below 20.000 ERROR.
The two could be possibly combined. As I said, none of the two is ideal: I'd be more than happy if somebody would come up with a better suggestion.
The text was updated successfully, but these errors were encountered:
So, this is a snapshot of my view, it basically counts the number of log messages per unit of time, splitting the bars between
INFO
andERROR
messages. These logs refer to incoming API calls.All nice and dandy, but then one of our partners automated jobs started, and we got inundated by requests:
See the problem? No?! I didn't either for a little while!
Kibana actually switched the colour-keys and the relative position of the bar segments (see the legend on the right) so the second graph does not read "ok, an automated job is running" but rather "OMG! Nothing is working as it should, alarm!!".
What is happening is that Kibana4 uses the colour green for the bucket with the most objects in it, and places this segment of the bar at the bottom. In our case the balance between
INFO
andERROR
tipped with the broken import.I classify this as an anti-feature as it defeats the purpose of having an intuitive, visual data representation, but I don't have a killer solution to it. The best I could come up with is:
INFO
would always be the bar segment on the bottom, withERROR
on top of it, regardless of maybe having 200INFO
below 20.000ERROR
.The two could be possibly combined. As I said, none of the two is ideal: I'd be more than happy if somebody would come up with a better suggestion.
The text was updated successfully, but these errors were encountered: