From ed0a944bb816a9ab342efe65f50386427c9e2983 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Wed, 25 Feb 2009 07:13:14 +0000
Subject: [PATCH] adding memcache stats dict and template

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1321 44740490-163a-0410-bde0-09ae8108e29a
---
 .../dictionaries/memcachestat.php             |  26 +++++
 .../templates/memcachestat.tpl.php            | 102 ++++++++++++++++++
 2 files changed, 128 insertions(+)
 create mode 100644 modules/memcacheMonitor/dictionaries/memcachestat.php
 create mode 100644 modules/memcacheMonitor/templates/memcachestat.tpl.php

diff --git a/modules/memcacheMonitor/dictionaries/memcachestat.php b/modules/memcacheMonitor/dictionaries/memcachestat.php
new file mode 100644
index 000000000..818d0f730
--- /dev/null
+++ b/modules/memcacheMonitor/dictionaries/memcachestat.php
@@ -0,0 +1,26 @@
+<?php
+
+$lang = array(
+	'pid' => array ('en' => 'Process ID'),
+	'uptime' => array ('en' => 'Uptime'),
+	'time' => array ('en' => 'Current time'),
+	'version' => array ('en' =>'Version'),
+	'rusage_user' => array ('en' =>'CPU Seconds (User)'),
+	'rusage_system' => array ('en' =>'CPU Seconds (System)'),
+	'curr_items' => array ('en' =>'Currently number of items'),
+	'total_items' => array ('en' =>'Total items ever'),	
+	'bytes' => array ('en' => 'Total bytes in use currently'),	
+	'curr_connections' => array ('en' =>'Current open connections'),	
+	'total_connections' => array('en' => 'Total connections'),
+	'connection_structures' => array ('en' =>'Connection structures'),
+	'cmd_get' => array ('en' =>'Total GET commands'),
+	'cmd_set' => array ('en' =>'Total SET commands'),	
+	'get_hits' => array ('en' =>'Total GET commands (success)'),
+	'get_misses' => array ('en' =>'Total GET commands (failed)'),
+	'bytes_read' => array ('en' =>'Bytes in to the server'),
+	'bytes_written' => array ('en' =>'Bytes written by the server'),
+	'limit_maxbytes' => array ('en' =>'Total storage avail'),
+);
+
+
+?>
\ No newline at end of file
diff --git a/modules/memcacheMonitor/templates/memcachestat.tpl.php b/modules/memcacheMonitor/templates/memcachestat.tpl.php
new file mode 100644
index 000000000..1bd523bb5
--- /dev/null
+++ b/modules/memcacheMonitor/templates/memcachestat.tpl.php
@@ -0,0 +1,102 @@
+<?php
+
+$this->data['head'] = '<style>
+	table.statustable td, table.statustable th { 
+		border: 1px solid #eee;
+		padding: 2px 6px;
+	}
+	table.statustable {
+		border-collapse: collapse;
+	}
+	.bmax {
+		border: 1px solid #555;
+		background: #eee;
+	}
+	.bused {
+		border-right: 1px solid #555;
+		border-bottom: 1px solid #555;
+		color: white;
+		background: #833;
+	}
+</style>
+';
+
+
+
+$this->includeAtTemplateBase('includes/header.php');
+
+$title = $this->data['title'];
+$table = $this->data['table'];
+
+
+/* Identify column headings. */
+$column_titles = array();
+foreach($table as $row_title => $row_data) {
+	foreach($row_data as $ct => $foo) {
+		if(!in_array($ct, $column_titles)) {
+			$column_titles[] = $ct;
+		}
+	}
+}
+
+?>
+
+<h2><?php echo htmlspecialchars($title); ?></h2>
+
+<table class="statustable">
+
+<tr>
+<th></th>
+<?php
+foreach($column_titles as $ct) {
+	echo '<th>' . htmlspecialchars($ct) . '</th>' . "\n";
+}
+?>
+</tr>
+
+<?php
+foreach($table as $row_title => $row_data) {
+	echo '<tr>' . "\n";
+	echo '<th class="rowtitle" style="text-align: right">' . $this->t('{memcacheMonitor:memcachestat:' . $row_title . '}') . '</th>' . "\n";
+#	echo '<th class="rowtitle" style="text-align: right">' . $row_title . '</th>' . "\n";
+
+	foreach($column_titles as $ct) {
+		echo '<td>';
+
+		if(array_key_exists($ct, $row_data)) {
+			echo htmlspecialchars($row_data[$ct]);
+		}
+
+		echo '</td>' . "\n";
+	}
+
+	echo '</tr>' . "\n";
+}
+?>
+
+</table>
+
+<?php
+
+
+#echo('<pre>'); print_r($this->data['statsraw']); exit;
+
+if (array_key_exists('bytes', $this->data['statsraw']) && array_key_exists('limit_maxbytes', $this->data['statsraw'])) {
+	foreach($this->data['statsraw']['bytes'] as $key => $row_data) {
+		echo ('<h3>Storage usage on [' . $key . ']</h3>');
+		$maxpix = 400;
+		$pix = floor($this->data['statsraw']['bytes'][$key]*$maxpix / $this->data['statsraw']['limit_maxbytes'][$key]);
+		
+		echo('<div class="bmax" style="width: ' .  $maxpix. 'px"><div class="bused" style="width: ' . $pix . 'px">
+		Used: ' . $table['bytes'][$key] . '
+		</div>Total available: ' . $table['limit_maxbytes'][$key] . '</div>');
+	}
+}
+
+?>
+
+
+
+<?php
+$this->includeAtTemplateBase('includes/footer.php');
+?>
\ No newline at end of file
-- 
GitLab