Created
December 20, 2014 19:38
-
-
Save ninowalker/365a2e20044631ece650 to your computer and use it in GitHub Desktop.
Mock Statsd
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
# Based on | |
# http://stackoverflow.com/questions/15734219/simple-python-udp-server-trouble-receiving-packets-from-clients-other-than-loca | |
import socket | |
UDP_IP = "" | |
UDP_PORT = 8125 | |
sock = socket.socket(socket.AF_INET, # Internet | |
socket.SOCK_DGRAM) # UDP | |
sock.bind((UDP_IP, UDP_PORT)) | |
while True: | |
data, addr = sock.recvfrom(1024) # buffer size is 1024 bytes | |
print "received message:", data.strip() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment