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
| production: | |
| adapter: mysql2 | |
| database: {{DB_NAME}} | |
| host: {{DB_HOST}} | |
| username: {{DB_USER}} | |
| password: {{DB_PASS}} | |
| pool: {{DB_POOL}} |
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
| # modules/atlassian/manifests/gitfix.pp | |
| class atlassian::gitfix inherits git::packages { | |
| Package['git'] { ensure => absent } | |
| } |
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
| postgresql-9:$ cat Dockerfile | |
| # postgresql 9 on centos 6.5 | |
| # | |
| # docker build -t 'your/pg' <thisfile> | |
| # | |
| # then run with: | |
| # docker run -P -d your/pg | |
| # tweakables are the 'ENV' lines further down | |
| # (if they were higher up they'd blow the cache) |
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
| # build image with: | |
| # | |
| # docker build -t 'your/redis' <directory holding this file> | |
| # | |
| # run with: | |
| # docker run -P -name redis1 -d your/redis | |
| FROM base | |
| MAINTAINER Dick Davies <[email protected]> |
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
| # build up an openjdk stack on centos 6 to run riemann rpm | |
| # | |
| # docker build -t 'your/riemann' <thisfile> | |
| # | |
| # then run with: | |
| # docker run -P -d your/riemann | |
| FROM saltstack/centos-6-minimal | |
| MAINTAINER Dick Davies <[email protected]> |
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
| (let [host "0.0.0.0"] | |
| (tcp-server :host host) | |
| (udp-server :host host) | |
| (ws-server :host host)) |
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
| # get required build bits | |
| yum install -y jdk jruby nodejs rpm-build | |
| # setup jruby (add /opt/jruby/bin to your path) | |
| jgem install fpm | |
| # checkout statsd |
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
| (let [host "0.0.0.0"] | |
| (tcp-server :host host) | |
| (udp-server :host host) | |
| (ws-server :host host)) | |
| ; keep data for 5 minutes, just throw into index | |
| (let [index (default :ttl 300 (update-index (index))) | |
| graph (graphite {:host "graphite.cf.ac.uk" | |
| :protocol :udp | |
| :pool-size 10})] |
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 "logstash/inputs/base" | |
| require "logstash/namespace" | |
| # Read snmp trap messages as events | |
| # | |
| # Resulting @message looks like : | |
| # #<SNMP::SNMPv1_Trap:0x6f1a7a4 @varbind_list=[#<SNMP::VarBind:0x2d7bcd8f @value="teststring", | |
| # @name=[1.11.12.13.14.15]>], @timestamp=#<SNMP::TimeTicks:0x1af47e9d @value=55>, @generic_trap=6, | |
| # @enterprise=[1.2.3.4.5.6], @source_ip="127.0.0.1", @agent_addr=#<SNMP::IpAddress:0x29a4833e @value="\xC0\xC1\xC2\xC3">, | |
| # @specific_trap=99> |
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 "logstash/outputs/base" | |
| require "logstash/namespace" | |
| # Push events to a RabbitMQ exchange using the (JRuby-only) hot_bunnies library. | |
| # | |
| # This has been tested with hot_bunnies 1.5.0. | |
| # find links to both here: | |
| # | |
| # * RabbitMQ - <http://www.rabbitmq.com/> | |
| # * Hot Bunnies - <https://github.com/ruby-amqp/hot_bunnies> |