Added example configurion

This commit is contained in:
Jeroen De Meerleer 2024-06-03 19:48:39 +02:00
parent 5d76b42c23
commit 418b170bc6
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6

13
config.example.php Normal file
View File

@ -0,0 +1,13 @@
<?php
$config = [
'app_demo_metric1' => [ // Key is being used a prometheus key
'help' => 'Help text for metric',
'command' => 'The command to be run',
'jsonelem' => '0.metric', // The json element where the metric is found (Dot notated)
],
'app_demo_metric2' => [
'help' => 'Help text for metric',
'httpurl' => 'http://example.com', // The url to get collected for the metric
'jsonelem' => '0.metric',
],
];