Splunk Search

timechart suppress values lower then x

ndcl
Path Finder

Hi Base,
I just run into a problem and I can´t solve it by my own. So, maybe someone here can bring me back on track:

I build a timechart of a windows sec log: …| timechart span=30m count(TaskCategory) by Accountname fine so far. Now I want to suppress all results f.e. which are less than 50 but how?
where count >50 won´t work.

Thanks!

Tags (2)
0 Karma
1 Solution

Stephen_Sorkin
Splunk Employee
Splunk Employee

This is somewhat tricky. Once the data has left timechart, the values are assigned to fields named by the values of "Accountname".

We have to preprocess the data and make sure that timechart doesn't get the undesired values to begin with.

... | bin span=30m _time
| stats count(TaskCategory) as TaskCategoryCount by _time, Accountname
| where TaskCategoryCount < 50
| timechart span=30m sum(TaskCategoryCount) as TaskCategoryCount by Accountname

View solution in original post

0 Karma

Stephen_Sorkin
Splunk Employee
Splunk Employee

This is somewhat tricky. Once the data has left timechart, the values are assigned to fields named by the values of "Accountname".

We have to preprocess the data and make sure that timechart doesn't get the undesired values to begin with.

... | bin span=30m _time
| stats count(TaskCategory) as TaskCategoryCount by _time, Accountname
| where TaskCategoryCount < 50
| timechart span=30m sum(TaskCategoryCount) as TaskCategoryCount by Accountname
0 Karma

ndcl
Path Finder

Thanks! This works fine for me!

0 Karma
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...