Splunk Search

Sub-searches using savedsearch returns results, but columns are labeled "NULL"

yacht_rock
Explorer

Using savedsearch and timechart, I'm getting NULL where I'd expect the values of "myfield"

Base search (@m to -1h@h)

 index=myindex myfield=*FOO* | timechart span=1h count by myfield

And aggregating searches like

 | savedsearch mysavedsearch1 | timechart span=1d count by myfield

Aggregating search has time stamps in correct grouping, but the other column is labeled NULL when it should be values like myfield-foo, foo-myfield, etc..

0 Karma
1 Solution

somesoni2
Revered Legend

Once you fire your first query, the columns available are _time and value of myfield (not the column with name myfield). So when you're using your second search, it'll return NULL as there is no column with name myfield. This is how you should implement this

Base search (@m to -1h@h)

 index=myindex myfield=*FOO* | bucket span=1h _time | stats count by _time myfield

And aggregating searches like

| savedsearch mysavedsearch1 | timechart span=1d sum(count) by myfield

View solution in original post

somesoni2
Revered Legend

Once you fire your first query, the columns available are _time and value of myfield (not the column with name myfield). So when you're using your second search, it'll return NULL as there is no column with name myfield. This is how you should implement this

Base search (@m to -1h@h)

 index=myindex myfield=*FOO* | bucket span=1h _time | stats count by _time myfield

And aggregating searches like

| savedsearch mysavedsearch1 | timechart span=1d sum(count) by myfield
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...