Hi, i have a problem with a few queries. I have something actually like this: index = nsw_prod_eximee ERROR
| rex field=formInstanceNumber (?<pref>\w{3})\d{9}
| rex field=applicationNumber (?<pref>\w{3})\d{9}
| eval "Name" = case(pref=="USP", "mProtection", pref=="FGT", "mTravel", pref=="FGH", "HouseHold", pref=="FGS", "mMoto")
| stats count as formInstanceNumber by "Name"
| rename formInstanceNumber as "Errors" And i have a table with a 4 values: But now i have a problem to count a column "Errors". I want to count all Errors. 2. The second problem i have, i can't do the timechart and i need help with it. I want to do timechart with that all values, but when i do that, there is no columns on timechart. How to get that query? Thanks in advance.
... View more