Splunk Search

How to Use Eval to add 2 Field Values

promukh
Path Finder

Search --

|source1 | stats count(source1.field1) by (source1.field2) | sort 0 source1.field2

  • Search Output

source1.field2 | count
dev | 6
prod | 5
uat | 7
qa | 8

  • How can we add count values of 'prod' and 'uat' & also to display the field value as below , Is this doable ? *

source1.field2 | count
dev | 6
prod + uat | 12
qa | 8

0 Karma

to4kawa
Ultra Champion

| makeresults
| eval _raw="Source1_field2,Count
dev,6
prod,5
uat,7
qa,8"
| multikv forceheader=1
| table Source1_field2,Count
| rename COMMENT as "this is sample your stats output"
| transpose 0 header_field=Source1_field2
| eval "prod + uat"=prod+uat
| fields - prod uat

| transpose 0 column_name="Source1_field2" header_field=column

This query aims to aggregate after stats

| makeresults
| eval _raw="Source1_field2,Count
dev,6
prod,5
uat,7
qa,8"
| multikv forceheader=1
| table Source1_field2,Count
| eval range=mvrange(0,Count)
| mvexpand range
| rename COMMENT as "this your log sample, from here, the logic"
| eval Source1_field2=if(Source1_field2="prod" OR Source1_field2="uat","prod + uat",Source1_field2)

| stats count as Count by Source1_field2

This query aims to aggregate "prod + uat" and others.

Code Sample is useless when multikv forceheader=1 , because extra space is added.
I am troubled.

0 Karma

woodcock
Esteemed Legend

Like this:

| makeresults count=6 
| eval field2="dev" 
| append 
    [| makeresults count=5 
    | eval field2="prod"] 
| append 
    [| makeresults count=7 
    | eval field2="uat"] 
| append 
    [| makeresults count=8 
    | eval field2="qa"] 

| rename COMMENT AS "Everything above generates sample event data; everything below is your solution"

| stats count BY field2 
| sort 0 field2
| eval env="count"
| xyseries env field2 count
| eval prod_n_uat = prod + uat
| fields - prod uat
| untable env field2 count
| fields - env
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Add an eval after stats.

source1 | stats count(source1.field1) by (source1.field2) | eval sum=prod + uat | sort 0 source1.field2
---
If this reply helps you, Karma would be appreciated.
0 Karma

woodcock
Esteemed Legend

Not without tabling it first.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

A Four-Part Event Series: Full Stack Observability For the AI Era

As AI reshapes applications, infrastructure, and the way teams operate, the traditional boundaries of ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...