Splunk Search

Append showing result in new row

mcamilleri
Path Finder

If I understood correctly append returns the result in the same row as the previous query. Anyone knows why I get 2 separate rows in my results: 1 row with the foo number and another with the bar number? And no DiffPercent?

earliest=-5m@m latest=@m <my query> |stats sum(eval(MessageCount)) as foo | append [search earliest=-10m@m latest=-5m@m <same query> |stats sum(eval(MessageCount)) as bar] | append [eval DiffPercent = (bar - foo) / bar * 100]

alt text

Tags (2)
0 Karma
1 Solution

yannK
Splunk Employee
Splunk Employee

Yes this is what append does, append row of results after the existing ones.

If you want to add columns, you may want to look at appendcols (but they may not be aligns)
or the join function (using a common field for the join)

Or simply use the append, adding an extra stats or timechart after to reformat.

earliest=-5m@m latest=@m <my query>
|stats sum(eval(MessageCount)) as foo
| eval title="5monthsago"
| append [
search earliest=-10m@m <same query>
|stats sum(eval(MessageCount)) as bar
| eval title="10monthsago"
]
| stats values(foo) AS foo values(bar) AS bar
| eval DiffPercent = (bar - foo) / bar * 100

[edit value to values]

View solution in original post

yannK
Splunk Employee
Splunk Employee

Yes this is what append does, append row of results after the existing ones.

If you want to add columns, you may want to look at appendcols (but they may not be aligns)
or the join function (using a common field for the join)

Or simply use the append, adding an extra stats or timechart after to reformat.

earliest=-5m@m latest=@m <my query>
|stats sum(eval(MessageCount)) as foo
| eval title="5monthsago"
| append [
search earliest=-10m@m <same query>
|stats sum(eval(MessageCount)) as bar
| eval title="10monthsago"
]
| stats values(foo) AS foo values(bar) AS bar
| eval DiffPercent = (bar - foo) / bar * 100

[edit value to values]

mcamilleri
Path Finder

Just needed to change value to values. And it's 5minutesago instead of 5monthsago. Thanks @yannK!

0 Karma

mcamilleri
Path Finder

I get this error - Error in 'stats' command: The argument 'value(foo)' is invalid.

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 ...