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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...