diff options
| author | martinsj <martinsj@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-05-02 06:33:33 +0000 |
|---|---|---|
| committer | martinsj <martinsj@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-05-02 06:33:33 +0000 |
| commit | 666e0dbf5f8cf58a42855dbd33ea9eb83328d211 (patch) | |
| tree | c461ae4bef0d1734610fa27d9557ad996dab726e /frontends/php/include | |
| parent | d5dea01e509ef5f5aaa1bece2845c4aeb4d716ef (diff) | |
| download | zabbix-666e0dbf5f8cf58a42855dbd33ea9eb83328d211.tar.gz zabbix-666e0dbf5f8cf58a42855dbd33ea9eb83328d211.tar.xz zabbix-666e0dbf5f8cf58a42855dbd33ea9eb83328d211.zip | |
- added report "Most Busy Triggers Top 100" (Martins)
git-svn-id: svn://svn.zabbix.com/trunk@2791 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include')
| -rw-r--r-- | frontends/php/include/config.inc.php | 5 | ||||
| -rw-r--r-- | frontends/php/include/db.inc.php | 4 | ||||
| -rw-r--r-- | frontends/php/include/locales/en_gb.inc.php | 15 |
3 files changed, 16 insertions, 8 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php index 182e20ad..d4b1d540 100644 --- a/frontends/php/include/config.inc.php +++ b/frontends/php/include/config.inc.php @@ -1205,11 +1205,12 @@ COpt::profiling_start("page"); ), "reports"=>array( "label"=>S_REPORTS, - "pages"=>array("report1.php","report2.php","report4.php"), + "pages"=>array("report1.php","report2.php","report4.php","report5.php"), "level2"=>array( array("label"=>S_STATUS_OF_ZABBIX,"url"=>"report1.php"), array("label"=>S_AVAILABILITY_REPORT,"url"=>"report2.php"), - array("label"=>S_NOTIFICATIONS,"url"=>"report4.php") + array("label"=>S_NOTIFICATIONS,"url"=>"report4.php"), + array("label"=>S_TRIGGERS_TOP_100,"url"=>"report5.php"), ) ), "configuration"=>array( diff --git a/frontends/php/include/db.inc.php b/frontends/php/include/db.inc.php index f300906b..d1c1cf42 100644 --- a/frontends/php/include/db.inc.php +++ b/frontends/php/include/db.inc.php @@ -28,8 +28,8 @@ // $DB_DATABASE ="zabbix"; // $DB_DATABASE ="osmiy"; // $DB_DATABASE ="zabbix"; - $DB_DATABASE ="osmiy"; -// $DB_DATABASE ="demo"; +// $DB_DATABASE ="osmiy"; + $DB_DATABASE ="demo"; // $DB_DATABASE ="martinsj"; $DB_USER ="root"; $DB_PASSWORD =""; diff --git a/frontends/php/include/locales/en_gb.inc.php b/frontends/php/include/locales/en_gb.inc.php index 0e12bc89..5803eb90 100644 --- a/frontends/php/include/locales/en_gb.inc.php +++ b/frontends/php/include/locales/en_gb.inc.php @@ -668,10 +668,17 @@ "S_YEARLY"=> "Yearly", // report4.php - "S_NOTIFICATIONS"=> "Notifications", - "S_NOTIFICATIONS_BIG"=> "NOTIFICATIONS", - "S_IT_NOTIFICATIONS"=> "Notification report", - + "S_NOTIFICATIONS"=> "Notifications", + "S_NOTIFICATIONS_BIG"=> "NOTIFICATIONS", + "S_IT_NOTIFICATIONS"=> "Notification report", + +// report5.php + "S_TRIGGERS_TOP_100"=> "Most busy triggers top 100", + "S_TRIGGERS_TOP_100_BIG"=> "MOST BUSY TRIGGERS TOP 100", + "S_NUMBER_OF_STATUS_CHANGES"=> "Number of status changes", + "S_WEEK"=> "Week", + "S_LAST"=> "Last", + // screenconf.php "S_SCREENS"=> "Screens", "S_SCREEN"=> "Screen", |
