Skip to content

Instantly share code, notes, and snippets.

@ChimeraCoder
Created April 4, 2018 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChimeraCoder/4bd96253a0003769231798d0779fd4af to your computer and use it in GitHub Desktop.
Save ChimeraCoder/4bd96253a0003769231798d0779fd4af to your computer and use it in GitHub Desktop.
Basic veneur-emit example
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: veneur-emit
labels:
app: veneur-emit
spec:
minReadySeconds: 10
replicas: 1
template:
metadata:
labels:
app: veneur-emit
spec:
containers:
- name: veneur-emit
Image: index.docker.io/stripe/veneur:3.0.0
imagePullPolicy: Always
command: ["/bin/sh"]
args: ["-c", "while true; do veneur-emit -hostport udp://localhost:8126 -count 1 -name 'my.test.metric'; sleep 10; done"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment