Request:
If #67 (a new facts drill down page) is fixed, it would also be nice if the Dashboard tab could show cells linking to said page.
The cell itself should simply show a count() of the unique number of values for that fact.
In the dashboard code you need to add something to distinguish between the current querys, whom are directed at the nodes page, to a cell that is instead pointing at the fact page.
dashboard_panels => [
{
'name' => 'Nodes with failures',
'type' => 'danger',
'query' => '#node.latest_report_status="failed"'
},
{
'name' => 'Uptime',
'type' => 'info',
'fact' => 'uptime_days'
},
...and so on...
The keynames 'query' and 'fact' are mutually exclusive, you can only set one.
/Elof
Request:
If #67 (a new facts drill down page) is fixed, it would also be nice if the Dashboard tab could show cells linking to said page.
The cell itself should simply show a count() of the unique number of values for that fact.
In the dashboard code you need to add something to distinguish between the current querys, whom are directed at the nodes page, to a cell that is instead pointing at the fact page.
The keynames 'query' and 'fact' are mutually exclusive, you can only set one.
/Elof