TimeLion Shows Data When Shouldn't

I am trying to graph total hits to a website with two lines, one for current time and another offset by 24 hours.

.es(index='cloudflare-*',metric='count:ClientIP').label('Current'), .es(offset='-1d',index='cloudflare-*',metric='count:ClientIP').label('Previous Hour')

The data that's ingested is 45 minutes behind so if it's 12:00, the line for the current time period should be zero after 11:15. However, below is what I get. The graph on top is a standard kibana visualization tracking Unique Count of ClientIP.keyword and is displaying data as expected.

Resolved the issue by specifying the timefield I am using as the timestamp field, which is not the default @timestamp field.

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