forked from tiwilliam/istatd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.cpp
287 lines (229 loc) · 6.66 KB
/
stats.cpp
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*
* Copyright 2010 William Tisäter. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. The name of the copyright holder may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL WILLIAM TISÄTER BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <vector>
#include <string.h>
#include <iostream>
#include "stats.h"
#include "system.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
using namespace std;
void Stats::update_system_stats()
{
time_t uxt;
char tmp[PATH_MAX];
unsigned int last_update_diff;
sys_info stats;
net_data net_data;
disk_data disk_data;
vector<net_info>::iterator nit;
vector<disk_info>::iterator dit;
vector<sensor_info>::iterator sit;
uxt = get_unixtime();
get_mem_data(&stats.mem);
get_cpu_data(&stats.cpu);
get_avg_data(&stats.cpu);
for (nit = nets.begin(); nit < nets.end(); nit++)
{
last_update_diff = uxt - (*nit).last_update;
// Try to probe failed devices every ten seconds
if ((*nit).active == false && last_update_diff < 10) continue;
// Save last probe time. Good for fail check interval.
(*nit).last_update = uxt;
strncpy(tmp, (*nit).device, sizeof(tmp) - 1);
tmp[sizeof(tmp) - 1] = 0;
if (get_net_data(tmp, &net_data) == -1)
{
// Only print warning if device is active
if ((*nit).active)
{
cout << "Could not get network data for '" << (*nit).device << "'. Device not found." << endl;
(*nit).active = false;
}
}
else
{
net_data.uxt = uxt;
net_data.upt = get_uptime();
(*nit).active = true;
if (!(*nit).history.size())
(*nit).history.insert((*nit).history.begin(), net_data);
if (net_data.uxt != (*nit).history.front().uxt)
(*nit).history.insert((*nit).history.begin(), net_data);
if ((*nit).history.size() > NET_HISTORY) (*nit).history.pop_back();
}
}
for (dit = disks.begin(); dit < disks.end(); dit++)
{
if ((*dit).active == false) continue;
// Update the disk information every minute
last_update_diff = uxt - (*dit).last_update;
if (last_update_diff > 60)
{
get_disk_info((*dit).device, (*dit).uuid, (*dit).label, (*dit).name);
(*dit).last_update = uxt;
}
// Get block size data from mount path
if (get_disk_data((*dit).name, &disk_data) == -1)
{
cout << "Could not get disk data for '" << (*dit).device << "'. Device not found." << endl;
(*dit).active = false;
}
else
{
disk_data.uxt = uxt;
// Insert new data and pop out old
if (!(*dit).history.size())
(*dit).history.insert((*dit).history.begin(), disk_data);
if (disk_data.uxt != (*dit).history.front().uxt)
(*dit).history.insert((*dit).history.begin(), disk_data);
if ((*dit).history.size() > DISK_HISTORY) (*dit).history.pop_back();
}
}
#ifdef HAVE_LIBSENSORS
for (sit = sensors.begin(); sit < sensors.end(); sit++)
{
if (sit->active == false) continue;
last_update_diff = uxt - sit->last_update;
if (last_update_diff >= 10)
{
get_sensor_data(sit->data.id, &sit->data);
sit->last_update = uxt;
}
}
#endif
#ifdef HAVE_QNAPTEMP
sit = sensors.begin();
if (sit < sensors.end())
{
last_update_diff = uxt - sit->last_update;
if (last_update_diff >= 10)
{
get_qnaptemp(0, &sit->data);
sit->last_update = uxt;
}
}
#endif
stats.uxt = uxt;
stats.upt = get_uptime();
if (!history.size())
history.insert(history.begin(), stats);
if (stats.uxt != history.front().uxt)
history.insert(history.begin(), stats);
if (history.size() > STAT_HISTORY) history.pop_back();
}
sys_info Stats::get_stats()
{
return history[0];
}
unsigned int Stats::get_size()
{
return history.size();
}
void Stats::add_net(const char * _iface)
{
net_info temp;
unsigned int id = 1;
if (nets.size())
{
id = nets.back().id + 1;
cout << "Warning! Only support for one network interface on client side. Will monitor the first given." << endl;
}
temp.id = id;
strncpy(temp.device, _iface, sizeof(temp.device) - 1);
temp.device[sizeof(temp.device) - 1] = 0;
temp.active = true;
nets.push_back(temp);
}
void Stats::add_disk(const char * _disk)
{
disk_info temp;
strncpy(temp.device, _disk, sizeof(temp.device) - 1);
temp.device[sizeof(temp.device) - 1] = 0;
temp.active = true;
disks.push_back(temp);
}
void Stats::add_sensor(struct sensor_data *_sensor)
{
sensor_info temp;
temp.data = (*_sensor);
temp.active = true;
if (temp.data.kind >= 0)
sensors.push_back(temp);
}
vector<sys_info> Stats::get_history(int _pos)
{
vector<sys_info> temp;
for (vector<sys_info>::iterator cur = history.end() - 1; cur >= history.begin(); --cur)
{
if (cur->upt >= _pos || _pos == -1)
{
temp.push_back((*cur));
}
}
return temp;
}
vector<net_info> Stats::get_net_history(int _pos)
{
net_info temp;
vector<net_info> templist;
for (vector<net_info>::iterator cur = nets.end() - 1; cur >= nets.begin(); --cur)
{
if ((*cur).active == true)
{
temp = *cur;
temp.history.clear();
for (vector<net_data>::iterator curhis = (*cur).history.end() - 1; curhis >= (*cur).history.begin(); --curhis)
{
if (curhis->upt > _pos || _pos == -1)
{
temp.history.push_back(*curhis);
}
}
templist.push_back(temp);
// Currently only support for one interface
break;
}
}
return templist;
}
vector<disk_info> Stats::get_disk_history()
{
return disks;
}
vector<sensor_info> Stats::get_fan_sensors()
{
return sensors;
}
vector<sensor_info> Stats::get_temp_sensors()
{
return sensors;
}