Which data we collect
Xitogent gathers data from your server and sends them in JSON format, below is a good example of one sequence of data sent by Xitogent:
{
"data":{
"description":{
"hostname":"xitoring.com",
"os":"CentOS Linux 8",
"uptime":"55 days, 5 hours, 16 minutes, 21 seconds",
"timezone":"UTC+0000",
"cpu":{
"model_name":" QEMU Virtual CPU version (cpu64-rhel6)",
"total":"4"
},
"type":"linux"
},
"statistics":{
"cpu_load_average":{
"1min":0.0,
"5min":0.04,
"15min":0.01
},
"cpu_usage":{
"cpu1":2.0,
"cpu2":0.0,
"cpu3":0.0,
"cpu4":1.0,
"average":0.75
},
"memory_usage":{
"free":70053888,
"used":828985344,
"total":1344778240,
"cache":402137088,
"buffers":43601920
},
"disk_usage":{
"/":{
"total":25297240064,
"used":7685361664
}
},
"disk_io":{
"read":0,
"write":0,
"partitions":{
"vda":{
"read":0,
"write":0
},
"vda1":{
"read":0,
"write":0
}
}
},
"network":{
"eth0":{
"sent":0,
"received":18720
}
}
},
"ips":[
"45.66.62.125"
],
"softwares":[
"sshd",
"php-fpm",
"mysqld",
"httpd",
"vsftpd",
"mysql",
"named"
],
"processes":{
"cpu_consumer":[
{
"cpu_usage":"8.5",
"pid":"2593577",
"cmd":"xitogent start"
},
{
"cpu_usage":"3.2",
"pid":"2593514",
"cmd":"sshd: root [priv]"
},
{
"cpu_usage":"2.2",
"pid":"2593576",
"cmd":"xitogent start"
},
{
"cpu_usage":"0.5",
"pid":"2593537",
"cmd":"-bash"
},
{
"cpu_usage":"0.4",
"pid":"2593521",
"cmd":"/usr/lib/systemd/systemd --user"
}
],
"memory_consumer":[
{
"memory_usage":"25.7",
"pid":"1839828",
"cmd":"/usr/libexec/mysqld --basedir=/usr"
},
{
"memory_usage":"16.0",
"pid":"1684733",
"cmd":"/usr/sbin/named -u named -c /etc/named.conf"
},
{
"memory_usage":"3.3",
"pid":"492",
"cmd":"/usr/lib/systemd/systemd-journald"
},
{
"memory_usage":"1.7",
"pid":"3999202",
"cmd":"/usr/bin/xitogent start -c /etc/xitogent/xitogent.conf"
},
{
"memory_usage":"1.6",
"pid":"2593577",
"cmd":"xitogent start"
}
]
}
},
"version":"1.0"
}
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
130
131
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
130
131
TIP
If you have integration enabled, the data will be appended to the above JSON object