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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...