Browse Source

Simplify histograms

Only keep the 'recent' histogram and just call it the query histogram.
Ask Bjørn Hansen 11 years ago
parent
commit
669e97cf89
4 changed files with 80 additions and 101 deletions
  1. 10 15
      metrics.go
  2. 0 1
      monitor.go
  3. 1 12
      status.html
  4. 69 73
      status.html.go

+ 10 - 15
metrics.go

@@ -10,28 +10,24 @@ import (
 )
 
 type ServerMetrics struct {
-	qCounter               metrics.Meter
-	lastQueryCount         int64
-	queriesHistogram       metrics.Histogram
-	queriesHistogramRecent metrics.Histogram
-	goroutines             metrics.Gauge
+	qCounter         metrics.Meter
+	lastQueryCount   int64
+	queriesHistogram metrics.Histogram
+	goroutines       metrics.Gauge
 }
 
 func NewMetrics() *ServerMetrics {
 	m := new(ServerMetrics)
 
-	m.qCounter = metrics.NewMeter()
+	m.qCounter = metrics.GetOrRegisterMeter("queries", nil)
 	m.lastQueryCount = m.qCounter.Count()
-	metrics.Register("queries", m.qCounter)
 
-	m.queriesHistogram = metrics.NewHistogram(metrics.NewUniformSample(1800))
-	metrics.Register("queries-histogram", m.queriesHistogram)
+	m.queriesHistogram = metrics.GetOrRegisterHistogram(
+		"queries-histogram", nil,
+		metrics.NewExpDecaySample(600, 0.015),
+	)
 
-	m.queriesHistogramRecent = metrics.NewHistogram(metrics.NewExpDecaySample(600, 0.015))
-	metrics.Register("queries-histogram-recent", m.queriesHistogramRecent)
-
-	m.goroutines = metrics.NewGauge()
-	metrics.Register("goroutines", m.goroutines)
+	m.goroutines = metrics.GetOrRegisterGauge("goroutines", nil)
 
 	return m
 }
@@ -54,7 +50,6 @@ func (m *ServerMetrics) Updater() {
 		m.lastQueryCount = current
 
 		m.queriesHistogram.Update(newQueries)
-		m.queriesHistogramRecent.Update(newQueries)
 
 		m.goroutines.Update(int64(runtime.NumGoroutine()))
 	}

+ 0 - 1
monitor.go

