]> jfr.im git - irc/quakenet/newserv.git/blame - graphing/graphing.h
rename function, drop user level, drop unused int from struct
[irc/quakenet/newserv.git] / graphing / graphing.h
CommitLineData
8186335d
CP
1#ifndef __GRAPHING_H
2#define __GRAPHING_H
3
4#include "../server/server.h"
5#include "../graphing/fsample.h"
6
7extern fsample_m *servergraphs[MAXSERVERS];
8int 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