-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpost.py
48 lines (43 loc) · 1.59 KB
/
post.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
39
40
41
42
43
44
45
46
47
48
# AppDynamics example HTTP POST of metric to Machine Agent HTTP listener
# Maintainer: David Ryder
#
# Reference: https://docs.appdynamics.com/display/PRO45/Standalone+Machine+Agent+HTTP+Listener
#
import os
import sys
import requests
import json
import time
from random import randint
def createMetricData():
metricData = [
{ "metricName": "Custom Metrics|APP_X|M3",
"aggregatorType": "OBSERVATION",
"value": randint(1,10) },
{ "metricName": "Custom Metrics|APP_X|M4",
"aggregatorType": "OBSERVATION",
"value": randint(1,10) },
]
return metricData
try:
machineAgent = {
"host": os.environ["APPD_MAC_AGENT_HOST"],
"port": os.environ["APPD_MAC_AGENT_PORT"],
"path": os.environ["APPD_MAC_AGENT_PATH"],
"headers": { "Content-Type": "application/json" }
}
except Exception as e:
print( "Environment variable ({}) not set ".format(e))
exit()
postCount = int( sys.argv[1] ) if len(sys.argv) > 1 else 5
postInterval = float( sys.argv[2] ) if len(sys.argv) > 2 else 15
s = requests.session()
for i in range(0,postCount):
data = createMetricData()
print( "Posting: {}".format(data))
r = requests.post("http://{}:{}{}".format(machineAgent["host"],
machineAgent["port"],
machineAgent["path"]),
data=json.dumps( data ), headers=machineAgent["headers"])
print( r )
time.sleep( postInterval )