Splunk Search

Can I have the difference of two values as the output using appendcols? How?

jsuryaprakash
Path Finder

index=main (sourcetype=bb OR sourcetype=cc) type=DELETE | transaction info.agentId startswith=COMPLETED endswith=DELETE keepevicted=true | search closed_txn=0 type=DELETE | stats count(info.agentId) AS "Deleted Device"
| appendcols [search index=main(sourcetype=bb OR sourcetype=cc ) type=COMPLETED OR type=DELETE| transaction info.agentId startswith=COMPLETED endswith=DELETE keepevicted=true | search closed_txn=0 type!=DELETE | stats count(info.agentId) AS "Onboarded Devices" ]

My outcome is:

Deleted Device   Deleted Device
151              155

But I need the difference as below.
Total Devices
4

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Here's a completed untested query that avoids appendcols.

index=main(sourcetype=bb OR sourcetype=cc ) type=COMPLETED OR type=DELETE| transaction info.agentId startswith=COMPLETED endswith=DELETE keepevicted=true | search closed_txn=0  | stats count(eval(type=DELETE)) AS "Deleted Device" count(eval(type!=DELETE)) AS "Onboarded Devices"  | eval "Total Devices"='Onboarded Devices' - 'Deleted Device'
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...