Single Value Widget
Note
The Single Value
widget inherits some
of the functionalities of the Gauge
widget and replaces it in the current version of Humio until further
notice.
The Single Value
widget can either
display a single number — e.g., to indicate errors per day or the
active connections to a system — or string values, like for
instance words e.g., "Success"
or even symbols.
This widget can display any data with a single row and a single field, containing a number or a string.
See in Figure 121, “Single Value Widget” an example of how this widget may look like.

Figure 121. Single Value Widget
Because this widget can display any “single” value (regardless of whether it’s a number or not), a row with multiple fields in it would not make sense as you would have multiple potential values to pick from; therefore, if there are multiple rows, or there are multiple fields in a row, the widget will present an error.
An exception to the above behaviour is possible by using the
timeChart()
function, in which case there can be
multiple rows or data, used to calculate a trend — see
Example: Displaying a Trend with a Timechart.
Input Format
The Single Value
widget is often used
in conjunction with functions such as sum()
,
count()
, or avg()
which
produce a single row with a single field, like
_sum
.
The widget can also be used on data where you have produced a single
row with only one field. The select()
and
selectlast()
functions are very useful for this.
Example: Displaying Number of Errors
To show the number of errors in a system, you could count them using:
loglevel = /error/i | count()
This produces a single result with a field
_count
. The Single Value widget will
automatically select the first numeric field it sees and use it as
the value to display.
Example: Displaying Statistics from a Build
If you use Humio to monitor how your software is building, your build pipeline might already output the numbers you want, like the number of failed tests. Instead of calculating this number based on the failed tests that have been logged, you can display the number the system has given you:
commit = 67686a1
| /Tests failed: (?<tests_failed>\d+)/
| select(tests_failed)
Assuming there is only one build per commit, this search extracts
the number of tests that failed in the build, and uses the
select()
function to remove extraneous fields
from the row. Without calling select()
, the row
might contain multiple numeric fields, and the Single Value widget
would not know what to display.
Example: Displaying a Non-Numeric Value
The examples above described use cases with number values; instead,
the following example shows how the Single
Value
widget can also display a non-numeric value;
for example, you may set an emoji symbol to depict the state of a
particular outcome from your events:
tail(1)
| case {
fieldA = “true” | emoji := "😀"
* | emoji := "😔"
}
| select(emoji)
This query produces a single result with a field called
emoji
and specifies that the emoji will be set to
“😀” if a given fieldA
is
true
, else it will be set to "😔":

Figure 122. Non-Numeric Single Value Widget
Example: Displaying a Trend with a Timechart
The Single Value
widget can be
efficiently used in conjunction with the
timeChart()
function.
timeChart(span=1h)
This query produces a result containing the number of ingested
events per hour. The result contains two fields:
_bucket
and _count
. The
_bucket
field annotates each bucket with a
timestamp, whereas the _count
field is the value
(number of events ingested).

Figure 123. Single Value Widget with TimeChart()
The chart shows the following:
A value — The main central number indicates the value, in this case
_count
, in the last bucket, depending on whether the Last Bucket property has been set to include it or not, see Widget Properties.A trend — The difference in the value field, in this case
_count
, over the selected period. This is calculated by subtracting the value of the first bucket from the value of the last bucket.A sparkline — Illustrates the value over time. Along with the trend, this is useful to give some context to the value that you’re looking at. It can e.g. indicate whether the value you’re looking at is volatile, or if it’s relatively stable.
Widget Properties
Use the widget's
panel to configure the following properties.Title
The title of the widget as displayed in the dashboard.
Description
The description of the chart. This is free form text supporting markdown syntax.
This same description appears in the dashboard as a tooltip by hovering over the question mark on top of the widget.
Text
Label
Provides a definition to be displayed along with the number or text. For example, Number of Errors.
Value
Format
The available units that can be used to express values. Valid options are:
Raw
shows the actual numbers (e.g., 4987).Metric
formats the value as a number with appropriate rounding (e.g., 4987 will be shown as 5k).Time
converts the value to a time span (years, months, days, hours, minutes, seconds...), depending on the input type selected.
Input type
Enabled when the
Time
format is selected, gives the input units available to express values.Valid options are:
Milliseconds
Seconds
Decimal places
Enabled when the
Raw
orMetric
formats are selected, indicates the number of digits past the decimal point. It is possible to do number rounding by providing negative decimal places e.g., a decimal place of -2 would format the number 123 to 100.Suffix
Allows to provide any symbol or definition useful to describe the resulting value. For example,
$
orms
.
Buckets
Note
This property is available only when the
timeChart()
function is used.Controls whether the first and last buckets that are currently receiving live data must be shown in the embedded timechart or not. Valid options are:
First Bucket
The first bucket might be incomplete. If it's included, the trend and the sparkline will be affected. Options are:
Exclude
Include
Last Bucket
The last bucket might be incomplete. If it's included, the trend, sparkline and actual value will be affected. Options are:
Exclude
Include
Trend
Note
This property is available only when the
timeChart()
function is used.Show Trend
When checked, allows to visualize in the timechart the delta between the value of the first bucket and the value of the last bucket.
Show as
Allows to choose the format of the trend value between two options:
Absolute value
Percentage
Sparkline
Note
This property is available only when the
timeChart()
function is used.Show Sparkline
When checked, draws the timechart line or curve that estimates the relationship between the main single value and the trend.
Style
Controls the appearance of the sparkline in the timechart. Options are:
Gradient
applies gradient colors to the sparkline area fill.Line
draws just the sparkline without any fill.
Show line for zero
Colors
Controls the colors of the widget.
Method
Dropdown menu options are:
Static
allows to choose the color of the widget (text and background).By threshold
allows to set thresholds for specific ranges in numeric value results, thus displaying the result in different colors.
Text
Sets the color of the number or string — only available when the
Static
method is selected.Background
Sets the color of the background — only available when the
Static
method is selected.
The following properties appear when the
By threshold
method is selected.Critical High — the result is displayed in red if it exceeds the value set in this box.
High — the result is displayed in yellow if it exceeds the value set in this box.
Low — the result is displayed in yellow if it is below the value set in this box.
Critical Low — the result is displayed in red if it is below the value set in this box.
For example, a result of 600 turns red if you've set
500
as Critical High.