Dashboards & Visualizations

How to hide a word in UI Dashboard

aditsss
Motivator

Hi Everyone,

I have one requirement.

I have below query:

index=abc  ns=iop  app_name=api "Invoked:DOWNLOAD_S3" OR "Invoked:PULL_GRS_FILE_UPLOAD" OR "Invoked:UPLOAD_S3" OR "Invoked:DOWNLOAD_BACKEND_PUSH_TO_SF" OR "Invoked:LR_JSON" OR "Invoked:PULL_S3_UPLOAD" OR "Invoked:PUSH_S3_GRS_FILE_UPLOAD"
| rex ":\s+(?<pattern>.*)$"
| stats count BY pattern

I want to hide Invoked: word means I dont want to show this Invoked: on UI dashboard.

Can anyone g

 

 

Labels (3)
0 Karma
1 Solution

manjunathmeti
Champion

hi @aditsss,
Try this:

index=abc  ns=iop  app_name=api "Invoked:DOWNLOAD_S3" OR "Invoked:PULL_GRS_FILE_UPLOAD" OR "Invoked:UPLOAD_S3" OR "Invoked:DOWNLOAD_BACKEND_PUSH_TO_SF" OR "Invoked:LR_JSON" OR "Invoked:PULL_S3_UPLOAD" OR "Invoked:PUSH_S3_GRS_FILE_UPLOAD"
| rex "Invoked:\s*(?<pattern>\w+)$"
| stats count BY pattern

View solution in original post

manjunathmeti
Champion

hi @aditsss,
Try this:

index=abc  ns=iop  app_name=api "Invoked:DOWNLOAD_S3" OR "Invoked:PULL_GRS_FILE_UPLOAD" OR "Invoked:UPLOAD_S3" OR "Invoked:DOWNLOAD_BACKEND_PUSH_TO_SF" OR "Invoked:LR_JSON" OR "Invoked:PULL_S3_UPLOAD" OR "Invoked:PUSH_S3_GRS_FILE_UPLOAD"
| rex "Invoked:\s*(?<pattern>\w+)$"
| stats count BY pattern
Get Updates on the Splunk Community!

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...