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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...