-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathemit-random-metrics.py
executable file
·38 lines (32 loc) · 1.04 KB
/
emit-random-metrics.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python2.7
import argparse
import json
import random
import subprocess
import time
# Argument parsing
parser = argparse.ArgumentParser()
parser.add_argument('-n', metavar='count', type=int, default=1)
args = parser.parse_args()
# Open the kafka console producer
producer = subprocess.Popen(
"./kafka_2.10-0.8.2.1/bin/kafka-console-producer.sh --broker-list localhost:9092 --topic metrics",
shell=True,
stdin=subprocess.PIPE
)
# Generate random query metrics
for n in xrange(0, args.n):
metric = {
'timestamp': long(time.time() * 1000),
'name': 'query/time',
'host': '192.168.' + str(random.randrange(1, 254)) + '.' + str(random.randrange(1, 254)),
'page': str(int(max(1, random.gauss(5, 4)))) + '.html',
'value': max(0, int(random.gauss(200, 80)))
}
producer.stdin.write(json.dumps(metric))
producer.stdin.write("\n")
# Close kafka console producer, wait for exit
producer.stdin.close()
producer.wait()
if producer.returncode != 0:
raise Exception("Producer exited with code: " + str(producer.returncode))