Created
April 4, 2018 23:59
-
-
Save ChimeraCoder/4bd96253a0003769231798d0779fd4af to your computer and use it in GitHub Desktop.
Basic veneur-emit example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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