add json output

master
Dirk Heilig 2024-08-29 10:43:48 +02:00
parent 522b3bbce2
commit ac2c07925a
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ function output(): void
$prom .= $entry["name"] . $labels . " " . $entry["value"] . "\n"; $prom .= $entry["name"] . $labels . " " . $entry["value"] . "\n";
} }
file_put_contents("/www/metrics/new.prom", $prom); file_put_contents("/www/metrics/new.prom", $prom);
file_put_contents("/www/metrics/json", $json); file_put_contents("/www/metrics/json", json_encode($json,JSON_PRETTY_PRINT+JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE));
rename("/www/metrics/new.prom", "/www/metrics/index.prom"); rename("/www/metrics/new.prom", "/www/metrics/index.prom");
// return $prom; // return $prom;
} }