Add content type header for metrics endpoint
Set the Content-Type header to 'text/plain; version=0.0.4' for the '/metrics' endpoint and CLI requests.
This commit is contained in:
parent
6f26907181
commit
24f1f6c974
@ -3,6 +3,7 @@ require 'vendor/autoload.php';
|
|||||||
require 'config.php';
|
require 'config.php';
|
||||||
|
|
||||||
if($_SERVER["REQUEST_URI"] == '/metrics' || php_sapi_name() == 'cli') {
|
if($_SERVER["REQUEST_URI"] == '/metrics' || php_sapi_name() == 'cli') {
|
||||||
|
header('Content-Type: text/plain; version=0.0.4');
|
||||||
foreach ($config as $key => &$c) {
|
foreach ($config as $key => &$c) {
|
||||||
if(isset($c['command'])) {
|
if(isset($c['command'])) {
|
||||||
$output=null;
|
$output=null;
|
||||||
|
Loading…
Reference in New Issue
Block a user