]> jfr.im git - irc/quakenet/newserv.git/blob - graphing/graphing.h
Add ping timeout diagnostic message to irc module.
[irc/quakenet/newserv.git] / graphing / graphing.h
1 #ifndef __GRAPHING_H
2 #define __GRAPHING_H
3
4 #include "../server/server.h"
5 #include "../graphing/fsample.h"
6
7 extern fsample_m *servergraphs[MAXSERVERS];
8 int servermonitored(int servernum);
9
10 #define GRAPHING_DATASETS 5
11 #define GRAPHING_RESOLUTION 5
12
13 #define PERMINUTE (60 / GRAPHING_RESOLUTION)
14 #define SAMPLES PERMINUTE * 60 * 24 * 7 * 4 * 12
15
16 #endif