diff --git a/Dockerfile b/Dockerfile index d45a631..28e50d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,6 +49,8 @@ expose 3000 # Carbon line receiver port expose 2003 +# Carbon UDP receiver port +expose 2003/udp # Carbon pickle receiver port expose 2004 # Carbon cache query port diff --git a/graphite/carbon.conf b/graphite/carbon.conf index 2ed7a04..a9a4517 100644 --- a/graphite/carbon.conf +++ b/graphite/carbon.conf @@ -30,6 +30,10 @@ MAX_CREATES_PER_MINUTE = inf LINE_RECEIVER_INTERFACE = 0.0.0.0 LINE_RECEIVER_PORT = 2003 +ENABLE_UDP_LISTENER = True +UDP_RECEIVER_INTERFACE = 0.0.0.0 +UDP_RECEIVER_PORT = 2003 + PICKLE_RECEIVER_INTERFACE = 0.0.0.0 PICKLE_RECEIVER_PORT = 2004