Skip to content

Instantly share code, notes, and snippets.

View sabcio's full-sized avatar

Sebastian Wojtczak sabcio

View GitHub Profile
@sabcio
sabcio / gist:e09ba01899602e34d957
Created July 7, 2014 09:01
whisper to influxdb - using graphite-api to render graphs
#!/usr/bin/python
# based on https://github.com/damaex17/whisper-to-influxDB
# adjusted to graphite-api data format
from influxdb import InfluxDBClient
import argparse
import whisper
import os
import time
@sabcio
sabcio / app.rb
Created April 10, 2014 08:32
require 'sinatra' on jruby 1.7.11
require 'jruby/profiler'
profile_data = JRuby::Profiler.profile do
require 'sinatra'
end
profile_printer = JRuby::Profiler::GraphProfilePrinter.new(profile_data)
profile_printer.printProfile(STDOUT)