mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* add the poller * save text status stuff * add initial app page stuff * add history table and start work on graphs * checkpoint * re-work the poudriere graph bits a bit more * fix the poller and start work on the graphs * polling fix * more work on the poudriere stuff * poke stuff with php-cs-fix * add some more graphs * more style fixes * another style fix * add more graphs * add Poudriere docs * add tests data * some minor tests fixes * a test tweak * more test tweaks * some more test tweaks * tweak .data.build_info data .data.build_info to make the app data test saner * derp... missed a item * add app data
37 lines
639 B
PHP
37 lines
639 B
PHP
<?php
|
|
|
|
$unit_text = 'count';
|
|
|
|
$stats_list = [
|
|
'QUEUE' => [
|
|
'stat' => 'QUEUE',
|
|
'descr' => 'QUEUE',
|
|
],
|
|
'BUILT' => [
|
|
'stat' => 'BUILT',
|
|
'descr' => 'BUILT',
|
|
],
|
|
'FAIL' => [
|
|
'stat' => 'FAIL',
|
|
'descr' => 'FAIL',
|
|
],
|
|
'SKIP' => [
|
|
'stat' => 'SKIP',
|
|
'descr' => 'SKIP',
|
|
],
|
|
'IGNORE' => [
|
|
'stat' => 'IGNORE',
|
|
'descr' => 'IGNORE',
|
|
],
|
|
'REMAIN' => [
|
|
'stat' => 'REMAIN',
|
|
'descr' => 'REMAIN',
|
|
],
|
|
'FETCH' => [
|
|
'stat' => 'FETCH',
|
|
'descr' => 'FETCH',
|
|
],
|
|
];
|
|
|
|
require 'poudriere-common.inc.php';
|