Dashboards & Visualizations

aligning single value output.

smolcj
Builder

hi all,
i am using several single value results in my dashboard and i am using the tags.
the code sample is like this and repeated several times.




blabla

ServerName:

so my output is like

labe1:value
labelllll2:value2
la:value3
how to align it like
label : value1
labelllll2 : value2
la : value3
please help..
thankyou

Tags (1)
0 Karma
1 Solution

jonuwz
Influencer

Not easily with CSS, and since its unlikely the font you'll be using is monospaced, it wont be easy to correct the spacing with padding.

This CSS :

.singleLabel {
    display: inline-block;
    min-width: 80px;
    text-align: right;
}
.singleResult {
    display: inline-block;
    min-width: 80px;
    text-align: left;
}

should line up your data ( you might have to play with the widths )

but it'll look like this :

         label : value1
    labelllll2 : value2
            la : value3

How to apply custom CSS

View solution in original post

jonuwz
Influencer

Not easily with CSS, and since its unlikely the font you'll be using is monospaced, it wont be easy to correct the spacing with padding.

This CSS :

.singleLabel {
    display: inline-block;
    min-width: 80px;
    text-align: right;
}
.singleResult {
    display: inline-block;
    min-width: 80px;
    text-align: left;
}

should line up your data ( you might have to play with the widths )

but it'll look like this :

         label : value1
    labelllll2 : value2
            la : value3

How to apply custom CSS

Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...