Dashboards & Visualizations

How to see _raw logs in the dashboard?

debdutsaini
New Member

I am trying to display raw logs in a dashboard but it removing the raw logs. Is there a way to display it? In standard search, it is showing the raw logs but not in dashboard.

Sample Query:

index=*
| eval device = coalesce(  dvc, device_name)
| eval is_valid_str=if(match(device, "^[a-zA-Z0-9_\-.,$]*$"), "true", "false")
| where is_valid_str="false"
| stats count by device, index, _raw

 

Labels (1)
0 Karma

thahir
Communicator

HI @debdutsaini ,

replace stats with table in the last line of your query like below

index=*
| eval device = coalesce(dvc, device_name)
| eval is_valid_str=if(match(device, "^[a-zA-Z0-9_\-.,$]*$"), "true", "false")
| where is_valid_str="false"
| table _time index device _raw

0 Karma

PrewinThomas
Motivator

@debdutsaini 

If it's in Dashboard studio,

You need to enable _internal fields to show the same in the dashboard.


Edit -> Data Display-> Select Internal fields

Regards,
Prewin
Splunk Enthusiast | Always happy to help! If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!

0 Karma
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...