Splunk Search

How to combine chart count for two fields in one search

monipinni
Explorer

Hi,

Can any one help me adding two fields in one search I am seeing both fields in splunk selected fields but not seeing new field in Search result.

Query : Basic Search AND body.response.failedUpcName=* OR body.failedUpcName=* | chart count by body.response.failedUpcName , body.failedUpcName

Old Field Name : body.response.failedUpcName     
New Field Name : body.failedUpcName

How to get results for both Fields ?

0 Karma

arjunpkishore5
Motivator

Try this,


Basic Search AND body.response.failedUpcName=* OR body.failedUpcName=*
| rename body.response.failedUpcName as response_failedUpcName, body.failedUpcName as failedUpcName
| chart count by response_failedUpcName , failedUpcName

Not sure on the exact reason for this, however reporting commands don't seem to be able to handle nested fields very well.

If your goal is to get the fields separately


Basic Search AND body.response.failedUpcName=* OR body.failedUpcName=*
| rename body.response.failedUpcName as response_failedUpcName, body.failedUpcName as failedUpcName
|fields response_failedUpcName, failedUpcName
| chart count(*) as *

If your goal is to get count based on one or the other based on what is available

Basic Search AND body.response.failedUpcName=* OR body.failedUpcName=*
| rename body.response.failedUpcName as response_failedUpcName, body.failedUpcName as failedUpcName
| eval failedUpcName = coalesce(response_failedUpcName, failedUpcName)
| chart count by failedUpcName

0 Karma

jkat54
SplunkTrust
SplunkTrust

Does it work if you replace chart with this stats example?

 | stats count(field1) count(field2)
Get Updates on the Splunk Community!

Dashboards: Hiding charts while search is being executed and other uses for tokens

There are a couple of features of SimpleXML / Classic dashboards that can be used to enhance the user ...

Splunk Observability Cloud's AI Assistant in Action Series: Explaining Metrics and ...

This is the fourth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how ...

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...