I have to show Amount on barchart. I am not able to show it. pls help us index = pcf_logs cf_org_name = creorg OR cf_org_name = SvcITDnFAppsOrg cf_app_name=VerifyReviewConsumerService host="*" | eval _raw = msg | rex "InputAmountToCredit\"\:\"(?<PayloadAmount>[^\"]+)" | rex field=msg "InputAmountToCredit\"\:\"(?<PayloadAmount>[^\"]+)" | rex field=msg "Request\#\:\s*(?<ID1>\d+) with (?<Status>\w+.\w+)" | rex field=msg "CRERequestId\"\:\"(?<ID2>[^\"]+)" | eval ID=coalesce(ID1,ID2) | stats latest(Status) as Status values(PayloadAmount) as Amount by ID | stats count(list(PayloadAmount)) by Status | eval _time=relative_time(now(),"-1d@d") | timechart usenull=f span=1d count by Status
... View more