This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"client":{ | |
"name":"host01", | |
"address":"10.2.1.11", | |
"subscriptions":[ | |
"all", | |
"env_qa", | |
"frontend", | |
"proxy", | |
"apache" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAsKGN1Y5tKAc2BX4WlKAsD9tGoeTLwFd5/EObwezcGrIhPKKrXKabY7ZCgGga4G17v/Jdifg1pjk/Qgc/9LaqobrEWLqTqoSWpMaqmyNk+3XQLIms28iJ2Y+pzDboquaC+rdcp8CBOnAtKST+aNH719sEhPhXmBXCAvjXQPLkbn8= jmiller@joe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"handlers": { | |
"default_notification_set": { | |
"type": "set", | |
"handlers": ["default", "pagerduty", "irc", "twitter", "campfire", "gelf"] | |
}, | |
"default": { | |
"type": "pipe", | |
"command": "/etc/sensu/handlers/default" | |
}, | |
"pagerduty": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./ab -n 10000 -c 30 http://localhost:3000/ | |
This is ApacheBench, Version 2.3 <$Revision: 655654 $> | |
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
Licensed to The Apache Software Foundation, http://www.apache.org/ | |
Benchmarking localhost (be patient) | |
Completed 1000 requests | |
Completed 2000 requests | |
Completed 3000 requests | |
Completed 4000 requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{panel}{toc}{panel} | |
---- | |
h2. Purpose | |
The purpose of this document is to document the procedure for installing Graphite and its components on a graphite server. | |
Reference: [http://graphite.readthedocs.org/en/latest/install.html] | |
History: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git flux up | |
Updating Feature branches: | |
OPS-000_fix_sensu_version up to date | |
OPS-000_fix_syslog_conf_drodden up to date | |
OPS-000_sensu_stash_check up to date | |
OPS-691_add_configs up to date | |
OPS-691_newsmm_changes up to date | |
OPS-712_puppet_configs up to date | |
OPS-778_fars_app up to date |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'sinatra' | |
get '/' do | |
`rpm -qa 2>&1` | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rabbitmq": { | |
"ssl": { | |
"private_key_file": "/etc/sensu/ssl/client_key.pem", | |
"cert_chain_file": "/etc/sensu/ssl/client_cert.pem" | |
}, | |
"port": 5671, | |
"host": "localhost", | |
"user": "sensu", | |
"password": "mypass", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE: original gist that this is based on is available here: https://gist.github.com/1143369 | |
require 'celluloid' | |
require 'logger' | |
require 'uuid' | |
require 'sinatra/base' | |
# This is just a simple demo of a possible Pool implementation for Celluloid | |
# The sinatra interface exists just to do some testing of crashing workers and the like |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
config.vm.box = "centos-57-x86-64" | |
# config.vm.box_url = "http://domain.com/path/to/above.box" # TODO.. | |
# config.vm.boot_mode = :gui |