Skip to content

Instantly share code, notes, and snippets.

View MrDrMcCoy's full-sized avatar

Jeremy McCoy MrDrMcCoy

View GitHub Profile
@woodsaj
woodsaj / walk_tree.py
Last active December 17, 2019 08:51
Walk graphite metrics tree from specified prefix
#!/usr/bin/python
from __future__ import print_function
import requests
import json
import argparse
try:
from Queue import Queue
except: