diff --git a/modules/memcacheMonitor/dictionaries/memcachestat.definition.json b/modules/memcacheMonitor/dictionaries/memcachestat.definition.json
index 010e48f5b0984b58046ec925a6197bcb16a3c335..5b29d83170f32fb6977d125bc4f5c1383dc3559b 100644
--- a/modules/memcacheMonitor/dictionaries/memcachestat.definition.json
+++ b/modules/memcacheMonitor/dictionaries/memcachestat.definition.json
@@ -55,5 +55,56 @@
 	},
 	"limit_maxbytes": {
 		"en": "Total storage avail"
+	},
+	"pointer_size": {
+	    "en": "Pointer size (bits)"
+	},
+	"delete_misses": {
+	    "en": "Total DELETE commands (failed)"
+	},
+	"delete_hits": {
+	    "en": "Total DELETE commands (success)"
+	},
+	"incr_misses": {
+	    "en": "Total INCR commands (failed)"
+	},
+	"incr_hits": {
+	    "en": "Total INCR commands (success)"
+	},
+	"decr_misses": {
+	    "en": "Total DECR commands (failed)"
+	},
+	"decr_hits": {
+	    "en": "Total DECR commands (success)"
+    },
+	"cas_misses": {
+	    "en": "Total CAS commands (failed)"
+	},
+	"cas_hits": {
+	    "en": "Total CAS commands (success)"
+	},
+	"cas_badval": {
+	    "en": "Total bad CAS identifiers"
+	},
+	"auth_cmds": {
+	    "en": "Total authentication commands processed"
+	},
+	"auth_errors": {
+	    "en": "Total authentication commands failed"
+	},
+	"accepting_conns": {
+	    "en": "Currently accepting new connections"
+	},
+	"listen_disabled_num": {
+	    "en": "Total number of denied connections (connection limit)"
+	},
+	"threads": {
+	    "en": "Number of available threads"
+	},
+	"conn_yields": {
+	    "en": "Number of times the request limit was reached"
+	},
+	"evictions": {
+	    "en": "Number of objects removed from cache (memory limit)"
 	}
-}
\ No newline at end of file
+}
diff --git a/modules/memcacheMonitor/templates/memcachestat.tpl.php b/modules/memcacheMonitor/templates/memcachestat.tpl.php
index dc0a71e26eec9c102f7d46d512b32e1cf86494cf..26f1b8d1d653df57745630acd041ae7642f51c43 100644
--- a/modules/memcacheMonitor/templates/memcachestat.tpl.php
+++ b/modules/memcacheMonitor/templates/memcachestat.tpl.php
@@ -1,6 +1,6 @@
 <?php
 
-$this->data['head'] = '<style>
+$this->data['head'] = '<style type="text/css">
 	table.statustable td, table.statustable th { 
 		border: 1px solid #eee;
 		padding: 2px 6px;