ERROR [2013-01-23 00:58:51,186] New I/O server worker #2-3 - aleph.netty - Unhandled error in Netty pipeline. java.io.IOException: Connection timed out at sun.nio.ch.FileDispatcherImpl.read0(Native Method) at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39) at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:218) at sun.nio.ch.IOUtil.read(IOUtil.java:186) at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:359) at org.jboss.netty.channel.socket.nio.NioWorker.read(NioWorker.java:315) at org.jboss.netty.channel.socket.nio.NioWorker.processSelectedKeys(NioWorker.java:274) at org.jboss.netty.channel.socket.nio.NioWorker.run(NioWorker.java:194)
require 'formula' | |
class Tsocks < Formula | |
# The original is http://tsocks.sourceforge.net/ | |
# This GitHub repo is a maintained fork with OSX support | |
homepage 'http://github.com/pc/tsocks' | |
head 'https://github.com/pc/tsocks.git' | |
depends_on 'autoconf' => :build if MacOS.xcode_version.to_f >= 4.3 |
It is generally desirable to group all the hosts for a specific service into a single dashboard view. For example, all the web servers are in single view while all the database servers are in another view.
This is usually not an issue when you are sending custom metrics using Riemann client. However, there are cases where you are using something that you do not control how the metrics are being sent. i.e., Riemann-tools.
Since Riemann-tools scripts are application agnostic, in order for the dashboard view to group hosts, we must inject some application specific information into the tags field. Tags is a collection of arbitrary strings. In the case of Riemann-tools scripts you can pass in arbitrary strings on the command line.
riemann-health --host 127.0.0.1 --tag "prod" --tag "webserver"
Currently a developer's professional profile is made up two components:
- Github
LinkedIn shows your work history, and Github shows your craft. There is a missing gap between LinkedIn and Github. Punchcard.io is designed to bridge that gap.
Host *.compute.amazonaws.com | |
IdentityFile ~/.ec2/your-key.pem | |
User root | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null |
I can't decided on the title. Maybe you can help me. 3 - 7 is courtesy of @codeslinger.
- "BigData: Data Crunch on a Budget"
- "BI in the Cloud"
- "You're using Oracle for that? Big Data and you"
- "Better Answers from More Data: Today's Business Intelligence Architecture"
- "How Did They Know That? Getting Smart Answers like Google"
$EDITOR `find . \( ! -regex '.*/\..*' \) -type f | xargs ls -rt | tail -n 1` |
# cookbook/attributes/default.rb | |
default[:foo][:bar][:size] = 42 | |
# cookbook/recipes/default.rb | |
node.foo.bar.size | |
# what will above return? |
# /etc/nginx/nginx.conf | |
log_format main '{' | |
'"remote_addr": "$remote_addr",' | |
'"remote_user": "$remote_user",' | |
'"time_local": "$time_local",' | |
'"request": "$request",' | |
'"status": "$status",' | |
'"body_bytes_sent": "$body_bytes_sent",' | |
'"http_referer": "$http_referer",' |