Hi,
Thanks for quick response. I have tried both the options below:
Option-1
| eval status=case(like(status, "2%"),"200|201",like(status, "5%"),"503")|timechart span=1d@d usenull=false useother=f count(status) by status|eval status=round(status/1000000,2)."M"
Option-2
| eval status = if(match(status, "20/[0-1]/"), "success(200 and 201)",status)| eval status=case(like(status, "2%"),"200|201",like(status, "5%"),"503")|timechart span=1d@d usenull=false useother=f count(status) by status|eval count=round(count/1000000,2)."M"
But in my graph I dont see any difference. I still see large number instead of shorten number with M appended.
Below is the output
This is the output which still shows large number.
... View more