Skip to content

Instantly share code, notes, and snippets.

View mlafeldt's full-sized avatar

Mathias Lafeldt mlafeldt

View GitHub Profile
@mlafeldt
mlafeldt / x.md
Last active July 4, 2016 09:05
How to sign Git commits using GPG under OSX
wget https://apt.dockerproject.org/repo/pool/main/d/docker-engine/docker-engine_1.11.1-0~trusty_amd64.deb
sudo dpkg -i docker-engine_1.11.1-0~trusty_amd64.deb
sudo apt-get -y -f install
@mlafeldt
mlafeldt / x.md
Last active May 29, 2016 13:23
Nomad Resilience Testing with Vagrant
@mlafeldt
mlafeldt / Rakefile
Last active April 6, 2016 12:22
Rake task I use for starting a new article for Production Ready
require "stringex"
desc "Create a new letter"
task :new_letter, :title do |t, args|
title = args[:title] || "New Letter"
num = File::basename(Dir['letters/*'].last)[0,3].to_i + 1
filename = "letters/%03d-%s.md" % [num, title.to_url]
date = Time.now.strftime("%Y-%m-%d")
puts "==> Creating new letter: #{filename}"
@mlafeldt
mlafeldt / x.md
Created February 16, 2016 15:48
Providing a Homebrew tap backed by private GitHub repo

First of all, install Homebrew itself.

As the tap is a private Git repo, you need to generate a GitHub token with repo scope and then add this token to your ~/.netrc file like this:

machine github.com
  login <your GitHub user>
  password <your GitHub token>
- name: "Build and push Docker images"
sudo: yes
command: "java -jar /opt/jenkins/jenkins-cli.jar -s http://127.0.0.1:8080 build {{ item }} -f"
args:
creates: "/var/lib/jenkins/jobs/{{ item }}/workspace"
with_items:
- CLI
- Deployer
- Foo
- Bar
@mlafeldt
mlafeldt / x.md
Last active October 30, 2019 00:13
Semantic monitoring, from Building Microservices

Service metrics

I would strongly suggest having your services expose basic metrics themselves. At a bare minimum, for a web service you should probably expose metrics like response times and error rates—vital if your server isn’t fronted by a web server that is doing this for you. But you should really go further. For example, our accounts service may want to expose the number of times customers view their past orders, or your web shop might want to capture how much money has been made during the last day.

Semantic Monitoring

We can try to work out if a service is healthy by, for example, deciding what a good CPU level is, or what makes for an acceptable response time. If our monitoring system detects that the actual values fall outside this safe level, we can trigger an alert— something that a tool like Nagios is more than capable of.

However, in many ways, these values are one step removed from what we actually want to track—namely, is the system working? The more complex the interactions

@mlafeldt
mlafeldt / vault.go
Created December 2, 2015 15:43
Talk to Vault using GitHub auth backend
package main
import (
"log"
"os"
"github.com/hashicorp/vault/api"
"github.com/hashicorp/vault/builtin/credential/github"
)
@mlafeldt
mlafeldt / Rakefile
Last active April 20, 2018 16:06
The Rake tasks I use to manage my blog
require 'stringex'
POSTS_DIR = '_posts'
BUILD_DIR = '_site'
DEPLOY_DIR = '_deploy'
DEPLOY_BRANCH = 'master'
def git(*args)
sh 'git', *args
end
$ docker images quay.io/mlafeldt/chef-runner
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
quay.io/mlafeldt/chef-runner rpm b524faf0fe69 42 hours ago 830.3 MB
quay.io/mlafeldt/chef-runner deb d26c1d8dc51c 42 hours ago 622.9 MB
$ docker push quay.io/mlafeldt/chef-runner
The push refers to a repository [quay.io/mlafeldt/chef-runner] (len: 2)
Sending image list
Pushing repository quay.io/mlafeldt/chef-runner (2 tags)
Image 511136ea3c5a already pushed, skipping