|
|
@ -6,11 +6,15 @@ use Engelsystem\Renderer\EngineInterface;
|
|
|
|
|
|
|
|
|
|
|
|
class MetricsEngine implements EngineInterface
|
|
|
|
class MetricsEngine implements EngineInterface
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
|
|
|
|
protected $prefix = 'engelsystem_';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Render metrics
|
|
|
|
* Render metrics
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param string $path
|
|
|
|
* @param mixed[] $data
|
|
|
|
* @param mixed[] $data
|
|
|
|
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @example $data = ['foo' => [['labels' => ['foo'=>'bar'], 'value'=>42]], 'bar'=>123]
|
|
|
|
* @example $data = ['foo' => [['labels' => ['foo'=>'bar'], 'value'=>42]], 'bar'=>123]
|
|
|
@ -25,21 +29,29 @@ class MetricsEngine implements EngineInterface
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$list = is_array($list) ? $list : [$list];
|
|
|
|
$list = is_array($list) ? $list : [$list];
|
|
|
|
$name = 'engelsystem_' . $name;
|
|
|
|
$name = $this->prefix . $name;
|
|
|
|
|
|
|
|
|
|
|
|
if (isset($list['help'])) {
|
|
|
|
if (isset($list['help'])) {
|
|
|
|
$return[] = sprintf('# HELP %s %s', $name, $this->escape($list['help']));
|
|
|
|
$return[] = sprintf('# HELP %s %s', $name, $this->escape($list['help']));
|
|
|
|
unset($list['help']);
|
|
|
|
unset($list['help']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$type = null;
|
|
|
|
if (isset($list['type'])) {
|
|
|
|
if (isset($list['type'])) {
|
|
|
|
|
|
|
|
$type = $list['type'];
|
|
|
|
$return[] = sprintf('# TYPE %s %s', $name, $list['type']);
|
|
|
|
$return[] = sprintf('# TYPE %s %s', $name, $list['type']);
|
|
|
|
unset($list['type']);
|
|
|
|
unset($list['type']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$list = (!isset($list['value']) || !isset($list['labels'])) ? $list : [$list];
|
|
|
|
$list = (!isset($list['value']) || !isset($list['labels'])) ? $list : [$list];
|
|
|
|
foreach ($list as $row) {
|
|
|
|
foreach ($list as $row) {
|
|
|
|
$row = is_array($row) ? $row : [$row];
|
|
|
|
$row = $this->expandData($row);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($type == 'histogram') {
|
|
|
|
|
|
|
|
$return = array_merge($return, $this->formatHistogram($row, $name));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$return[] = $this->formatData($name, $row);
|
|
|
|
$return[] = $this->formatData($name, $row);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -49,17 +61,72 @@ class MetricsEngine implements EngineInterface
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param array $row
|
|
|
|
* @return bool
|
|
|
|
* @param string $name
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @return array[]
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public function canRender(string $path): bool
|
|
|
|
protected function formatHistogram(array $row, string $name): array
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return $path == '/metrics';
|
|
|
|
$return = [];
|
|
|
|
|
|
|
|
$data = ['labels' => $row['labels']];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!isset($row['value']['+Inf'])) {
|
|
|
|
|
|
|
|
$row['value']['+Inf'] = !empty($row['value']) ? max($row['value']) : 'NaN';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
asort($row['value']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach ($row['value'] as $le => $value) {
|
|
|
|
|
|
|
|
$return[] = $this->formatData(
|
|
|
|
|
|
|
|
$name . '_bucket',
|
|
|
|
|
|
|
|
array_merge_recursive($data, ['value' => $value, 'labels' => ['le' => $le]])
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sum = isset($row['sum']) ? $row['sum'] : 'NaN';
|
|
|
|
|
|
|
|
$count = $row['value']['+Inf'];
|
|
|
|
|
|
|
|
$return[] = $this->formatData($name . '_sum', $data + ['value' => $sum]);
|
|
|
|
|
|
|
|
$return[] = $this->formatData($name . '_count', $data + ['value' => $count]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Expand the value to be an array
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param $data
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @return array
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
protected function expandData($data): array
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
$data = is_array($data) ? $data : [$data];
|
|
|
|
|
|
|
|
$return = ['labels' => [], 'value' => null];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (isset($data['labels'])) {
|
|
|
|
|
|
|
|
$return['labels'] = $data['labels'];
|
|
|
|
|
|
|
|
unset($data['labels']);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (isset($data['sum'])) {
|
|
|
|
|
|
|
|
$return['sum'] = $data['sum'];
|
|
|
|
|
|
|
|
unset($data['sum']);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (isset($data['value'])) {
|
|
|
|
|
|
|
|
$return['value'] = $data['value'];
|
|
|
|
|
|
|
|
unset($data['value']);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$return['value'] = $data;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @param string $name
|
|
|
|
* @param array|mixed $row
|
|
|
|
* @param array|mixed $row
|
|
|
|
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @return string
|
|
|
|
* @see https://prometheus.io/docs/instrumenting/exposition_formats/
|
|
|
|
* @see https://prometheus.io/docs/instrumenting/exposition_formats/
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -68,23 +135,23 @@ class MetricsEngine implements EngineInterface
|
|
|
|
return sprintf(
|
|
|
|
return sprintf(
|
|
|
|
'%s%s %s',
|
|
|
|
'%s%s %s',
|
|
|
|
$name,
|
|
|
|
$name,
|
|
|
|
$this->renderLabels($row),
|
|
|
|
$this->renderLabels($row['labels']),
|
|
|
|
$this->renderValue($row)
|
|
|
|
$this->renderValue($row['value'])
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param array|mixed $row
|
|
|
|
* @param array $labels
|
|
|
|
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
protected function renderLabels($row): string
|
|
|
|
protected function renderLabels(array $labels): string
|
|
|
|
{
|
|
|
|
{
|
|
|
|
$labels = [];
|
|
|
|
if (empty($labels)) {
|
|
|
|
if (!is_array($row) || empty($row['labels'])) {
|
|
|
|
|
|
|
|
return '';
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
foreach ($row['labels'] as $type => $value) {
|
|
|
|
foreach ($labels as $type => $value) {
|
|
|
|
$labels[$type] = $type . '="' . $this->formatValue($value) . '"';
|
|
|
|
$labels[$type] = $type . '="' . $this->formatValue($value) . '"';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -93,19 +160,21 @@ class MetricsEngine implements EngineInterface
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param array|mixed $row
|
|
|
|
* @param array|mixed $row
|
|
|
|
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
protected function renderValue($row)
|
|
|
|
protected function renderValue($row)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (isset($row['value'])) {
|
|
|
|
if (is_array($row)) {
|
|
|
|
return $this->formatValue($row['value']);
|
|
|
|
$row = array_pop($row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $this->formatValue(array_pop($row));
|
|
|
|
return $this->formatValue($row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param mixed $value
|
|
|
|
* @param mixed $value
|
|
|
|
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
protected function formatValue($value)
|
|
|
|
protected function formatValue($value)
|
|
|
@ -119,6 +188,7 @@ class MetricsEngine implements EngineInterface
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @param mixed $value
|
|
|
|
* @param mixed $value
|
|
|
|
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
protected function escape($value)
|
|
|
|
protected function escape($value)
|
|
|
@ -136,6 +206,16 @@ class MetricsEngine implements EngineInterface
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @param string $path
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @return bool
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function canRender(string $path): bool
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return $path == '/metrics';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Does nothing as shared data will only result in unexpected behaviour
|
|
|
|
* Does nothing as shared data will only result in unexpected behaviour
|
|
|
|
*
|
|
|
|
*
|
|
|
|