|
|
@ -20,23 +20,23 @@ |
|
|
|
############################################################################## |
|
|
|
{ |
|
|
|
"name" : "Key Performance Indicator", |
|
|
|
"version" : "0.1", |
|
|
|
"version" : "1.0", |
|
|
|
"author" : "Savoir-faire Linux", |
|
|
|
"website" : "http://www.savoirfairelinux.com", |
|
|
|
"license" : "GPL-3", |
|
|
|
"license" : "AGPL", |
|
|
|
"category" : "Management System", |
|
|
|
"complexity" : "normal", |
|
|
|
"description": """ |
|
|
|
This module provides the basis for creating key performance indicators, |
|
|
|
including static and dynamic thresholds (SQL query or Python code), |
|
|
|
on local and remote data sources. |
|
|
|
"description": """\ |
|
|
|
This module provides the basis for creating key performance indicators, |
|
|
|
including static and dynamic thresholds (SQL query or Python code), |
|
|
|
on local and remote data sources. |
|
|
|
|
|
|
|
The module also provides the mecanism to update KPIs automatically. |
|
|
|
A scheduler is executed every hour and updates the KPI values, based |
|
|
|
on the periodicity of each KPI. KPI computation can also be done |
|
|
|
manually. |
|
|
|
The module also provides the mecanism to update KPIs automatically. |
|
|
|
A scheduler is executed every hour and updates the KPI values, based |
|
|
|
on the periodicity of each KPI. KPI computation can also be done |
|
|
|
manually. |
|
|
|
|
|
|
|
A threshold is a list of ranges and a range is: |
|
|
|
A threshold is a list of ranges and a range is: |
|
|
|
* a name (like Good, Warning, Bad) |
|
|
|
* a minimum value (fixed, sql query or python code) |
|
|
|
* a maximum value (fixed, sql query or python code) |
|
|
|