@@ -329,7 +329,6 @@ func StatusServer(zones Zones) func(http.ResponseWriter, *http.Request) {
 		status.Global.Queries = metrics.Get("queries").(*metrics.StandardMeter)
 
 		setupHistogramData(metrics.Get("queries-histogram").(*metrics.StandardHistogram), &status.Global.Histogram)
-		setupHistogramData(metrics.Get("queries-histogram-recent").(*metrics.StandardHistogram), &status.Global.HistogramRecent)
 
 		err = tmpl.Execute(w, status)
 		if err != nil {

+ 1 - 12
status.html

@@ -45,7 +45,7 @@
 			</tr>
 
 			<tr>
-				<td>Since start</td>
+				<td>Global queries</td>
 				<td>{{printf "%d"   .Global.Histogram.Min}}</td>
 				<td>{{printf "%.2f" .Global.Histogram.Mean}}</td>
 				<td>{{printf "%.2f" .Global.Histogram.Pct90 }}</td>
@@ -55,17 +55,6 @@
 				<td>{{printf "%.2f" .Global.Histogram.StdDev }}</td>
 			</tr>
 
-			<tr>
-				<td>Recent</td>
-				<td>{{printf "%d"   .Global.HistogramRecent.Min}}</td>
-				<td>{{printf "%.2f" .Global.HistogramRecent.Mean}}</td>
-				<td>{{printf "%.2f" .Global.HistogramRecent.Pct90 }}</td>
-				<td>{{printf "%.2f" .Global.HistogramRecent.Pct99 }}</td>
-				<td>{{printf "%.2f" .Global.HistogramRecent.Pct999 }}</td>
-				<td>{{printf "%d"   .Global.HistogramRecent.Max}}</td>
-				<td>{{printf "%.2f" .Global.HistogramRecent.StdDev }}</td>
-			</tr>
-
 		</table>
 
 	</div>

+ 69 - 73
status.html.go

@@ -11,78 +11,74 @@ import (
 // status_html returns raw, uncompressed file data.
 func status_html() []byte {
 	gz, err := gzip.NewReader(bytes.NewBuffer([]byte{
-		0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0xb4, 0x57,
-		0x41, 0x73, 0xf2, 0x36, 0x10, 0x3d, 0xc3, 0xaf, 0xd0, 0x78, 0xfa, 0xdd,
-		0x1a, 0x39, 0xa4, 0x61, 0xa6, 0xa4, 0xc6, 0x97, 0x24, 0x93, 0x1e, 0x4a,
-		0x9a, 0x84, 0xb6, 0x87, 0xde, 0x84, 0xb5, 0x60, 0x4d, 0x8d, 0xc4, 0x48,
-		0x22, 0x24, 0x65, 0xf8, 0xef, 0x95, 0x64, 0xcb, 0xd8, 0xc6, 0x50, 0xf0,
-		0x37, 0xb9, 0xc4, 0xf2, 0xb3, 0xde, 0x4a, 0x6f, 0xdf, 0x46, 0x2b, 0xa2,
-		0x54, 0x2f, 0xb3, 0x38, 0x4a, 0x81, 0xd0, 0x38, 0xd2, 0x4c, 0x67, 0x10,
-		0x3f, 0x81, 0x78, 0x78, 0x9e, 0xa2, 0xed, 0x16, 0xe1, 0xbf, 0x40, 0x2a,
-		0x26, 0x38, 0xda, 0xed, 0xa2, 0x30, 0xff, 0xd8, 0x8f, 0x32, 0xc6, 0xff,
-		0x41, 0xa9, 0x84, 0xf9, 0x38, 0x08, 0x43, 0x0e, 0x9a, 0x72, 0x82, 0x67,
-		0x42, 0x68, 0xa5, 0x25, 0x59, 0x25, 0x94, 0xe3, 0x44, 0x2c, 0x43, 0xbd,
-		0x61, 0x5a, 0x83, 0xbc, 0x2a, 0x3f, 0x84, 0x37, 0xf8, 0x27, 0x3c, 0x08,
-		0x13, 0xa5, 0xc2, 0x12, 0xbb, 0x32, 0x33, 0x67, 0x8c, 0x03, 0xc5, 0x4b,
-		0x66, 0x68, 0x4a, 0x05, 0x48, 0x42, 0x36, 0x0e, 0x94, 0xfe, 0xcc, 0x40,
-		0xa5, 0x00, 0x3a, 0x38, 0x77, 0x3d, 0x07, 0x6c, 0x88, 0x4e, 0x52, 0xbf,
-		0x10, 0xc8, 0x75, 0x06, 0x84, 0xef, 0x57, 0x3b, 0xb9, 0x88, 0x7b, 0x8b,
-		0xfb, 0x3d, 0x4d, 0xf1, 0xbf, 0x82, 0x03, 0x27, 0x4b, 0xf8, 0xd1, 0x8c,
-		0x6d, 0x5a, 0x40, 0xa2, 0x2d, 0x9a, 0x0b, 0xae, 0xaf, 0x36, 0xc0, 0x16,
-		0xa9, 0xbe, 0x43, 0x33, 0x91, 0xd1, 0x5f, 0xd0, 0xae, 0x1f, 0x85, 0x05,
-		0x2d, 0x9a, 0x09, 0xfa, 0x19, 0xf7, 0xfb, 0x11, 0x65, 0xef, 0x28, 0xc9,
-		0x88, 0x52, 0xe3, 0x20, 0x31, 0x0c, 0x62, 0xc4, 0xc9, 0xc0, 0x7e, 0x48,
-		0x07, 0xf1, 0x53, 0x26, 0x66, 0x24, 0x8b, 0x42, 0x33, 0xac, 0xcf, 0x94,
-		0x62, 0x63, 0xe7, 0xf4, 0xaa, 0x98, 0x5a, 0x11, 0xfe, 0xb3, 0x43, 0x7b,
-		0x91, 0x26, 0xb3, 0x0c, 0xfc, 0x87, 0xfc, 0xc5, 0xfd, 0x35, 0xc9, 0x95,
-		0x66, 0x77, 0x40, 0x8b, 0x57, 0xb3, 0x22, 0x05, 0xae, 0x80, 0x1a, 0x5e,
-		0xcf, 0xf2, 0xa4, 0x7b, 0x9a, 0x01, 0xf5, 0x6c, 0xc6, 0xe7, 0x02, 0xe5,
-		0xa2, 0x82, 0x62, 0x43, 0x48, 0x69, 0xa2, 0x95, 0xb1, 0x97, 0x96, 0xb3,
-		0xe3, 0x01, 0x32, 0xb9, 0xaa, 0x43, 0xc3, 0x43, 0x68, 0xd0, 0x82, 0x4d,
-		0x4c, 0xca, 0x4b, 0xc4, 0x0c, 0xa4, 0x93, 0x50, 0xdb, 0x4b, 0xfc, 0xba,
-		0x06, 0xc9, 0xa0, 0xb1, 0xe4, 0x76, 0xbb, 0x92, 0x8c, 0xeb, 0x39, 0x0a,
-		0xbe, 0xe1, 0x9b, 0x79, 0x80, 0x70, 0xbe, 0x3b, 0x5c, 0x4c, 0xc6, 0x6f,
-		0x44, 0xc3, 0xc0, 0x95, 0xe1, 0x85, 0xa4, 0x61, 0x17, 0xd2, 0xa0, 0x13,
-		0xcb, 0x8a, 0xaf, 0xf0, 0x72, 0xf9, 0xee, 0x69, 0xfd, 0xf9, 0x5a, 0x33,
-		0x7f, 0x65, 0x4a, 0x8b, 0x85, 0x24, 0xcb, 0x46, 0x5e, 0x27, 0x27, 0x1d,
-		0x72, 0xc8, 0xe8, 0xfa, 0x5b, 0x03, 0x18, 0x1d, 0x00, 0xb8, 0x09, 0x4d,
-		0xc8, 0x47, 0x1d, 0x98, 0x6a, 0xfa, 0x00, 0xef, 0xff, 0xe7, 0xfd, 0x94,
-		0xf1, 0x04, 0x6c, 0xc9, 0x49, 0x7d, 0x34, 0xbf, 0x34, 0x40, 0xa8, 0xcc,
-		0x6f, 0xa9, 0x0b, 0x1b, 0x25, 0xe7, 0x9a, 0x52, 0x21, 0xd5, 0x2d, 0x39,
-		0x93, 0xf5, 0x92, 0xe8, 0xd1, 0x35, 0xea, 0xc6, 0x1b, 0x75, 0xe5, 0x9d,
-		0x24, 0x1e, 0xcb, 0x09, 0xf9, 0xb8, 0x7c, 0xb5, 0xdc, 0x29, 0x74, 0x50,
-		0xa9, 0x07, 0x66, 0xbd, 0x41, 0x02, 0xfc, 0x52, 0x9f, 0x72, 0x52, 0x27,
-		0xb7, 0x3c, 0xb5, 0x8b, 0x67, 0x05, 0xb7, 0xa3, 0x73, 0x15, 0x76, 0x07,
-		0xff, 0xaa, 0xec, 0x0e, 0x2e, 0x7a, 0xd9, 0x1d, 0xbc, 0x2c, 0xa8, 0x27,
-		0x1c, 0xad, 0x1c, 0x3e, 0x51, 0x68, 0x1a, 0x4c, 0x5b, 0xa3, 0xb9, 0xfd,
-		0xae, 0x46, 0xe3, 0x4b, 0xa6, 0x72, 0x32, 0xf9, 0x43, 0xe9, 0xcf, 0x95,
-		0x66, 0x4b, 0xd8, 0x6f, 0xca, 0x49, 0xc2, 0x39, 0x8a, 0x1f, 0xc8, 0xe7,
-		0x54, 0x1b, 0x79, 0x8b, 0xfd, 0xb6, 0xcb, 0x13, 0xf3, 0x78, 0xc8, 0x97,
-		0x8c, 0xe8, 0xb9, 0x90, 0xcb, 0x66, 0x50, 0x8f, 0xb7, 0x04, 0x3b, 0xcc,
-		0x40, 0xf9, 0x34, 0xbd, 0xf8, 0x6f, 0xd3, 0xee, 0x55, 0xde, 0x95, 0x3b,
-		0x25, 0xc0, 0xed, 0x35, 0xd2, 0x69, 0x6c, 0xd6, 0x49, 0xf3, 0x91, 0x6b,
-		0x9f, 0x6b, 0x0d, 0x7b, 0x64, 0x58, 0x20, 0xaa, 0x32, 0xa9, 0x05, 0xb3,
-		0x95, 0x8f, 0x5e, 0x5f, 0xa6, 0x05, 0x92, 0x7b, 0x68, 0xee, 0x61, 0x3f,
-		0x68, 0xb1, 0xfa, 0xdd, 0x64, 0xcd, 0xdc, 0xc4, 0xee, 0xc6, 0x08, 0xff,
-		0xe1, 0xdf, 0x76, 0x3b, 0xfb, 0x59, 0x12, 0xbe, 0x00, 0x53, 0x57, 0x4e,
-		0x09, 0xb2, 0x98, 0x4d, 0x60, 0xb5, 0x4b, 0x14, 0x3e, 0x99, 0x64, 0x8a,
-		0xcc, 0x1a, 0x3e, 0x1e, 0xfa, 0xaf, 0xfe, 0xb2, 0x13, 0xd8, 0x1c, 0x3e,
-		0x9b, 0x41, 0x99, 0x3f, 0x5f, 0x41, 0x91, 0xb7, 0xe4, 0xa0, 0x71, 0xb7,
-		0x56, 0xe8, 0x04, 0x8c, 0xa7, 0x89, 0x3a, 0xd6, 0xb7, 0xcf, 0xe6, 0x0c,
-		0x3b, 0x70, 0x06, 0x5d, 0x48, 0xb5, 0xd3, 0xa6, 0x45, 0xf4, 0xa3, 0xbd,
-		0x0b, 0x5f, 0xa2, 0xfc, 0x91, 0x72, 0xd5, 0x45, 0x7d, 0x93, 0x77, 0xae,
-		0x98, 0x83, 0xf5, 0xba, 0x12, 0x5b, 0x33, 0x61, 0xab, 0x2f, 0x11, 0x6b,
-		0xae, 0x95, 0x2b, 0x3d, 0xcf, 0xfd, 0x8d, 0xcc, 0x20, 0x9b, 0xda, 0x9b,
-		0xa3, 0xad, 0xc6, 0xfb, 0x7c, 0x42, 0xa5, 0x4c, 0x5d, 0x15, 0x1a, 0x2e,
-		0x9b, 0x97, 0x74, 0x03, 0xf5, 0x5a, 0x0b, 0xb3, 0x5e, 0x99, 0xb1, 0x0b,
-		0xad, 0x9a, 0xff, 0xc5, 0xbe, 0xcc, 0x6b, 0xd1, 0x1a, 0xd7, 0xa2, 0x22,
-		0xc4, 0xad, 0xad, 0x65, 0x17, 0xa5, 0x50, 0x53, 0x1c, 0x11, 0x6e, 0x97,
-		0x2d, 0xf7, 0xb3, 0xed, 0x16, 0x38, 0xb5, 0xf1, 0xfc, 0xa0, 0x50, 0x9d,
-		0x31, 0x68, 0xca, 0xbe, 0x77, 0xd8, 0xb9, 0xba, 0x8b, 0x00, 0xe7, 0x0a,
-		0xcf, 0x83, 0x9f, 0x50, 0x5e, 0x8d, 0xf7, 0x55, 0xd2, 0xfb, 0xe5, 0x68,
-		0x7f, 0x6e, 0xee, 0x8f, 0xcd, 0xfc, 0x77, 0x8e, 0x39, 0x2d, 0xed, 0x8f,
-		0xc6, 0xfe, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x91, 0x22, 0x37, 0x07,
-		0x3c, 0x0e, 0x00, 0x00,
+0x1f,0x8b,0x08,0x00,0x00,0x09,0x6e,0x88,0x00,0xff,0xb4,0x57,
+0x4d,0x53,0xeb,0x36,0x14,0x5d,0x27,0xbf,0x42,0xe3,0x29,0xbb,
+0x22,0x13,0x4a,0x66,0x1a,0xea,0x78,0x03,0x0c,0x5d,0x34,0x14,
+0x9a,0xb6,0x8b,0xb7,0x53,0xac,0x9b,0xd8,0xf3,0x1c,0x29,0x4f,
+0x52,0x08,0xbc,0x4c,0xfe,0xfb,0xbb,0x92,0x3f,0x62,0x3b,0x26,
+0x04,0xbf,0x61,0x83,0xe5,0x23,0x9d,0x2b,0x9d,0x7b,0x4f,0xae,
+0x4c,0x10,0x9b,0x65,0x1a,0x06,0x31,0x30,0x1e,0x06,0x26,0x31,
+0x29,0x84,0xf7,0x20,0x6f,0x1f,0xa6,0x64,0xbb,0x25,0xf4,0x7f,
+0x50,0x3a,0x91,0x82,0xec,0x76,0x81,0x9f,0x4d,0xf6,0x83,0x34,
+0x11,0x5f,0x49,0xac,0x60,0x3e,0xf6,0x7c,0x5f,0x80,0xe1,0x82,
+0xd1,0x99,0x94,0x46,0x1b,0xc5,0x56,0x11,0x17,0x34,0x92,0x4b,
+0xdf,0x6c,0x12,0x63,0x40,0x9d,0x97,0x13,0xfe,0x25,0xfd,0x8d,
+0x0e,0xfc,0x48,0x6b,0xbf,0xc4,0xce,0x71,0xe5,0x2c,0x11,0xc0,
+0xe9,0x32,0x41,0x9a,0xd6,0x1e,0x51,0x90,0x8e,0x3d,0x6d,0x5e,
+0x53,0xd0,0x31,0x80,0xf1,0x4e,0xdd,0xcf,0x01,0x1b,0x66,0xa2,
+0xb8,0xd8,0x08,0xd4,0x3a,0x05,0x26,0xf6,0xbb,0x1d,0xdd,0xc4,
+0xbd,0x85,0xfd,0x9e,0xe1,0xf4,0xbb,0x14,0x20,0xd8,0x12,0x7e,
+0xc5,0xb1,0x4d,0x0b,0x28,0xb2,0x25,0x73,0x29,0xcc,0xf9,0x06,
+0x92,0x45,0x6c,0xae,0xc9,0x4c,0xa6,0xfc,0x0f,0xb2,0xeb,0x07,
+0x7e,0x4e,0x0b,0x66,0x92,0xbf,0x86,0xfd,0x7e,0xc0,0x93,0x67,
+0x12,0xa5,0x4c,0xeb,0xb1,0x17,0x21,0x83,0xa1,0x38,0xe5,0xd9,
+0x89,0x78,0x10,0xde,0xa7,0x72,0xc6,0xd2,0xc0,0xc7,0x61,0x7d,
+0xa5,0x92,0x1b,0xbb,0xa6,0x57,0xc5,0xf4,0x8a,0x89,0xdf,0x1d,
+0xda,0x0b,0x0c,0x9b,0xa5,0x50,0x4c,0x64,0x2f,0xee,0x2f,0x26,
+0x57,0xe1,0xe9,0x80,0xe7,0xaf,0xb8,0x23,0x07,0xa1,0x81,0x23,
+0xaf,0x67,0x79,0xca,0x3d,0x71,0xc0,0x0b,0x76,0x22,0xe6,0x92,
+0x64,0xa2,0xbc,0xfc,0x40,0x44,0x1b,0x66,0x34,0x96,0x97,0x97,
+0xab,0xc3,0x01,0xc1,0x5c,0xd5,0xa1,0xe1,0x21,0x34,0x68,0xc1,
+0x26,0x98,0xf2,0x12,0xc1,0x81,0x72,0x12,0x6a,0x67,0x09,0x9f,
+0xd6,0xa0,0x12,0x68,0x6c,0xb9,0xdd,0xae,0x54,0x22,0xcc,0x9c,
+0x78,0x67,0xf4,0x72,0xee,0x11,0x9a,0x9d,0x8e,0xe6,0x8b,0xe9,
+0x3f,0xcc,0xc0,0xc0,0xd9,0xf0,0x83,0xa4,0x61,0x17,0xd2,0xa0,
+0x13,0xcb,0x8a,0xaf,0xf0,0x32,0xf9,0xee,0x69,0xeb,0xf3,0xb9,
+0xc5,0xfc,0x33,0xd1,0x46,0x2e,0x14,0x5b,0x36,0xf2,0x3a,0x39,
+0x5a,0x21,0x87,0x8c,0x2e,0xce,0x1a,0xc0,0xe8,0x00,0xa0,0x4d,
+0x68,0xc2,0x5e,0xea,0xc0,0xd4,0xf0,0x5b,0x78,0x7e,0xaf,0xf6,
+0xb9,0xe7,0xbe,0xbd,0x63,0x01,0xee,0x11,0x52,0xa6,0xb8,0x94,
+0x46,0x51,0xcc,0xa9,0x75,0xa9,0x90,0xea,0x55,0x39,0x91,0xf5,
+0x18,0x99,0xd1,0x05,0xe9,0xc6,0x1b,0x75,0xe5,0x1d,0x25,0xbe,
+0x95,0x13,0xf6,0xf2,0xf1,0xdd,0xb2,0x62,0x91,0x03,0xb3,0xd6,
+0xdd,0x1a,0xf8,0xd8,0x91,0xda,0x3a,0xd3,0xd5,0x4f,0x75,0xa6,
+0xc2,0x10,0x15,0x2b,0x17,0x2e,0xfe,0x6f,0x65,0x92,0x25,0xec,
+0x0f,0xe5,0xc4,0xd0,0x0c,0xa5,0xb7,0xec,0x75,0x6a,0x50,0xd8,
+0x62,0x7f,0xec,0xf2,0x27,0xf6,0x76,0xc8,0xc7,0x94,0x99,0xb9,
+0x54,0xcb,0x66,0xd0,0x02,0x6f,0x09,0x76,0x98,0x81,0xf2,0x89,
+0xcd,0xfb,0x0b,0xde,0x0f,0x3a,0x6b,0xe3,0x9d,0x12,0xe0,0xce,
+0x1a,0x98,0x38,0xc4,0x7d,0xe2,0x6c,0xe4,0xfa,0xed,0xda,0xc0,
+0x1e,0x19,0xe6,0x88,0xae,0x2c,0x6a,0xc1,0xac,0xb7,0xc9,0xd3,
+0xe3,0x34,0x47,0xb2,0x1a,0xe2,0xc5,0xfd,0x8b,0x91,0xab,0xbf,
+0x31,0x6b,0x78,0x75,0x5f,0x8f,0x09,0xfd,0xb7,0x78,0xdb,0xed,
+0xec,0xb4,0x62,0x62,0x01,0xe8,0x25,0xa7,0x84,0x58,0xcc,0x26,
+0xb0,0xda,0x56,0xf2,0x3a,0x61,0x32,0x65,0x6a,0x0b,0x3e,0x1e,
+0x16,0xb3,0xc5,0xed,0xe8,0xd9,0x1c,0x3e,0xe0,0xa0,0xcc,0x5f,
+0xe1,0xa0,0xa0,0x28,0xc9,0x41,0xa7,0x6f,0xf5,0xe6,0x04,0xb0,
+0xa6,0x91,0x7e,0xab,0xd1,0x9f,0xcc,0x19,0x76,0xe0,0x0c,0xba,
+0x90,0x6a,0xfd,0xa4,0x45,0xf4,0x9d,0xfd,0x78,0xfa,0x88,0xf2,
+0x3b,0x2e,0x74,0x17,0xf5,0x4d,0xde,0xa9,0x62,0x0e,0xf6,0xeb,
+0x4a,0x6c,0xcd,0x84,0x75,0x5f,0x24,0xd7,0xc2,0x68,0x67,0xbd,
+0x82,0xfb,0x17,0x9b,0x41,0x3a,0xb5,0x9f,0x1a,0xd6,0x8d,0x37,
+0xd9,0x82,0x8a,0x4d,0x9d,0x0b,0x91,0x9b,0xcc,0x4b,0x3a,0x42,
+0xbd,0x56,0x63,0xd6,0x9d,0x19,0xba,0xd0,0xba,0xf9,0x2b,0x2e,
+0x6c,0x5e,0x8b,0xd6,0xb8,0x47,0xf3,0x10,0x57,0xd6,0xcb,0x2e,
+0x4a,0xae,0x26,0x6f,0x11,0xee,0x94,0x2d,0x17,0xfa,0x76,0x0b,
+0x82,0xdb,0x78,0xc5,0x20,0x57,0x9d,0x26,0xd0,0x94,0x7d,0xe3,
+0xb0,0x53,0x75,0xe7,0x01,0x4e,0x15,0x9e,0x05,0x3f,0xa2,0xbc,
+0x1a,0xef,0xb3,0xa4,0xf7,0xcb,0xd1,0xbe,0x6f,0xee,0xdb,0x66,
+0xf6,0x61,0x8c,0xdd,0xd2,0xfe,0x97,0xd1,0xff,0x11,0x00,0x00,
+0xff,0xff,0xb0,0x9d,0x52,0xc9,0x6d,0x0c,0x00,0x00,
 	}))
 
 	if err != nil {
@@ -94,4 +90,4 @@ func status_html() []byte {
 	gz.Close()
 
 	return b.Bytes()
-}
+}