Splunk Search

How to group by two months.

tabishritz
Observer

My query

"mwt-service"  my query |stats count by channel service date_month

yields result like

channelservicemonthcount
PBXFNTFnovember4
STEACTRnovember5
PBXFNTFoctober6
STEACTRoctober9

 

But I want to have two columns of each month count as below

channelservicenovoct
PBXFNTF45
STEACTR38

 

please advice.
 
 
Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval nov=if(month="november",count,null)
| eval oct=if(month="october",count,null)
| fields - month count
| stats values(*) as * by channel, service
0 Karma
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...