SLA

Fetches data from services and service level agreements (SLAs) of a Zabbix server.
slaWidget
Widget configuration: SLA widget
  • SLA: SLAs to display in the report.
  • Services: Optionally select specific services to include.

Render examples

Displays an overview about all SLAs and detailed information for each selected SLA.

pdfRenderSLAs
SLA widget: PDF render

Overview

  • A visualization and count of failed to good SLAs,
  • the average up- and downtime value and visualization of all SLAs,
  • the average and total excluded downtime

SLA

  • The name of the SLA with configured reporting period,
  • the up- and downtime with visualization,
  • the configured SLO and fulfillment indicator,
  • the configured service tags,
  • a list of excluded downtimes.

This JSON example is shortened to show no data that would be redundant otherwise.

{
	"displayName": "ST-SLA",
	"name": "sla-widget",
	"description": "SLA for testing.",
	"version": "1.0.0",
	"error": "",
	"services": [
		{
			"name": "ST-ROOT",
			"serviceid": "3",
			"status": -1,
			"tags": [
				{
					"tag": "ST-SLA",
					"value": "0"
				}
			],
			"slis": [
				{
					"name": "ST-SLA",
					"slaId": 3,
					"goodSLA": 99.9,
					"failed": false,
					"totalUptime": 100,
					"totalUptimeSeconds": 604800,
					"totalDowntimeSeconds": 0,
					"totalDowntime": 0,
					"period": 1,
					"excludedDowntimes": null
				}
			]
		}
	]
}