Dashboards & Visualizations

Can you create a single value visualisation where the value is a field value?

ebs
Communicator

Hi,

I have a use case where I would like to use the single value visualisation to display the time a service starts and another one displaying when the service ends. Is this possible? I'd prefer to achieve this with SPL

Labels (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @ebs,

see eval command and strftime option:

| eval earliest=strftime(earliest,"%d/%m/%Y %H:%M:%S")

for more infos see at https://docs.splunk.com/Documentation/Splunk/8.2.0/SearchReference/Eval and https://docs.splunk.com/Documentation/Splunk/8.2.0/SearchReference/DateandTimeFunctions#strftime.28X...

Ciao.

Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @ebs,

you have to create a search (using only SPL) that has as output the starting time e.g.:

index=my_index
| stats earliest(_time) AS earliest
| table earliest

the only attention is that you have to display only one field (the starting time).

Ciao.

Giuseppe

0 Karma

ebs
Communicator

Hi @gcusello ,

Thanks, this helps a lot. Only thing now is that its displaying like 1622674823. How can I convert this to a datetime?

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @ebs,

see eval command and strftime option:

| eval earliest=strftime(earliest,"%d/%m/%Y %H:%M:%S")

for more infos see at https://docs.splunk.com/Documentation/Splunk/8.2.0/SearchReference/Eval and https://docs.splunk.com/Documentation/Splunk/8.2.0/SearchReference/DateandTimeFunctions#strftime.28X...

Ciao.

Giuseppe

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @ebs,

good for you, see next time!

Ciao and happy splunking.

Giuseppe

P.S.: Karma Points are appreciated 😉

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...