|
I'm trying to track adoption of a new system using Splunk. I have a chart which shows distinct users per day. I'd like to also add a chart that shows cumulative distinct users.
I've tried streamstats but can't figure out if there is an option to do this. |
|
Here's an example of a search that does roughly what you want:
The Thanks - that worked!
(16 Aug '10, 13:18)
patrickw
|
|
You could use | uniq | stats count in a time constrainted search 1
Thanks Pete - can you be more specific about the 'time constrained search' part of the answer? I see how | uniq | gets me part way there, but how do I actually get the running total out of that?
(13 Aug '10, 17:23)
patrickw
|
|
When I've ran this and then "Show Report"...the day is a bunch of numbers like 1312330200 which I don't recognize...how do I add to this to convert the day to something readable on the report?
Thanks, Bob I. Try eventtype="download" | bin _time span=1d as day | stats values(clientip) as ips dc(clientip) by day | streamstats dc(ips) as "Cumulative total" | eval ddd=strftime(day,"%b %d %Y") | table ddd "Cumulative total".
(01 Feb '12, 14:38)
rmorlen
|