Skip to content

Instantly share code, notes, and snippets.

View Signorini's full-sized avatar

Felipe Klerk Signorini Signorini

View GitHub Profile

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@Signorini
Signorini / submitCachetMetrics.py
Created July 11, 2018 14:27
Fetch a metric query JSON from DataDog and submit it to a Cachet server so it can be graphed.
#! /usr/bin/python
from datadog import initialize, api
import requests
import time
# DataDog bootstrap
options = {
'api_key': 'yourkeyhere',
'app_key': 'yourkeyhere'
}