This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfb63c8
commit a7907ca
Showing
55 changed files
with
6,599 additions
and
6,599 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<centreon-partitioning> | ||
<table name="log_archive_host" schema="centreon_storage"> | ||
<activate>1</activate> | ||
<column>date_end</column> | ||
<type>date</type> | ||
<createstmt> | ||
CREATE TABLE `log_archive_host` ( | ||
`log_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`host_id` int(11) DEFAULT NULL, | ||
`UPTimeScheduled` int(11) DEFAULT NULL, | ||
`UPnbEvent` int(11) DEFAULT NULL, | ||
`UPTimeAverageAck` int(11) NOT NULL, | ||
`UPTimeAverageRecovery` int(11) NOT NULL, | ||
`DOWNTimeScheduled` int(11) DEFAULT NULL, | ||
`DOWNnbEvent` int(11) DEFAULT NULL, | ||
`DOWNTimeAverageAck` int(11) NOT NULL, | ||
`DOWNTimeAverageRecovery` int(11) NOT NULL, | ||
`UNREACHABLETimeScheduled` int(11) DEFAULT NULL, | ||
`UNREACHABLEnbEvent` int(11) DEFAULT NULL, | ||
`UNREACHABLETimeAverageAck` int(11) NOT NULL, | ||
`UNREACHABLETimeAverageRecovery` int(11) NOT NULL, | ||
`UNDETERMINEDTimeScheduled` int(11) DEFAULT NULL, | ||
`MaintenanceTime` int(11) DEFAULT '0', | ||
`date_end` int(11) DEFAULT NULL, | ||
`date_start` int(11) DEFAULT NULL, | ||
KEY `log_id` (`log_id`), | ||
KEY `host_index` (`host_id`), | ||
KEY `date_end_index` (`date_end`), | ||
KEY `date_start_index` (`date_start`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</createstmt> | ||
</table> | ||
</centreon-partitioning> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<centreon-partitioning> | ||
<table name="log_archive_host" schema="centreon_storage"> | ||
<activate>1</activate> | ||
<column>date_end</column> | ||
<type>date</type> | ||
<createstmt> | ||
CREATE TABLE `log_archive_host` ( | ||
`log_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`host_id` int(11) DEFAULT NULL, | ||
`UPTimeScheduled` int(11) DEFAULT NULL, | ||
`UPnbEvent` int(11) DEFAULT NULL, | ||
`UPTimeAverageAck` int(11) NOT NULL, | ||
`UPTimeAverageRecovery` int(11) NOT NULL, | ||
`DOWNTimeScheduled` int(11) DEFAULT NULL, | ||
`DOWNnbEvent` int(11) DEFAULT NULL, | ||
`DOWNTimeAverageAck` int(11) NOT NULL, | ||
`DOWNTimeAverageRecovery` int(11) NOT NULL, | ||
`UNREACHABLETimeScheduled` int(11) DEFAULT NULL, | ||
`UNREACHABLEnbEvent` int(11) DEFAULT NULL, | ||
`UNREACHABLETimeAverageAck` int(11) NOT NULL, | ||
`UNREACHABLETimeAverageRecovery` int(11) NOT NULL, | ||
`UNDETERMINEDTimeScheduled` int(11) DEFAULT NULL, | ||
`MaintenanceTime` int(11) DEFAULT '0', | ||
`date_end` int(11) DEFAULT NULL, | ||
`date_start` int(11) DEFAULT NULL, | ||
KEY `log_id` (`log_id`), | ||
KEY `host_index` (`host_id`), | ||
KEY `date_end_index` (`date_end`), | ||
KEY `date_start_index` (`date_start`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</createstmt> | ||
</table> | ||
</centreon-partitioning> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<centreon-partitioning> | ||
<table name="log_archive_service" schema="centreon_storage"> | ||
<activate>1</activate> | ||
<column>date_end</column> | ||
<type>date</type> | ||
<createstmt> | ||
CREATE TABLE `log_archive_service` ( | ||
`log_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`host_id` int(11) NOT NULL DEFAULT '0', | ||
`service_id` int(11) NOT NULL DEFAULT '0', | ||
`OKTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`OKnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`OKTimeAverageAck` int(11) NOT NULL, | ||
`OKTimeAverageRecovery` int(11) NOT NULL, | ||
`WARNINGTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`WARNINGnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`WARNINGTimeAverageAck` int(11) NOT NULL, | ||
`WARNINGTimeAverageRecovery` int(11) NOT NULL, | ||
`UNKNOWNTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`UNKNOWNnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`UNKNOWNTimeAverageAck` int(11) NOT NULL, | ||
`UNKNOWNTimeAverageRecovery` int(11) NOT NULL, | ||
`CRITICALTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`CRITICALnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`CRITICALTimeAverageAck` int(11) NOT NULL, | ||
`CRITICALTimeAverageRecovery` int(11) NOT NULL, | ||
`UNDETERMINEDTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`MaintenanceTime` int(11) DEFAULT '0', | ||
`date_start` int(11) DEFAULT NULL, | ||
`date_end` int(11) DEFAULT NULL, | ||
KEY (`log_id`), | ||
KEY `host_index` (`host_id`), | ||
KEY `service_index` (`service_id`), | ||
KEY `date_end_index` (`date_end`), | ||
KEY `date_start_index` (`date_start`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</createstmt> | ||
</table> | ||
</centreon-partitioning> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<centreon-partitioning> | ||
<table name="log_archive_service" schema="centreon_storage"> | ||
<activate>1</activate> | ||
<column>date_end</column> | ||
<type>date</type> | ||
<createstmt> | ||
CREATE TABLE `log_archive_service` ( | ||
`log_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`host_id` int(11) NOT NULL DEFAULT '0', | ||
`service_id` int(11) NOT NULL DEFAULT '0', | ||
`OKTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`OKnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`OKTimeAverageAck` int(11) NOT NULL, | ||
`OKTimeAverageRecovery` int(11) NOT NULL, | ||
`WARNINGTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`WARNINGnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`WARNINGTimeAverageAck` int(11) NOT NULL, | ||
`WARNINGTimeAverageRecovery` int(11) NOT NULL, | ||
`UNKNOWNTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`UNKNOWNnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`UNKNOWNTimeAverageAck` int(11) NOT NULL, | ||
`UNKNOWNTimeAverageRecovery` int(11) NOT NULL, | ||
`CRITICALTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`CRITICALnbEvent` int(11) NOT NULL DEFAULT '0', | ||
`CRITICALTimeAverageAck` int(11) NOT NULL, | ||
`CRITICALTimeAverageRecovery` int(11) NOT NULL, | ||
`UNDETERMINEDTimeScheduled` int(11) NOT NULL DEFAULT '0', | ||
`MaintenanceTime` int(11) DEFAULT '0', | ||
`date_start` int(11) DEFAULT NULL, | ||
`date_end` int(11) DEFAULT NULL, | ||
KEY (`log_id`), | ||
KEY `host_index` (`host_id`), | ||
KEY `service_index` (`service_id`), | ||
KEY `date_end_index` (`date_end`), | ||
KEY `date_start_index` (`date_start`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</createstmt> | ||
</table> | ||
</centreon-partitioning> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,60 @@ | ||
========= | ||
Reporting | ||
========= | ||
|
||
********* | ||
Dashboard | ||
********* | ||
|
||
Description | ||
=========== | ||
|
||
The availability reports of monitoring objects from Centreon web interface allows | ||
to display the availability rate about hosts, hostgroup or servicegroup on a selected period. | ||
|
||
Visualization | ||
============= | ||
|
||
To access to availability reports: | ||
|
||
#. Go into the menu: **Reporting** ==> **Dashboard** | ||
#. In the left menu, click on **Host** | ||
#. Select defined host in **Host** list | ||
|
||
.. image:: /images/user/ehostdashboard.png | ||
:align: center | ||
|
||
* The **Reporting Period** allows to select a predefined period or to define it manually using **From** to **to** fields. | ||
* The **Host state** table displays the availability rates of object. | ||
* The **State Breakdowns For Host Services** table displays the availability of linked objects. | ||
* The timeline allows you to see intuitively the status of the object in short time. | ||
|
||
.. image:: /images/user/ehistoricalstatus.png | ||
:align: center | ||
|
||
Moreover, clicking on a day in the timeline, you get the report of the day: | ||
|
||
.. image:: /images/user/edayavailability.png | ||
:align: center | ||
|
||
It is also possible to view web reports: | ||
|
||
* The groups of hosts: Click on **Host Groups** in the left menu | ||
|
||
.. image:: /images/user/ehostgroupdashboard.png | ||
:align: center | ||
|
||
* The groups of services: Click on **Service Groups** in the left menu | ||
|
||
.. image:: /images/user/eservicegroupdashboard.png | ||
:align: center | ||
|
||
The |export| allows to export data into CSV file. | ||
|
||
.. note:: | ||
It is also possible to access to availability of a service by clicking on the service name in the host or servicegroup report. | ||
|
||
.. image:: /images/user/eservicedashboard.png | ||
:align: center | ||
|
||
.. |export| image:: /images/export.png | ||
========= | ||
Reporting | ||
========= | ||
|
||
********* | ||
Dashboard | ||
********* | ||
|
||
Description | ||
=========== | ||
|
||
The availability reports of monitoring objects from Centreon web interface allows | ||
to display the availability rate about hosts, hostgroup or servicegroup on a selected period. | ||
|
||
Visualization | ||
============= | ||
|
||
To access to availability reports: | ||
|
||
#. Go into the menu: **Reporting** ==> **Dashboard** | ||
#. In the left menu, click on **Host** | ||
#. Select defined host in **Host** list | ||
|
||
.. image:: /images/user/ehostdashboard.png | ||
:align: center | ||
|
||
* The **Reporting Period** allows to select a predefined period or to define it manually using **From** to **to** fields. | ||
* The **Host state** table displays the availability rates of object. | ||
* The **State Breakdowns For Host Services** table displays the availability of linked objects. | ||
* The timeline allows you to see intuitively the status of the object in short time. | ||
|
||
.. image:: /images/user/ehistoricalstatus.png | ||
:align: center | ||
|
||
Moreover, clicking on a day in the timeline, you get the report of the day: | ||
|
||
.. image:: /images/user/edayavailability.png | ||
:align: center | ||
|
||
It is also possible to view web reports: | ||
|
||
* The groups of hosts: Click on **Host Groups** in the left menu | ||
|
||
.. image:: /images/user/ehostgroupdashboard.png | ||
:align: center | ||
|
||
* The groups of services: Click on **Service Groups** in the left menu | ||
|
||
.. image:: /images/user/eservicegroupdashboard.png | ||
:align: center | ||
|
||
The |export| allows to export data into CSV file. | ||
|
||
.. note:: | ||
It is also possible to access to availability of a service by clicking on the service name in the host or servicegroup report. | ||
|
||
.. image:: /images/user/eservicedashboard.png | ||
:align: center | ||
|
||
.. |export| image:: /images/export.png |
Oops, something went wrong.