Hi ITWhisperer, Thanks for responding, I'm trying to help our engineers craft a splunk query that would help narrow down to a particular application or web page. I don't think the device id changes and here is the full SPL query they came me to play around with and some output. They also want to calculate a rate rather than an absolute number. index=akamai reqHost="www.care.com" | rex field=cookie "care_did=(?<care_did>[a-z0-9-]+)" | rex field=cookie "n_vis=(?<n_vis>[a-z0-9-\.]+)" | stats avg(_time) as _time, dc(care_did) as care_did_count, values(care_did) by n_vis | where care_did_count > 1 | timechart count 2022-02-28 15:00:00 34 2022-02-28 15:30:00 46 2022-02-28 16:00:00 52 2022-02-28 16:30:00 54 2022-02-28 17:00:00 55 2022-02-28 17:30:00 63 2022-02-28 18:00:00 62 2022-02-28 18:30:00 62 2022-02-28 19:00:00 69 2022-02-28 19:30:00 77 2022-02-28 20:00:00 76 2022-02-28 20:30:00 64 2022-02-28 21:00:00 55 2022-02-28 21:30:00 56 2022-02-28 22:00:00 59
... View more