This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
struct.go
129 lines (124 loc) · 4.67 KB
/
struct.go
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package main
import ("gopkg.in/mgo.v2/bson")
// Metadata Structure
type Metadata struct {
Process struct {
Ppid int `bson:"ppid" json:"ppid"`
Pid int `bson:"pid" json:"pid"`
Argv []string `bson:"argv" json:"argv"`
Title interface{} `bson:"title" json:"title"`
} `bson:"process" json:"process"`
System struct {
Platform string `bson:"platform" json:"platform"`
Hostname string `bson:"hostname" json:"hostname"`
Architecture string `bson:"architecture" json:"architecture"`
} `bson:"system" json:"system"`
Service struct {
Name string `bson:"name" json:"name"`
Language struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"language" json:"language"`
Agent struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"agent" json:"agent"`
Environment interface{} `bson:"environment" json:"environment"`
Framework struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"framework" json:"framework"`
Version string `bson:"version" json:"version"`
Runtime struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"runtime" json:"runtime"`
} `bson:"service" json:"service"`
}
// Transaction Structure
type Transaction struct {
TraceID string `bson:"trace_id" json:"trace_id"`
Result string `bson:"result" json:"result"`
Sampled bool `bson:"sampled" json:"sampled"`
Name string `bson:"name" json:"name"`
Context struct {
Request struct {
Body string `bson:"body" json:"body"`
Cookies interface{} `bson:"cookies" json:"cookies"`
Socket struct {
Encrypted bool `bson:"encrypted" json:"encrypted"`
RemoteAddress string `bson:"remote_address" json:"remote_address"`
} `bson:"socket" json:"socket"`
URL struct {
Pathname string `bson:"pathname" json:"pathname"`
Full string `bson:"full" json:"full"`
Protocol string `bson:"protocol" json:"protocol"`
Hostname string `bson:"hostname" json:"hostname"`
Port string `bson:"port" json:"port"`
} `bson:"url" json:"url"`
Headers interface{} `bson:"headers" json:"headers"`
Env struct {
SERVERNAME string `bson:"SERVER_NAME" json:"SERVER_NAME"`
SERVERPORT string `bson:"SERVER_PORT" json:"SERVER_PORT"`
REMOTEADDR string `bson:"REMOTE_ADDR" json:"REMOTE_ADDR"`
} `bson:"env" json:"env"`
Method string `bson:"method" json:"method"`
} `bson:"request" json:"request"`
Response struct {
StatusCode int `bson:"status_code" json:"status_code"`
Headers interface{} `bson:"headers" json:"headers"`
} `bson:"response" json:"response"`
Tags struct {
} `bson:"tags" json:"tags"`
} `bson:"context" json:"context"`
Duration float64 `bson:"duration" json:"duration"`
Timestamp int64 `bson:"timestamp" json:"timestamp"`
Types string `bson:"type" json:"type"`
ID string `bson:"id" json:"id"`
SpanCount struct {
Started int `bson:"started" json:"started"`
Dropped int `bson:"dropped" json:"dropped"`
} `bson:"span_count" json:"span_count"`
}
// Data Access Object to manage database operations
type ApmDAO struct {
Server string
Database string
}
// MongoObject Structure
type MongoObject struct {
ID bson.ObjectId `bson:"_id" json:"_id"`
TraceID string `bson:"trace_id" json:"trace_id"`
Timestamp int64 `bson:"timestamp" json:"timestamp"`
Sampled bool `bson:"sampled" json:"sampled"`
Result string `bson:"result" json:"result"`
Metadata struct {
Service struct {
Name string `bson:"name" json:"name"`
} `bson:"service" json:"service"`
Version string `bson:"version" json:"version"`
Language struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"language" json:"language"`
Agent struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"agent" json:"agent"`
Framework struct {
Version string `bson:"version" json:"version"`
Name string `bson:"name" json:"name"`
} `bson:"framework" json:"framework"`
} `bson:"metadata" json:"metadata"`
Request struct {
URL string `bson:"url" json:"url"`
Body string `bson:"body" json:"body"`
Headers interface{} `bson:"headers" json:"headers"`
Method string `bson:"method" json:"method"`
} `bson:"request" json:"request"`
Response struct {
StatusCode int `bson:"status_code" json:"status_code"`
Headers interface{} `bson:"headers" json:"headers"`
} `bson:"response" json:"response"`
Duration float64 `bson:"duration" json:"duration"`
}