Dashboards & Visualizations

how can show leading zeros in single value dashboard ??

suryavicky21
Explorer

i have a query which result in a 6 digit number for a fieldname that might include leading "0" like 001234, 012345, 123456

my query returns a single fieldname, something like fieldname=001234, and i want to show this number on a single value dashboard. but i go to the visualization the leading zero is removed by splunk and show just the number 1234

please help me achieve this and show the number in a single value dashboard with the leading "0"

alt text

0 Karma

okayal
Explorer

I am sure there is a better way to solve this, but if you are in a hurry and don't mind a non-numerical suffix, you can concatenate a character such as * to the end of the number

For example
| eval digit=digit."*"

From the looks of it, the visualization itself does some sort of zero and white space stripping, and eval=tostring(digit) does not work either.

Hope this helps

0 Karma

suryavicky21
Explorer

@okayal thanks for the comments, though after that the leading zero is stripped off on the visualization while it is present in the search results.

0 Karma

okayal
Explorer

Strange, I ran the following, and its working for me

| makeresults
| eval digit="00123"
| eval digit=digit."*"

0 Karma
Get Updates on the Splunk Community!

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...