|
Last change
on this file since e0705d4 was
e0705d4,
checked in by Michael Medin <michael@…>, 8 years ago
|
|
Initial release
|
-
Property mode set to
100644
|
|
File size:
641 bytes
|
| Line | |
|---|
| 1 | #pragma once |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | // PDH Check interval (Check every x second) |
|---|
| 5 | #define CHECK_INTERVAL 1 |
|---|
| 6 | |
|---|
| 7 | // PDH CPU check backlog (x minutes) |
|---|
| 8 | #define BACK_INTERVAL 2000 |
|---|
| 9 | |
|---|
| 10 | // Buffer size of incoming data (noteice this is the maximum request length!) |
|---|
| 11 | #define RECV_BUFFER_LEN 1024 |
|---|
| 12 | |
|---|
| 13 | // Commands |
|---|
| 14 | // x = Implemeneted, - unimplemented, ! unsopported |
|---|
| 15 | #define REQ_CLIENTVERSION 1 // x |
|---|
| 16 | #define REQ_CPULOAD 2 // x |
|---|
| 17 | #define REQ_UPTIME 3 // x |
|---|
| 18 | #define REQ_USEDDISKSPACE 4 // x |
|---|
| 19 | #define REQ_SERVICESTATE 5 // x |
|---|
| 20 | #define REQ_PROCSTATE 6 // - |
|---|
| 21 | #define REQ_MEMUSE 7 // x |
|---|
| 22 | #define REQ_COUNTER 8 // - |
|---|
| 23 | //#define REQ_FILEAGE 9 // ! |
|---|
| 24 | //#define REQ_INSTANCES 10 // ! |
|---|
| 25 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.