Counter rate from log entries

Hi,

I'm trying to cheaply get some numeric data out of our logs. There an event that we log every time it happens and I'd like to see the rate at which it happens. I've added a lens with a filter for that log message and a formula:

counter_rate(count())

counter_rate() is not designed for it, but it seems to works more or less. However on the chart I anyway see a cumulative value for every bucket, i.e. the bigger the bucket, the greater the value:

Screenshot 2023-03-21 101234

Is there still a way to get what I want by not employing full-blown metrics? I.e. to calculate the rate of log entries by a certain filter.

Just to see if I understand this, you want the number of times a specific log event happens over time? With that you could just use count(), instead of counter_rate()?

Or are you dependant on some numerical value from each event?

Hi @andreycha
As @Marius_Iversen said if you just want a rate of event it is just a count() but the under advanced you can set normalize to events/min or events / sec ...
Which is actually the rate.

So share some data and perhaps we can help

Yes, exactly.

Bingo! Thanks a lot, @stephenb and @Marius_Iversen !

One more question though: how can I see "max" rate for every bucket? As far as I understand, normalize just calculates the rate based on the count of the events and bucket size. So there is still a problem, that I see some value for a bucket:

but when I zoom in, I see even bigger values:

I'd like to always see values as if bucket size is always 1 second.

@andreycha You can either use the "max" function in Lens, or if you are using formulas, just add max(count())) around it.

There should not be any big normalization happening unless you apply that normalization yourself.

Thank for the answer, Marius. Unfortunately, I only have these four functions available. As far as I understand, all the other functions including max() require a field name as argument.
image

So formula editor also gives an error on max(count()). (I'm using Kibana 7.17 if that's important.)
image

I rather need something like max(rate) where rate is calculated for every second rather than for current bucket size.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.