Skip to content

Instantly share code, notes, and snippets.

2014/02/27 14:50:54 missing unit separator
2014/02/27 14:50:54 missing call(s) to *pipeline.MockPluginHelper.PipelineConfig()
2014/02/27 14:50:54 missing call(s) to *pipeline.MockInputRunner.InChan()
2014/02/27 14:50:54 missing call(s) to *pipeline.MockInputRunner.Inject(is equal to &{[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
...
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] severity:7 0xc210087400 false 1 0 0xc210060fc0})
2014/02/27 14:50:54 missing call(s) to *pipeline.MockInputRunner.Ticker()
2014/02/27 14:50:54 aborting test due to missing call(s)
/***** BEGIN LICENSE BLOCK *****
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# The Initial Developer of the Original Code is the Mozilla Foundation.
# Portions created by the Initial Developer are Copyright (C) 2013
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):

Keybase proof

I hereby claim:

  • I am dctrwatson on github.
  • I am wizputer (https://keybase.io/wizputer) on keybase.
  • I have a public key whose fingerprint is 42D9 E586 CF3A 9C83 385E 270E C558 DE36 65CB 8897

To claim this, I am signing this object:

(8) 600GB 15K SAS RAID10
2gb x 128 w/ 8 threads rndwr (16K block - 16K block - 64K stripe)
Operations performed: 0 Read, 677711 Write, 844039 Other = 1521750 Total
Read 0b Written 10.341Gb Total transferred 10.341Gb (35.296Mb/sec)
2258.94 Requests/sec executed
2gb x 128 w/ 8 threads rndrw (16K block - 16K block - 64K stripe)
Operations performed: 821564 Read, 547710 Write, 1740204 Other = 3109478 Total
Read 12.536Gb Written 8.3574Gb Total transferred 20.893Gb (71.316Mb/sec)
@dctrwatson
dctrwatson / gist:948644
Created April 29, 2011 17:14
MySQL HAProxy replication check using mk-heartbeat
We couldn’t find that file to show.
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAgEArPcTGfenZSWmsDMe7Nm8+OXS8lFlB8SpZ3iW1BulONiWV+4lXTLSoPyeSJlD8XgJRs7iHYCvDarq81qutF9ZqTtrLzy1cXJY4fL3Zl2xGay1MVniJ8z8WZBVKHUQiLj5uYAzLXxhX68mQz85P8ZMwsQrJdK67OTPtP0grYhrzxBzhIAKsnN3b9sFJwLQcb3CUxavt5+e9CvnmlB5kPYbVhPL1Ny+fQhOkBYm35cINb5aJjKVZ6vWJozOJVTE6HsxCWLISb3bk+31sL1ljSNViKTYfX3PubQcfE63mKBK6OAiEGFnXXd9R0XEc4Oe7sVNPg0J0tb7/r4rjLEHK6LO/ilsIQpB2dtyBRP8A4w15V5snfxj+GUym+rOQGek/m4pchafQi5JkRmkHzeKIcs3ovY5HGwdC3k2ORjcJbkv6424f/Jlxof9XRaTKYP99sFUJ8sMOPs8MR1OcQfjCS56pK8oNLKOYDBef6HX+C6SQ4f1/oIhiYIQi34/p2CBo7ZyvpbJ/GMz9zRV0JSRARfoE7ZcMhzmumWx9SDWCJdpz40u4Un6fdZADeeemtFAMFCRekxkyQjGcgrXgLbbkLq2/nX93CGWpJl8/5fRQcJcjo6Hf8axdfxmxnLpSsqlJZZ+1bimYkLqw3FDWg5Yp9gmDPAKxFHAI2QL/Sjaq9vcWOs=
@dctrwatson
dctrwatson / format
Created November 11, 2011 07:43
Flatten uniform depth nested dicts
";" between domains
":" between domain and queues
"|" between queues
"?" between queue names and metrics
"," between metrics
@dctrwatson
dctrwatson / settings.json
Created February 13, 2012 20:20
multiple ElasticSearch analyzers
{
"settings": {
"analysis": {
"analyzer": {
"uax_url": {
"type": "custom",
"tokenizer": "uax_url_email",
"filter": ["standard", "lowercase", "stop"]
},
"uax_url_strip_html": {
@dctrwatson
dctrwatson / setup.py
Created August 11, 2012 06:50
Detect pip in setup.py
try:
using_pip = replacement_run
except NameError:
try:
import numpy
@dctrwatson
dctrwatson / info.pp
Created February 13, 2013 22:47
Has to be better way of gathering all names of a certain defined resources in Puppet
class info {
define iota() {}
Info::Iota<| |>
$info_template = '<% scope.compiler.catalog.vertices.each do |resource| -%>
<%- if resource.type == "Info::Iota" -%><%= resource.name %>,<% end -%>
<%- end -%>'
$all_iotas = unique(sort(split(chop(inline_template($info_template)),',')))