![]() |
VOOZH | about |
SLOs (service-level objectives) are an agreed-upon target that must be achieved for each activity, function, and process to provide the best opportunity for customer success. SLOs represent the performance or health of a service.
The SLO List widget displays a subset of SLOs over their primary time window. All other configured time windows are available in the SLO’s side panel on the SLO page. For more information, see the SLO documentation.
service:foo, env:prod). Template variables are supported.When you are ready to create the widget, click Save.
This widget can be used with the Dashboards API. See the following table for the widget JSON schema definition:
Expand All
Field
Type
Description
description
string
The description of the widget.
requests [required]
[object]
Array of one request object to display in the widget.
query [required]
object
Updated SLO List widget.
limit
int64
Maximum number of results to display in the table.
default: 100
query_string [required]
string
Widget query.
sort
[object]
Options for sorting results.
column [required]
string
Facet path for the column
order [required]
enum
Widget sorting methods.
Allowed enum values: asc,desc
request_type [required]
enum
Widget request type.
Allowed enum values: slo_list
title
string
Title of the widget.
title_align
enum
How to align the text on the widget.
Allowed enum values: center,left,right
title_size
string
Size of the title.
type [required]
enum
Type of the SLO List widget.
Allowed enum values: slo_list
default: slo_list
{
"description": "string",
"requests": [
{
"query": {
"limit": "integer",
"query_string": "env:prod AND service:my-app",
"sort": [
{
"column": "",
"order": "desc"
}
]
},
"request_type": "slo_list"
}
],
"title": "string",
"title_align": "string",
"title_size": "string",
"type": "slo_list"
}Additional helpful documentation, links, and articles:
| |