]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/index.php
bacula-web: New function get_Day_Intervals()
[bacula/bacula] / gui / bacula-web / index.php
1 <?php
2 /* 
3 +-------------------------------------------------------------------------+
4 | Copyright (C) 2004 Juan Luis Francés Jiménez                                                    |
5 | Copyright 2010-2011, Davide Franco                                              |
6 |                                                                         |
7 | This program is free software; you can redistribute it and/or           |
8 | modify it under the terms of the GNU General Public License             |
9 | as published by the Free Software Foundation; either version 2          |
10 | of the License, or (at your option) any later version.                  |
11 |                                                                         |
12 | This program is distributed in the hope that it will be useful,         |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
15 | GNU General Public License for more details.                            |
16 +-------------------------------------------------------------------------+ 
17 */
18 session_start();
19 include_once( 'config.inc.php' );
20
21 $dbSql = new Bweb();
22
23 // Stored files number 
24 $dbSql->tpl->assign('stored_files', $dbSql->GetStoredFiles( ALL ) );
25   
26 // Database size
27 $dbSql->tpl->assign('database_size', $dbSql->GetDbSize());
28
29 // Overall stored bytes
30 $result = $dbSql->GetStoredBytes( ALL );
31 $dbSql->tpl->assign('stored_bytes', CUtils::Get_Human_Size( $result['stored_bytes'] ) );
32
33 // Total stored bytes since last 24 hours
34 $result = $dbSql->GetStoredBytes( LAST_DAY );
35 $dbSql->tpl->assign('bytes_last', CUtils::Get_Human_Size( $result['stored_bytes'] ) );
36
37 // Total stored files since last 24 hours
38 $files_last = $dbSql->GetStoredFiles( LAST_DAY );
39 $dbSql->tpl->assign('files_last', $files_last );
40
41
42 // Number of clients
43 $nb_clients = $dbSql->Get_Nb_Clients();
44 $dbSql->tpl->assign('clientes_totales',$nb_clients["nb_client"] );
45
46 // Backup Job list for report.tpl and last_run_report.tpl
47 $dbSql->tpl->assign( 'jobs_list', $dbSql->Get_BackupJob_Names() );
48
49 // Last 24 hours completed jobs number
50 $dbSql->tpl->assign( 'completed_jobs', $dbSql->CountJobs( LAST_DAY, 'completed' ) );
51
52 // Last 24 hours failed jobs number
53 $dbSql->tpl->assign( 'failed_jobs', $dbSql->CountJobs( LAST_DAY, 'failed' ) );
54
55 // Last 24 hours waiting jobs number
56 $dbSql->tpl->assign( 'waiting_jobs', $dbSql->CountJobs( LAST_DAY, 'waiting' ) );
57
58 // Last 24 hours Job Levels
59 $dbSql->tpl->assign( 'incr_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'I') );
60 $dbSql->tpl->assign( 'diff_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'D') );
61 $dbSql->tpl->assign( 'full_jobs', $dbSql->CountJobsbyLevel( LAST_DAY, 'F') );
62
63 // Last 24 hours Job status graph
64 $data   = array();  
65 $status = array( 'completed', 'terminated_errors', 'failed', 'waiting', 'created', 'running', 'error' );
66
67 foreach( $status as $job_status ) {
68         array_push( $data, $dbSql->GetJobsStatistics( $job_status ) );
69 }
70
71 $graph = new CGraph( "graph.png" );
72 $graph->SetData( $data, 'pie', 'text-data-single' );
73 $graph->SetGraphSize( 400, 230 );
74
75 $graph->Render();
76 $dbSql->tpl->assign('graph_jobs', $graph->Get_Image_file() );
77 unset($graph);
78
79 // Pool and volumes graph
80 $data = array();
81 $graph = new CGraph( "graph1.png" );
82
83 $pools = $dbSql->Get_Pools_List();
84 while( $pool = $pools->fetchRow( ) ) {
85         array_push( $data, $dbSql->CountVolumesByPool( $pool['poolid']) );
86 }
87
88 $graph->SetData( $data, 'pie', 'text-data-single' );
89 $graph->SetGraphSize( 400, 230 );
90
91 $graph->Render();
92 $dbSql->tpl->assign('graph_pools', $graph->Get_Image_file() );
93
94 // Last 7 days stored Bytes graph
95 $data  = array();
96 $graph = new CGraph( "graph2.png" );
97 $days  = array();
98
99 // Get the last 7 days interval (start and end)
100 for( $c = 6 ; $c >= 0 ; $c-- ) {
101         $today = ( mktime() - ($c * LAST_DAY) );
102         array_push( $days, array( 'start' => date( "Y-m-d 00:00:00", $today ), 'end' => date( "Y-m-d 23:59:00", $today ) ) );
103 }
104
105 $days_stored_bytes = array();
106
107 foreach( $days as $day ) {
108   array_push( $days_stored_bytes, $dbSql->GetStoredBytesByInterval( $day['start'], $day['end'] ) );
109 }
110
111 $graph->SetData( $days_stored_bytes, 'bars', 'text-data' );
112 $graph->SetGraphSize( 400, 230 );
113 $graph->SetYTitle( "GB" );
114
115 $graph->Render();
116 $dbSql->tpl->assign('graph_stored_bytes', $graph->Get_Image_file() );
117
118
119 // Last 15 used volumes
120 $vol_list = array();
121
122 $query  = "SELECT DISTINCT Media.Volumename, Media.Lastwritten, Media.VolStatus, Job.JobId FROM Job ";
123 $query .= "LEFT JOIN JobMedia ON Job.JobId = JobMedia.JobId ";
124 $query .= "LEFT JOIN Media ON JobMedia.MediaId = Media.MediaId ";
125 $query .= "ORDER BY Job.JobId DESC ";
126 $query .= "LIMIT 10 ";
127
128 $result = $dbSql->db_link->query( $query );
129
130 if ( PEAR::isError( $result ) )
131         $this->TriggerDBError( 'Unable to get last used volumes from catalog' . $result );
132 else {
133         while ( $vol = $result->fetchRow() ) 
134                 array_push( $vol_list, $vol );
135 }
136 $dbSql->tpl->assign( 'volume_list', $vol_list );        
137
138 // Render template
139 $dbSql->tpl->display('index.tpl');
140 ?>