Splunk Search

ML - best practice fillnull value to use for avg response time when count=0

nathanwray
New Member

Hi, I'm relatively new to Splunk. I'm building searches for mcollect to parse and store metrics into a metric sindex. My intention is to later use the metrics to train ML for alerting.

I have a set of endpoints where I have hit counts for each endpoint, and average response time for the endpoint, sliced into 5 minute intervals. At specific times of day I might have zero hits on a specific endpoint. Importantly I don't have "missing data" here, there were legitimately no hits at certain times.

I'm successfully using timechart | fillnull value=0 | untable to make sure I have a count for each endpoint for each timeslice. I understand not having gaps is important for at least some of the ML algorithms. 

Where I'm uncertain is the response time values. It seems incorrect to say that the endpoint responded in 0ms during a timeslice where there were no hits, and that this could skew things since it will never be 0ms when there is any hit. I could use fillnull value=NULL for these values, which seems more "correct". However I'm unclear if I'm going to regret those null values later when I get into ML.

What is best practice for fillnull when you're backfilling performance values?

My search so far, note I need to end with _time, metric_name, _value for mcollect.

index=my_index earliest="-1d@d" latest="@d" host="prod*" "MYSTRING|*"
| eval all=split(_raw,"|")
| eval Application=mvindex(all,2)
| eval Service=mvindex(all,4)
| eval Actual=mvindex(all,8)
| eval metric_name=Application.".".Service.".actual.avg"
| bin _time span=5m
| stats avg(Actual) AS _value BY _time metric_name
| eval _value=round(_value)
| timechart limit=0 span=5m min(_value) AS _value by metric_name
| fillnull value=NULL
| untable _time metric_name _value
| mcollect index=my_index_metrics

 

 

 

 

Labels (1)
0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

 Ready to master Kubernetes and cloud monitoring like the pros? Join Splunk’s Growth Engineering team for an ...

Update Your SOAR Apps for Python 3.13: What Community Developers Need to Know

To Community SOAR App Developers - we're reaching out with an important update regarding Python 3.9's ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...