Hi,
Here is my query, It works fine for one day , but if i change the custom time like last one month data , then it is not showing last one month data, instead it show cumulative of intergers
i'm trying to get peak connections (connection/sec) for last one month.
Could any one please help me in this.
Stats comes for every 10 mins, so i divided/600 in order convert to seconds
index="rrs_interval_summary" HOST=*shsrrs* | stats max(RRShttpConnections) as RRS_HTTP_CONNECTIONS by HOST |eval peak=RRS_HTTP_CONNECTIONS/600 |stats sum(peak) as peak
... View more