Metrics: Added scrape memory usage

This commit is contained in:
Igor Scheller 2019-07-08 00:17:24 +02:00
parent e06affae17
commit da804fe720
1 changed files with 6 additions and 0 deletions

View File

@ -135,6 +135,12 @@ class Controller extends BaseController
microtime(true) - $this->request->server->get('REQUEST_TIME_FLOAT', $now),
];
$data['scrape_memory_bytes'] = [
'type' => 'gauge',
'help' => 'Memory usage of the current request',
memory_get_usage(false),
];
return $this->response
->withHeader('Content-Type', 'text/plain; version=0.0.4')
->withContent($this->engine->get('/metrics', $data));