Hi all, brand new to splunk search syntax. I have a command like so:
... | stats count by userAgent, browserVersion, osName
That yields a table with those three columns about browsers (user agent, browser version & the OS) plus a fourth column, containing the total count of each row. Nice! However, I need a final row containing the count of unique session IDs for those rows. I know I can get access to the session IDs via session_id but I don't see how to sum them up ( dc() command...?) for the unique combinations of userAgent-browserVersion-osName.
Any suggestions?
... View more