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
67 lines
1.4 KiB
PHP
67 lines
1.4 KiB
PHP
<?php
|
|
|
|
$unit_text = 'count';
|
|
|
|
$colours = 'rainbow';
|
|
|
|
$stats_list = [
|
|
'check-sanity' => [
|
|
'stat' => 'check-sanity',
|
|
'descr' => 'check-sanity',
|
|
],
|
|
'pkg-depends' => [
|
|
'stat' => 'pkg-depends',
|
|
'descr' => 'pkg-depends',
|
|
],
|
|
'fetch-depends' => [
|
|
'stat' => 'fetch-depends',
|
|
'descr' => 'fetch-depends',
|
|
],
|
|
'fetch checksum' => [
|
|
'stat' => 'fetch checksum',
|
|
'descr' => 'fetch checksum',
|
|
],
|
|
'extract-depends' => [
|
|
'stat' => 'extract-depends',
|
|
'descr' => 'extract-depends',
|
|
],
|
|
'extract patch-depends' => [
|
|
'stat' => 'extract patch-depends',
|
|
'descr' => 'extract patch-depends',
|
|
],
|
|
'patch' => [
|
|
'stat' => 'patch',
|
|
'descr' => 'patch',
|
|
],
|
|
'build-depends' => [
|
|
'stat' => 'build-depends',
|
|
'descr' => 'build-depends',
|
|
],
|
|
'lib-depends' => [
|
|
'stat' => 'lib-depends',
|
|
'descr' => 'lib-depends',
|
|
],
|
|
'configure' => [
|
|
'stat' => 'configure',
|
|
'descr' => 'configure',
|
|
],
|
|
'build' => [
|
|
'stat' => 'build',
|
|
'descr' => 'build',
|
|
],
|
|
'run-depends' => [
|
|
'stat' => 'run-depends',
|
|
'descr' => 'run-depends',
|
|
],
|
|
'stage' => [
|
|
'stat' => 'stage',
|
|
'descr' => 'stage',
|
|
],
|
|
'package' => [
|
|
'stat' => 'package',
|
|
'descr' => 'package',
|
|
],
|
|
];
|
|
|
|
require 'poudriere-common.inc.php';
|