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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...

Design, Compete, Win: Submit Your Best Splunk Dashboards for a .conf26 Pass

Hello Splunkers,  We’re excited to kick off a Splunk Dashboard contest! We know that dashboards are a primary ...

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...