Source
xxxxxxxxxx
description'Current number of workers that are associated with the scheduler that goes by its ID [{#SCHEDULER.ID}] and have assigned tasks waiting to be scheduled on the runnable queue.'
zabbix_export
version'7.0'
template_groups
uuid c2c162144c2d4c5491c8801193af4945
name Templates/Cloud
host_groups
uuid 748ad4d098d447d492bb935c907f652f
name Databases
uuid 137f19e6e2dc4219b33553b812627bc2
name'Virtual machines'
templates
uuid 4e1e9372a5fe4297936210bc4fc4b1c0
template'GCP by HTTP'
name'GCP by HTTP'
description
Discover GCP Compute Engine/Cloud SQL Instances and Compute Engine project quota metrics.
Don't forget to read the README.md for the correct setup of the template.
You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback
Generated by official Zabbix template tool "Templator"
vendor
name Zabbix
version 7.0-2
groups
name Templates/Cloud
items
uuid b003e61fbede488a957b6c866ffaa9ba
name'Authorization errors check'
type DEPENDENT
key gcp.auth.err.check
delay'0'
value_type TEXT
trends'0'
description'A list of errors from API requests.'
preprocessing
type JSONPATH
parameters
$.error
error_handler CUSTOM_VALUE
master_item
key gcp.authorization
tags
tag component
value status
triggers
uuid 74c0e16244314ab4a920e32faca50444
expression'length(last(/GCP by HTTP/gcp.auth.err.check)) > 0'
name'GCP: Authorization has failed'
priority AVERAGE
description
GCP: Authorization has failed.
Check the authorization parameters and GCP API availability from a network segment, where Zabbix-server/proxy is located.
tags
tag scope
value availability
uuid 5cc3faa82f404b38b513958f323f3d7d
name Authorization
type SCRIPT
key gcp.authorization
delay'{$GCP.AUTH.FREQUENCY}'
history'0'
value_type TEXT
trends'0'
params
var auth_url = 'https://oauth2.googleapis.com/token',
issued = Math.floor(new Date().getTime() / 1000),
expires = issued + 3600,
endpoint = 'https://www.googleapis.com/auth/',
scopes = ['cloud-platform.read-only', 'monitoring', 'compute.readonly', 'sqlservice.admin'],
scope = scopes.map(function (path) { return endpoint + path; }).join(' ');
function base64url(source) {
encodedSource = btoa(source);
encodedSource = encodedSource.replace(/=+$/, '');
encodedSource = encodedSource.replace(/\+/g, '-');
encodedSource = encodedSource.replace(/\//g, '_');
return encodedSource;
}
function fromHex(hex) {
var utf8array = [];
if (hex.length % 2)
throw 'Invalid length of a hex string!';
for (var i = 0; i < hex.length; i += 2) {
utf8array.push(parseInt(hex.substr(i, 2), 16));
}
return new Uint8Array(utf8array);
}