We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8d0cf commit c1fc36fCopy full SHA for c1fc36f
instana/custom.py
instana/data.py
instana/http.py
instana/span_data.py
@@ -0,0 +1,28 @@
1
+HTTP_CLIENT = "g.hc"
2
+HTTP_SERVER = "g.http"
3
+
4
+class Data(object):
5
+ service = None
6
+ http = None
7
+ baggage = None
8
+ custom = None
9
+ sdk = None
10
11
+ def __init__(self, **kwds):
12
+ self.__dict__.update(kwds)
13
14
+class HttpData(object):
15
+ host = None
16
+ url = None
17
+ status = 0
18
+ method = None
19
20
21
22
23
+class CustomData(object):
24
+ tags = None
25
+ logs = None
26
27
28
0 commit comments