Skip to main content

Hi, I think the line graph is having a problem when I use a single match, specifically with the date. The line graph shows a value of zero, even though when you switch it to table chart it has accurate values for each date. So, ending the line graph is zero only which it is not good. Is there any way to fix this? Thank you

when the date is in match only it’s not getting the accurate values of line graph. 
example query:

$Date = timestamp.get_date($event.timestamp) example only 

match:$Date 

outcome:

$COunt = count($event.metadata.id)

Can you share the full query? Seems to be working for me. Example:


metadata.id = $event
timestamp.get_timestamp(metadata.event_timestamp.seconds) = $date

match:
$date

outcome:
$count = count($event)


Reply