Commit | Line | Data |
---|---|---|
cbcaf8c8 | 1 | /* |
7ac71e60 | 2 | ** NetXMS - Network Management System |
d02f6b92 | 3 | ** Copyright (C) 2003-2013 Victor Kirhenshtein |
cbcaf8c8 VK |
4 | ** |
5 | ** This program is free software; you can redistribute it and/or modify | |
68f384ea VK |
6 | ** it under the terms of the GNU Lesser General Public License as published by |
7 | ** the Free Software Foundation; either version 3 of the License, or | |
cbcaf8c8 VK |
8 | ** (at your option) any later version. |
9 | ** | |
10 | ** This program is distributed in the hope that it will be useful, | |
11 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | ** GNU General Public License for more details. | |
14 | ** | |
68f384ea | 15 | ** You should have received a copy of the GNU Lesser General Public License |
cbcaf8c8 VK |
16 | ** along with this program; if not, write to the Free Software |
17 | ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | ** | |
456d5d1c | 19 | ** File: nms_agent.h |
cbcaf8c8 VK |
20 | ** |
21 | **/ | |
22 | ||
23 | #ifndef _nms_agent_h_ | |
24 | #define _nms_agent_h_ | |
25 | ||
adc00755 | 26 | #include <nms_common.h> |
64584976 | 27 | #include <nms_util.h> |
e6c91aac | 28 | #include <nxconfig.h> |
6827d635 | 29 | |
acc04d96 VK |
30 | /** |
31 | * Initialization function declaration macro | |
32 | */ | |
a0a945fb | 33 | #if defined(_STATIC_AGENT) || defined(_NETWARE) |
e6c91aac | 34 | #define DECLARE_SUBAGENT_ENTRY_POINT(name) extern "C" BOOL NxSubAgentRegister_##name(NETXMS_SUBAGENT_INFO **ppInfo, Config *config) |
a0a945fb | 35 | #else |
b5138dfb | 36 | #ifdef _WIN32 |
a0a945fb | 37 | #define DECLSPEC_EXPORT __declspec(dllexport) __cdecl |
b5138dfb VK |
38 | #else |
39 | #define DECLSPEC_EXPORT | |
40 | #endif | |
e6c91aac | 41 | #define DECLARE_SUBAGENT_ENTRY_POINT(name) extern "C" BOOL DECLSPEC_EXPORT NxSubAgentRegister(NETXMS_SUBAGENT_INFO **ppInfo, Config *config) |
b5138dfb VK |
42 | #endif |
43 | ||
86c126f5 VK |
44 | /** |
45 | * Constants | |
46 | */ | |
cbcaf8c8 | 47 | #define AGENT_LISTEN_PORT 4700 |
deaa4491 | 48 | #define AGENT_PROTOCOL_VERSION 2 |
cbcaf8c8 | 49 | #define MAX_RESULT_LENGTH 256 |
e22f1644 VK |
50 | #define MAX_CMD_LEN 256 |
51 | #define COMMAND_TIMEOUT 60 | |
47e0446b | 52 | #define MAX_SUBAGENT_NAME 64 |
86c126f5 | 53 | #define MAX_INSTANCE_COLUMNS 8 |
cbcaf8c8 | 54 | |
d02f6b92 VK |
55 | /** |
56 | * Agent policy types | |
57 | */ | |
6ca3b41c | 58 | #define AGENT_POLICY_CONFIG 1 |
f47c176c | 59 | #define AGENT_POLICY_LOG_PARSER 2 |
6ca3b41c | 60 | |
d02f6b92 VK |
61 | /** |
62 | * Error codes | |
63 | */ | |
deaa4491 VK |
64 | #define ERR_SUCCESS ((DWORD)0) |
65 | #define ERR_UNKNOWN_COMMAND ((DWORD)400) | |
66 | #define ERR_AUTH_REQUIRED ((DWORD)401) | |
d096bcdd | 67 | #define ERR_ACCESS_DENIED ((DWORD)403) |
deaa4491 VK |
68 | #define ERR_UNKNOWN_PARAMETER ((DWORD)404) |
69 | #define ERR_REQUEST_TIMEOUT ((DWORD)408) | |
70 | #define ERR_AUTH_FAILED ((DWORD)440) | |
71 | #define ERR_ALREADY_AUTHENTICATED ((DWORD)441) | |
72 | #define ERR_AUTH_NOT_REQUIRED ((DWORD)442) | |
73 | #define ERR_INTERNAL_ERROR ((DWORD)500) | |
74 | #define ERR_NOT_IMPLEMENTED ((DWORD)501) | |
75 | #define ERR_OUT_OF_RESOURCES ((DWORD)503) | |
76 | #define ERR_NOT_CONNECTED ((DWORD)900) | |
77 | #define ERR_CONNECTION_BROKEN ((DWORD)901) | |
1a17feb0 | 78 | #define ERR_BAD_RESPONSE ((DWORD)902) |
d096bcdd VK |
79 | #define ERR_IO_FAILURE ((DWORD)903) |
80 | #define ERR_RESOURCE_BUSY ((DWORD)904) | |
e925a5fc | 81 | #define ERR_EXEC_FAILED ((DWORD)905) |
e44ac467 VK |
82 | #define ERR_ENCRYPTION_REQUIRED ((DWORD)906) |
83 | #define ERR_NO_CIPHERS ((DWORD)907) | |
84 | #define ERR_INVALID_PUBLIC_KEY ((DWORD)908) | |
85 | #define ERR_INVALID_SESSION_KEY ((DWORD)909) | |
1ba3c17a | 86 | #define ERR_CONNECT_FAILED ((DWORD)910) |
78e570e6 | 87 | #define ERR_MALFORMED_COMMAND ((DWORD)911) |
f1448d17 | 88 | #define ERR_SOCKET_ERROR ((DWORD)912) |
dbca7ed1 | 89 | #define ERR_BAD_ARGUMENTS ((DWORD)913) |
5405ce0b | 90 | #define ERR_SUBAGENT_LOAD_FAILED ((DWORD)914) |
deb10d32 VK |
91 | #define ERR_FILE_OPEN_ERROR ((DWORD)915) |
92 | #define ERR_FILE_STAT_FAILED ((DWORD)916) | |
93 | #define ERR_MEM_ALLOC_FAILED ((DWORD)917) | |
94 | #define ERR_FILE_DELETE_FAILED ((DWORD)918) | |
cbcaf8c8 | 95 | |
d02f6b92 VK |
96 | /** |
97 | * Parameter handler return codes | |
98 | */ | |
cbcaf8c8 VK |
99 | #define SYSINFO_RC_SUCCESS 0 |
100 | #define SYSINFO_RC_UNSUPPORTED 1 | |
101 | #define SYSINFO_RC_ERROR 2 | |
102 | ||
d02f6b92 VK |
103 | /** |
104 | * WinPerf features | |
105 | */ | |
106 | #define WINPERF_AUTOMATIC_SAMPLE_COUNT ((DWORD)0x00000001) | |
107 | #define WINPERF_REMOTE_COUNTER_CONFIG ((DWORD)0x00000002) | |
cbcaf8c8 | 108 | |
d02f6b92 VK |
109 | /** |
110 | * Descriptions for common parameters | |
111 | */ | |
bf3b7f79 VK |
112 | #define DCIDESC_FS_AVAIL _T("Available space on file system {instance}") |
113 | #define DCIDESC_FS_AVAILPERC _T("Percentage of available space on file system {instance}") | |
114 | #define DCIDESC_FS_FREE _T("Free space on file system {instance}") | |
115 | #define DCIDESC_FS_FREEPERC _T("Percentage of free space on file system {instance}") | |
116 | #define DCIDESC_FS_TOTAL _T("Total space on file system {instance}") | |
117 | #define DCIDESC_FS_USED _T("Used space on file system {instance}") | |
118 | #define DCIDESC_FS_USEDPERC _T("Percentage of used space on file system {instance}") | |
119 | #define DCIDESC_NET_INTERFACE_ADMINSTATUS _T("Administrative status of interface {instance}") | |
120 | #define DCIDESC_NET_INTERFACE_BYTESIN _T("Number of input bytes on interface {instance}") | |
121 | #define DCIDESC_NET_INTERFACE_BYTESOUT _T("Number of output bytes on interface {instance}") | |
122 | #define DCIDESC_NET_INTERFACE_DESCRIPTION _T("Description of interface {instance}") | |
123 | #define DCIDESC_NET_INTERFACE_INERRORS _T("Number of input errors on interface {instance}") | |
124 | #define DCIDESC_NET_INTERFACE_LINK _T("Link status for interface {instance}") | |
125 | #define DCIDESC_NET_INTERFACE_MTU _T("MTU for interface {instance}") | |
126 | #define DCIDESC_NET_INTERFACE_OPERSTATUS _T("Operational status of interface {instance}") | |
127 | #define DCIDESC_NET_INTERFACE_OUTERRORS _T("Number of output errors on interface {instance}") | |
128 | #define DCIDESC_NET_INTERFACE_PACKETSIN _T("Number of input packets on interface {instance}") | |
129 | #define DCIDESC_NET_INTERFACE_PACKETSOUT _T("Number of output packets on interface {instance}") | |
130 | #define DCIDESC_NET_INTERFACE_SPEED _T("Speed of interface {instance}") | |
131 | #define DCIDESC_NET_IP_FORWARDING _T("IP forwarding status") | |
132 | #define DCIDESC_NET_IP6_FORWARDING _T("IPv6 forwarding status") | |
133 | #define DCIDESC_PHYSICALDISK_FIRMWARE _T("Firmware version of hard disk {instance}") | |
134 | #define DCIDESC_PHYSICALDISK_MODEL _T("Model of hard disk {instance}") | |
135 | #define DCIDESC_PHYSICALDISK_SERIALNUMBER _T("Serial number of hard disk {instance}") | |
136 | #define DCIDESC_PHYSICALDISK_SMARTATTR _T("") | |
137 | #define DCIDESC_PHYSICALDISK_SMARTSTATUS _T("Status of hard disk {instance} reported by SMART") | |
138 | #define DCIDESC_PHYSICALDISK_TEMPERATURE _T("Temperature of hard disk {instance}") | |
139 | #define DCIDESC_SYSTEM_CPU_COUNT _T("Number of CPU in the system") | |
140 | #define DCIDESC_SYSTEM_HOSTNAME _T("Host name") | |
141 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_FREE _T("Free physical memory") | |
142 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_FREE_PCT _T("Percentage of free physical memory") | |
143 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_TOTAL _T("Total amount of physical memory") | |
144 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_USED _T("Used physical memory") | |
145 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_USED_PCT _T("Percentage of used physical memory") | |
146 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_AVAILABLE _T("Available physical memory") | |
147 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_AVAILABLE_PCT _T("Percentage of available physical memory") | |
03a48429 VK |
148 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_ACTIVE _T("Active virtual memory") |
149 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_ACTIVE_PCT _T("Percentage of active virtual memory") | |
bf3b7f79 VK |
150 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_FREE _T("Free virtual memory") |
151 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_FREE_PCT _T("Percentage of free virtual memory") | |
152 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_TOTAL _T("Total amount of virtual memory") | |
153 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_USED _T("Used virtual memory") | |
154 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_USED_PCT _T("Percentage of used virtual memory") | |
155 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_AVAILABLE _T("Available virtual memory") | |
156 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_AVAILABLE_PCT _T("Percentage of available virtual memory") | |
157 | #define DCIDESC_SYSTEM_MEMORY_SWAP_FREE _T("Free swap space") | |
158 | #define DCIDESC_SYSTEM_MEMORY_SWAP_FREE_PCT _T("Percentage of free swap space") | |
159 | #define DCIDESC_SYSTEM_MEMORY_SWAP_TOTAL _T("Total amount of swap space") | |
160 | #define DCIDESC_SYSTEM_MEMORY_SWAP_USED _T("Used swap space") | |
161 | #define DCIDESC_SYSTEM_MEMORY_SWAP_USED_PCT _T("Percentage of used swap space") | |
162 | #define DCIDESC_SYSTEM_UNAME _T("System uname") | |
163 | #define DCIDESC_AGENT_ACCEPTEDCONNECTIONS _T("Number of connections accepted by agent") | |
164 | #define DCIDESC_AGENT_ACCEPTERRORS _T("Number of accept() call errors") | |
165 | #define DCIDESC_AGENT_ACTIVECONNECTIONS _T("Number of active connections to agent") | |
166 | #define DCIDESC_AGENT_AUTHENTICATIONFAILURES _T("Number of authentication failures") | |
167 | #define DCIDESC_AGENT_CONFIG_SERVER _T("Configuration server address set on agent startup") | |
168 | #define DCIDESC_AGENT_FAILEDREQUESTS _T("Number of failed requests to agent") | |
169 | #define DCIDESC_AGENT_GENERATED_TRAPS _T("Number of traps generated by agent") | |
05db3127 | 170 | #define DCIDESC_AGENT_IS_SUBAGENT_LOADED _T("Check if given subagent is loaded") |
bf3b7f79 VK |
171 | #define DCIDESC_AGENT_LAST_TRAP_TIME _T("Timestamp of last generated trap") |
172 | #define DCIDESC_AGENT_PROCESSEDREQUESTS _T("Number of requests processed by agent") | |
173 | #define DCIDESC_AGENT_REGISTRAR _T("Registrar server address set on agent startup") | |
174 | #define DCIDESC_AGENT_REJECTEDCONNECTIONS _T("Number of connections rejected by agent") | |
175 | #define DCIDESC_AGENT_SENT_TRAPS _T("Number of traps successfully sent to server") | |
05db3127 | 176 | #define DCIDESC_AGENT_SOURCEPACKAGESUPPORT _T("Check if source packages are supported") |
bf3b7f79 VK |
177 | #define DCIDESC_AGENT_SUPPORTEDCIPHERS _T("List of ciphers supported by agent") |
178 | #define DCIDESC_AGENT_TIMEDOUTREQUESTS _T("Number of timed out requests to agent") | |
179 | #define DCIDESC_AGENT_UNSUPPORTEDREQUESTS _T("Number of requests for unsupported parameters") | |
180 | #define DCIDESC_AGENT_UPTIME _T("Agent's uptime") | |
181 | #define DCIDESC_AGENT_VERSION _T("Agent's version") | |
182 | #define DCIDESC_FILE_COUNT _T("Number of files {instance}") | |
183 | #define DCIDESC_FILE_HASH_CRC32 _T("CRC32 checksum of {instance}") | |
184 | #define DCIDESC_FILE_HASH_MD5 _T("MD5 hash of {instance}") | |
185 | #define DCIDESC_FILE_HASH_SHA1 _T("SHA1 hash of {instance}") | |
186 | #define DCIDESC_FILE_SIZE _T("Size of file {instance}") | |
187 | #define DCIDESC_FILE_TIME_ACCESS _T("Time of last access to file {instance}") | |
188 | #define DCIDESC_FILE_TIME_CHANGE _T("Time of last status change of file {instance}") | |
189 | #define DCIDESC_FILE_TIME_MODIFY _T("Time of last modification of file {instance}") | |
8ce7501b | 190 | #define DCIDESC_SYSTEM_CURRENTTIME _T("Current system time") |
bf3b7f79 VK |
191 | #define DCIDESC_SYSTEM_PLATFORMNAME _T("Platform name") |
192 | #define DCIDESC_PROCESS_COUNT _T("Number of {instance} processes") | |
193 | #define DCIDESC_PROCESS_COUNTEX _T("Number of {instance} processes (extended)") | |
194 | #define DCIDESC_PROCESS_CPUTIME _T("Total execution time for process {instance}") | |
195 | #define DCIDESC_PROCESS_GDIOBJ _T("GDI objects used by process {instance}") | |
196 | #define DCIDESC_PROCESS_IO_OTHERB _T("") | |
197 | #define DCIDESC_PROCESS_IO_OTHEROP _T("") | |
198 | #define DCIDESC_PROCESS_IO_READB _T("") | |
199 | #define DCIDESC_PROCESS_IO_READOP _T("") | |
200 | #define DCIDESC_PROCESS_IO_WRITEB _T("") | |
201 | #define DCIDESC_PROCESS_IO_WRITEOP _T("") | |
202 | #define DCIDESC_PROCESS_KERNELTIME _T("Total execution time in kernel mode for process {instance}") | |
203 | #define DCIDESC_PROCESS_PAGEFAULTS _T("Page faults for process {instance}") | |
204 | #define DCIDESC_PROCESS_SYSCALLS _T("Number of system calls made by process {instance}") | |
205 | #define DCIDESC_PROCESS_THREADS _T("Number of threads in process {instance}") | |
206 | #define DCIDESC_PROCESS_USEROBJ _T("USER objects used by process {instance}") | |
207 | #define DCIDESC_PROCESS_USERTIME _T("Total execution time in user mode for process {instance}") | |
208 | #define DCIDESC_PROCESS_VMSIZE _T("Virtual memory used by process {instance}") | |
209 | #define DCIDESC_PROCESS_WKSET _T("Physical memory used by process {instance}") | |
210 | #define DCIDESC_SYSTEM_APPADDRESSSPACE _T("Address space available to applications (MB)") | |
211 | #define DCIDESC_SYSTEM_CONNECTEDUSERS _T("Number of logged in users") | |
212 | #define DCIDESC_SYSTEM_PROCESSCOUNT _T("Total number of processes") | |
213 | #define DCIDESC_SYSTEM_SERVICESTATE _T("State of {instance} service") | |
214 | #define DCIDESC_SYSTEM_PROCESSCOUNT _T("Total number of processes") | |
215 | #define DCIDESC_SYSTEM_THREADCOUNT _T("Total number of threads") | |
216 | #define DCIDESC_PDH_COUNTERVALUE _T("Value of PDH counter {instance}") | |
217 | #define DCIDESC_PDH_VERSION _T("Version of PDH.DLL") | |
218 | #define DCIDESC_SYSTEM_UPTIME _T("System uptime") | |
219 | #define DCIDESC_SYSTEM_CPU_LOADAVG _T("Average CPU load for last minute") | |
220 | #define DCIDESC_SYSTEM_CPU_LOADAVG5 _T("Average CPU load for last 5 minutes") | |
221 | #define DCIDESC_SYSTEM_CPU_LOADAVG15 _T("Average CPU load for last 15 minutes") | |
222 | ||
223 | ||
224 | #define DCIDESC_SYSTEM_CPU_USAGE_EX _T("Average CPU {instance} utilization for last minute") | |
225 | #define DCIDESC_SYSTEM_CPU_USAGE5_EX _T("Average CPU {instance} utilization for last 5 minutes") | |
226 | #define DCIDESC_SYSTEM_CPU_USAGE15_EX _T("Average CPU {instance} utilization for last 15 minutes") | |
227 | #define DCIDESC_SYSTEM_CPU_USAGE _T("Average CPU utilization for last minute") | |
228 | #define DCIDESC_SYSTEM_CPU_USAGE5 _T("Average CPU utilization for last 5 minutes") | |
229 | #define DCIDESC_SYSTEM_CPU_USAGE15 _T("Average CPU utilization for last 15 minutes") | |
230 | ||
231 | #define DCIDESC_SYSTEM_CPU_USAGE_USER_EX _T("Average CPU {instance} utilization (user) for last minute") | |
232 | #define DCIDESC_SYSTEM_CPU_USAGE5_USER_EX _T("Average CPU {instance} utilization (user) for last 5 minutes") | |
233 | #define DCIDESC_SYSTEM_CPU_USAGE15_USER_EX _T("Average CPU {instance} utilization (user) for last 15 minutes") | |
234 | #define DCIDESC_SYSTEM_CPU_USAGE_USER _T("Average CPU utilization (user) for last minute") | |
235 | #define DCIDESC_SYSTEM_CPU_USAGE5_USER _T("Average CPU utilization (user) for last 5 minutes") | |
236 | #define DCIDESC_SYSTEM_CPU_USAGE15_USER _T("Average CPU utilization (user) for last 15 minutes") | |
237 | ||
238 | #define DCIDESC_SYSTEM_CPU_USAGE_NICE_EX _T("Average CPU {instance} utilization (nice) for last minute") | |
239 | #define DCIDESC_SYSTEM_CPU_USAGE5_NICE_EX _T("Average CPU {instance} utilization (nice) for last 5 minutes") | |
240 | #define DCIDESC_SYSTEM_CPU_USAGE15_NICE_EX _T("Average CPU {instance} utilization (nice) for last 15 minutes") | |
241 | #define DCIDESC_SYSTEM_CPU_USAGE_NICE _T("Average CPU utilization (nice) for last minute") | |
242 | #define DCIDESC_SYSTEM_CPU_USAGE5_NICE _T("Average CPU utilization (nice) for last 5 minutes") | |
243 | #define DCIDESC_SYSTEM_CPU_USAGE15_NICE _T("Average CPU utilization (nice) for last 15 minutes") | |
244 | ||
245 | #define DCIDESC_SYSTEM_CPU_USAGE_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last minute") | |
246 | #define DCIDESC_SYSTEM_CPU_USAGE5_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last 5 minutes") | |
247 | #define DCIDESC_SYSTEM_CPU_USAGE15_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last 15 minutes") | |
248 | #define DCIDESC_SYSTEM_CPU_USAGE_SYSTEM _T("Average CPU utilization (system) for last minute") | |
249 | #define DCIDESC_SYSTEM_CPU_USAGE5_SYSTEM _T("Average CPU utilization (system) for last 5 minutes") | |
250 | #define DCIDESC_SYSTEM_CPU_USAGE15_SYSTEM _T("Average CPU utilization (system) for last 15 minutes") | |
251 | ||
252 | #define DCIDESC_SYSTEM_CPU_USAGE_IDLE_EX _T("Average CPU {instance} utilization (idle) for last minute") | |
253 | #define DCIDESC_SYSTEM_CPU_USAGE5_IDLE_EX _T("Average CPU {instance} utilization (idle) for last 5 minutes") | |
254 | #define DCIDESC_SYSTEM_CPU_USAGE15_IDLE_EX _T("Average CPU {instance} utilization (idle) for last 15 minutes") | |
255 | #define DCIDESC_SYSTEM_CPU_USAGE_IDLE _T("Average CPU utilization (idle) for last minute") | |
256 | #define DCIDESC_SYSTEM_CPU_USAGE5_IDLE _T("Average CPU utilization (idle) for last 5 minutes") | |
257 | #define DCIDESC_SYSTEM_CPU_USAGE15_IDLE _T("Average CPU utilization (idle) for last 15 minutes") | |
258 | ||
259 | #define DCIDESC_SYSTEM_CPU_USAGE_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last minute") | |
260 | #define DCIDESC_SYSTEM_CPU_USAGE5_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last 5 minutes") | |
261 | #define DCIDESC_SYSTEM_CPU_USAGE15_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last 15 minutes") | |
262 | #define DCIDESC_SYSTEM_CPU_USAGE_IOWAIT _T("Average CPU utilization (iowait) for last minute") | |
263 | #define DCIDESC_SYSTEM_CPU_USAGE5_IOWAIT _T("Average CPU utilization (iowait) for last 5 minutes") | |
264 | #define DCIDESC_SYSTEM_CPU_USAGE15_IOWAIT _T("Average CPU utilization (iowait) for last 15 minutes") | |
265 | ||
266 | #define DCIDESC_SYSTEM_CPU_USAGE_IRQ_EX _T("Average CPU {instance} utilization (irq) for last minute") | |
267 | #define DCIDESC_SYSTEM_CPU_USAGE5_IRQ_EX _T("Average CPU {instance} utilization (irq) for last 5 minutes") | |
268 | #define DCIDESC_SYSTEM_CPU_USAGE15_IRQ_EX _T("Average CPU {instance} utilization (irq) for last 15 minutes") | |
269 | #define DCIDESC_SYSTEM_CPU_USAGE_IRQ _T("Average CPU utilization (irq) for last minute") | |
270 | #define DCIDESC_SYSTEM_CPU_USAGE5_IRQ _T("Average CPU utilization (irq) for last 5 minutes") | |
271 | #define DCIDESC_SYSTEM_CPU_USAGE15_IRQ _T("Average CPU utilization (irq) for last 15 minutes") | |
272 | ||
273 | #define DCIDESC_SYSTEM_CPU_USAGE_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last minute") | |
274 | #define DCIDESC_SYSTEM_CPU_USAGE5_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last 5 minutes") | |
275 | #define DCIDESC_SYSTEM_CPU_USAGE15_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last 15 minutes") | |
276 | #define DCIDESC_SYSTEM_CPU_USAGE_SOFTIRQ _T("Average CPU utilization (softirq) for last minute") | |
277 | #define DCIDESC_SYSTEM_CPU_USAGE5_SOFTIRQ _T("Average CPU utilization (softirq) for last 5 minutes") | |
278 | #define DCIDESC_SYSTEM_CPU_USAGE15_SOFTIRQ _T("Average CPU utilization (softirq) for last 15 minutes") | |
279 | ||
280 | #define DCIDESC_SYSTEM_CPU_USAGE_STEAL_EX _T("Average CPU {instance} utilization (steal) for last minute") | |
281 | #define DCIDESC_SYSTEM_CPU_USAGE5_STEAL_EX _T("Average CPU {instance} utilization (steal) for last 5 minutes") | |
282 | #define DCIDESC_SYSTEM_CPU_USAGE15_STEAL_EX _T("Average CPU {instance} utilization (steal) for last 15 minutes") | |
283 | #define DCIDESC_SYSTEM_CPU_USAGE_STEAL _T("Average CPU utilization (steal) for last minute") | |
284 | #define DCIDESC_SYSTEM_CPU_USAGE5_STEAL _T("Average CPU utilization (steal) for last 5 minutes") | |
285 | #define DCIDESC_SYSTEM_CPU_USAGE15_STEAL _T("Average CPU utilization (steal) for last 15 minutes") | |
286 | ||
287 | #define DCIDESC_SYSTEM_CPU_USAGE_GUEST_EX _T("Average CPU {instance} utilization (guest) for last minute") | |
288 | #define DCIDESC_SYSTEM_CPU_USAGE5_GUEST_EX _T("Average CPU {instance} utilization (guest) for last 5 minutes") | |
289 | #define DCIDESC_SYSTEM_CPU_USAGE15_GUEST_EX _T("Average CPU {instance} utilization (guest) for last 15 minutes") | |
290 | #define DCIDESC_SYSTEM_CPU_USAGE_GUEST _T("Average CPU utilization (guest) for last minute") | |
291 | #define DCIDESC_SYSTEM_CPU_USAGE5_GUEST _T("Average CPU utilization (guest) for last 5 minutes") | |
292 | #define DCIDESC_SYSTEM_CPU_USAGE15_GUEST _T("Average CPU utilization (guest) for last 15 minutes") | |
293 | ||
294 | #define DCIDESC_SYSTEM_IO_DISKQUEUE _T("Average disk queue length for last minute") | |
3e00a175 VK |
295 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_MIN _T("Minimum disk queue length for last minute") |
296 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_MAX _T("Maximum disk queue length for last minute") | |
bf3b7f79 | 297 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX _T("Average disk queue length of device {instance} for last minute") |
3e00a175 VK |
298 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX_MIN _T("Minimum disk queue length of device {instance} for last minute") |
299 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX_MAX _T("Maximum disk queue length of device {instance} for last minute") | |
bf3b7f79 VK |
300 | #define DCIDESC_SYSTEM_IO_DISKTIME _T("Percent of CPU time spent on I/O for last minute") |
301 | #define DCIDESC_SYSTEM_IO_DISKTIME_EX _T("Percent of CPU time spent on I/O on device {instance} for last minute") | |
302 | #define DCIDESC_SYSTEM_IO_WAITTIME _T("Average I/O request wait time") | |
303 | #define DCIDESC_SYSTEM_IO_WAITTIME_EX _T("Average I/O request wait time for device {instance}") | |
304 | #define DCIDESC_SYSTEM_IO_READS _T("Average number of read operations for last minute") | |
3e00a175 VK |
305 | #define DCIDESC_SYSTEM_IO_READS_MIN _T("Minimum number of read operations for last minute") |
306 | #define DCIDESC_SYSTEM_IO_READS_MAX _T("Maximum number of read operations for last minute") | |
bf3b7f79 | 307 | #define DCIDESC_SYSTEM_IO_READS_EX _T("Average number of read operations on device {instance} for last minute") |
3e00a175 VK |
308 | #define DCIDESC_SYSTEM_IO_READS_EX_MIN _T("Minimum number of read operations on device {instance} for last minute") |
309 | #define DCIDESC_SYSTEM_IO_READS_EX_MAX _T("Maximum number of read operations on device {instance} for last minute") | |
bf3b7f79 | 310 | #define DCIDESC_SYSTEM_IO_WRITES _T("Average number of write operations for last minute") |
3e00a175 VK |
311 | #define DCIDESC_SYSTEM_IO_WRITES_MIN _T("Minimum number of write operations for last minute") |
312 | #define DCIDESC_SYSTEM_IO_WRITES_MAX _T("Maximum number of write operations for last minute") | |
bf3b7f79 | 313 | #define DCIDESC_SYSTEM_IO_WRITES_EX _T("Average number of write operations on device {instance} for last minute") |
3e00a175 VK |
314 | #define DCIDESC_SYSTEM_IO_WRITES_EX_MIN _T("Minimum number of write operations on device {instance} for last minute") |
315 | #define DCIDESC_SYSTEM_IO_WRITES_EX_MAX _T("Maximum number of write operations on device {instance} for last minute") | |
bf3b7f79 | 316 | #define DCIDESC_SYSTEM_IO_XFERS _T("Average number of I/O transfers for last minute") |
3e00a175 VK |
317 | #define DCIDESC_SYSTEM_IO_XFERS_MIN _T("Minimum number of I/O transfers for last minute") |
318 | #define DCIDESC_SYSTEM_IO_XFERS_MAX _T("Maximum number of I/O transfers for last minute") | |
bf3b7f79 | 319 | #define DCIDESC_SYSTEM_IO_XFERS_EX _T("Average number of I/O transfers on device {instance} for last minute") |
3e00a175 VK |
320 | #define DCIDESC_SYSTEM_IO_XFERS_EX_MIN _T("Minimum number of I/O transfers on device {instance} for last minute") |
321 | #define DCIDESC_SYSTEM_IO_XFERS_EX_MAX _T("Maximum number of I/O transfers on device {instance} for last minute") | |
bf3b7f79 | 322 | #define DCIDESC_SYSTEM_IO_BYTEREADS _T("Average number of bytes read for last minute") |
3e00a175 VK |
323 | #define DCIDESC_SYSTEM_IO_BYTEREADS_MIN _T("Minimum number of bytes read for last minute") |
324 | #define DCIDESC_SYSTEM_IO_BYTEREADS_MAX _T("Maximum number of bytes read for last minute") | |
bf3b7f79 | 325 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX _T("Average number of bytes read on device {instance} for last minute") |
3e00a175 VK |
326 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX_MIN _T("Minimum number of bytes read on device {instance} for last minute") |
327 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX_MAX _T("Maximum number of bytes read on device {instance} for last minute") | |
bf3b7f79 | 328 | #define DCIDESC_SYSTEM_IO_BYTEWRITES _T("Average number of bytes written for last minute") |
3e00a175 VK |
329 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_MIN _T("Minimum number of bytes written for last minute") |
330 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_MAX _T("Maximum number of bytes written for last minute") | |
bf3b7f79 | 331 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX _T("Average number of bytes written on device {instance} for last minute") |
3e00a175 VK |
332 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX_MIN _T("Minimum number of bytes written on device {instance} for last minute") |
333 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX_MAX _T("Maximum number of bytes written on device {instance} for last minute") | |
bf3b7f79 VK |
334 | #define DCIDESC_SYSTEM_IO_OPENFILES _T("Number of open files") |
335 | ||
336 | ||
337 | #define DCIDESC_DEPRECATED _T("<deprecated>") | |
30c68fa1 AK |
338 | |
339 | ||
215637cc | 340 | #define DCTDESC_AGENT_SUBAGENTS _T("Load subagents") |
a8799146 | 341 | #define DCTDESC_FILESYSTEM_VOLUMES _T("File system volumes") |
ac60d715 | 342 | #define DCTDESC_SYSTEM_INSTALLED_PRODUCTS _T("Installed products") |
a8799146 | 343 | #define DCTDESC_SYSTEM_PROCESSES _T("Process table") |
cc8ce218 | 344 | |
0f506caa VK |
345 | /** |
346 | * Subagent's parameter information | |
347 | */ | |
6827d635 VK |
348 | typedef struct |
349 | { | |
4687826e VK |
350 | TCHAR name[MAX_PARAM_NAME]; |
351 | LONG (* handler)(const TCHAR *, const TCHAR *, TCHAR *); | |
352 | const TCHAR *arg; | |
353 | int dataType; // Use DT_DEPRECATED to indicate deprecated parameter | |
354 | TCHAR description[MAX_DB_STRING]; | |
6827d635 VK |
355 | } NETXMS_SUBAGENT_PARAM; |
356 | ||
0f506caa VK |
357 | /** |
358 | * Subagent's push parameter information | |
359 | */ | |
f480bdd4 VK |
360 | typedef struct |
361 | { | |
362 | TCHAR name[MAX_PARAM_NAME]; | |
363 | int dataType; | |
364 | TCHAR description[MAX_DB_STRING]; | |
365 | } NETXMS_SUBAGENT_PUSHPARAM; | |
366 | ||
0f506caa VK |
367 | /** |
368 | * Subagent's list information | |
369 | */ | |
901c96c7 VK |
370 | typedef struct |
371 | { | |
4687826e VK |
372 | TCHAR name[MAX_PARAM_NAME]; |
373 | LONG (* handler)(const TCHAR *, const TCHAR *, StringList *); | |
374 | const TCHAR *arg; | |
375 | } NETXMS_SUBAGENT_LIST; | |
376 | ||
0f506caa VK |
377 | /** |
378 | * Subagent's table information | |
379 | */ | |
4687826e VK |
380 | typedef struct |
381 | { | |
382 | TCHAR name[MAX_PARAM_NAME]; | |
383 | LONG (* handler)(const TCHAR *, const TCHAR *, Table *); | |
384 | const TCHAR *arg; | |
86c126f5 | 385 | TCHAR instanceColumns[MAX_COLUMN_NAME * MAX_INSTANCE_COLUMNS]; |
cc8ce218 | 386 | TCHAR description[MAX_DB_STRING]; |
4687826e | 387 | } NETXMS_SUBAGENT_TABLE; |
901c96c7 | 388 | |
0f506caa VK |
389 | /** |
390 | * Subagent's action information | |
391 | */ | |
37778a1d VK |
392 | typedef struct |
393 | { | |
4687826e VK |
394 | TCHAR name[MAX_PARAM_NAME]; |
395 | LONG (* handler)(const TCHAR *, StringList *, const TCHAR *); | |
396 | const TCHAR *arg; | |
397 | TCHAR description[MAX_DB_STRING]; | |
37778a1d VK |
398 | } NETXMS_SUBAGENT_ACTION; |
399 | ||
0f506caa VK |
400 | /** |
401 | * Subagent initialization structure | |
402 | */ | |
4687826e | 403 | #define NETXMS_SUBAGENT_INFO_MAGIC ((DWORD)0x20110301) |
ded831ac VK |
404 | |
405 | class CSCPMessage; | |
d618c3ae | 406 | |
6827d635 VK |
407 | typedef struct |
408 | { | |
4687826e VK |
409 | DWORD magic; // Magic number to check if subagent uses correct version of this structure |
410 | TCHAR name[MAX_SUBAGENT_NAME]; | |
411 | TCHAR version[32]; | |
412 | BOOL (* init)(Config *); // Called to initialize subagent. Can be NULL. | |
413 | void (* shutdown)(); // Called at subagent unload. Can be NULL. | |
414 | BOOL (* commandHandler)(DWORD dwCommand, CSCPMessage *pRequest, | |
415 | CSCPMessage *pResponse, void *session); | |
416 | DWORD numParameters; | |
417 | NETXMS_SUBAGENT_PARAM *parameters; | |
418 | DWORD numLists; | |
419 | NETXMS_SUBAGENT_LIST *lists; | |
420 | DWORD numTables; | |
421 | NETXMS_SUBAGENT_TABLE *tables; | |
422 | DWORD numActions; | |
423 | NETXMS_SUBAGENT_ACTION *actions; | |
424 | DWORD numPushParameters; | |
425 | NETXMS_SUBAGENT_PUSHPARAM *pushParameters; | |
6827d635 | 426 | } NETXMS_SUBAGENT_INFO; |
3b376ea0 | 427 | |
0f506caa VK |
428 | /** |
429 | * Inline functions for returning parameters | |
430 | */ | |
a765d97c | 431 | inline void ret_string(TCHAR *rbuf, const TCHAR *value) |
cbcaf8c8 | 432 | { |
a23d8e0d | 433 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); |
cbcaf8c8 VK |
434 | } |
435 | ||
f3387429 VK |
436 | inline void ret_wstring(TCHAR *rbuf, const WCHAR *value) |
437 | { | |
438 | #ifdef UNICODE | |
439 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); | |
440 | #else | |
441 | WideCharToMultiByte(CP_ACP, WC_COMPOSITECHECK | WC_DEFAULTCHAR, value, -1, rbuf, MAX_RESULT_LENGTH, NULL, NULL); | |
442 | rbuf[MAX_RESULT_LENGTH - 1] = 0; | |
443 | #endif | |
444 | } | |
445 | ||
446 | inline void ret_mbstring(TCHAR *rbuf, const char *value) | |
447 | { | |
448 | #ifdef UNICODE | |
449 | MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, value, -1, rbuf, MAX_RESULT_LENGTH); | |
450 | rbuf[MAX_RESULT_LENGTH - 1] = 0; | |
451 | #else | |
452 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); | |
453 | #endif | |
454 | } | |
455 | ||
0212dc5a | 456 | inline void ret_int(TCHAR *rbuf, LONG value) |
cbcaf8c8 | 457 | { |
66d07089 | 458 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
6e38075b | 459 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%ld"), (long)value); |
a23d8e0d | 460 | #else |
6e38075b | 461 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%ld"), (long)value); |
a23d8e0d | 462 | #endif |
cbcaf8c8 VK |
463 | } |
464 | ||
0212dc5a | 465 | inline void ret_uint(TCHAR *rbuf, DWORD value) |
cbcaf8c8 | 466 | { |
66d07089 | 467 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
6e38075b | 468 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%lu"), (unsigned long)value); |
a23d8e0d | 469 | #else |
6e38075b | 470 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%lu"), (unsigned long)value); |
a23d8e0d | 471 | #endif |
cbcaf8c8 VK |
472 | } |
473 | ||
018fda4d | 474 | inline void ret_double(TCHAR *rbuf, double value) |
cbcaf8c8 | 475 | { |
66d07089 | 476 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d VK |
477 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%f"), value); |
478 | #else | |
8b86c5dc | 479 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%f"), value); |
a23d8e0d | 480 | #endif |
cbcaf8c8 VK |
481 | } |
482 | ||
018fda4d | 483 | inline void ret_int64(TCHAR *rbuf, INT64 value) |
cbcaf8c8 | 484 | { |
66d07089 | 485 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d | 486 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%I64d"), value); |
cbcaf8c8 | 487 | #else /* _WIN32 */ |
ccc34207 | 488 | _sntprintf(rbuf, MAX_RESULT_LENGTH, INT64_FMT, value); |
cbcaf8c8 VK |
489 | #endif /* _WIN32 */ |
490 | } | |
491 | ||
018fda4d | 492 | inline void ret_uint64(TCHAR *rbuf, QWORD value) |
cbcaf8c8 | 493 | { |
66d07089 | 494 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d | 495 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%I64u"), value); |
cbcaf8c8 | 496 | #else /* _WIN32 */ |
ccc34207 | 497 | _sntprintf(rbuf, MAX_RESULT_LENGTH, UINT64_FMT, value); |
cbcaf8c8 VK |
498 | #endif /* _WIN32 */ |
499 | } | |
500 | ||
6827d635 VK |
501 | |
502 | // | |
6173bea8 | 503 | // API for subagents |
6827d635 VK |
504 | // |
505 | ||
f3387429 VK |
506 | BOOL LIBNETXMS_EXPORTABLE AgentGetParameterArgA(const TCHAR *param, int index, char *arg, int maxSize); |
507 | BOOL LIBNETXMS_EXPORTABLE AgentGetParameterArgW(const TCHAR *param, int index, WCHAR *arg, int maxSize); | |
508 | #ifdef UNICODE | |
509 | #define AgentGetParameterArg AgentGetParameterArgW | |
510 | #else | |
511 | #define AgentGetParameterArg AgentGetParameterArgA | |
512 | #endif | |
513 | ||
c303351c VK |
514 | void LIBNETXMS_EXPORTABLE AgentWriteLog(int logLevel, const TCHAR *format, ...); |
515 | void LIBNETXMS_EXPORTABLE AgentWriteLog2(int logLevel, const TCHAR *format, va_list args); | |
516 | void LIBNETXMS_EXPORTABLE AgentWriteDebugLog(int level, const TCHAR *format, ...); | |
517 | void LIBNETXMS_EXPORTABLE AgentWriteDebugLog2(int level, const TCHAR *format, va_list args); | |
2dd24569 VK |
518 | void LIBNETXMS_EXPORTABLE AgentSendTrap(DWORD dwEvent, const TCHAR *eventName, const char *pszFormat, ...); |
519 | void LIBNETXMS_EXPORTABLE AgentSendTrap2(DWORD dwEvent, const TCHAR *eventName, int nCount, TCHAR **ppszArgList); | |
6f1abd2c | 520 | BOOL LIBNETXMS_EXPORTABLE AgentSendFileToServer(void *session, DWORD requestId, const TCHAR *file, long offset); |
f480bdd4 | 521 | BOOL LIBNETXMS_EXPORTABLE AgentPushParameterData(const TCHAR *parameter, const TCHAR *value); |
9309ac95 VK |
522 | BOOL LIBNETXMS_EXPORTABLE AgentPushParameterDataInt32(const TCHAR *parameter, LONG value); |
523 | BOOL LIBNETXMS_EXPORTABLE AgentPushParameterDataUInt32(const TCHAR *parameter, DWORD value); | |
524 | BOOL LIBNETXMS_EXPORTABLE AgentPushParameterDataInt64(const TCHAR *parameter, INT64 value); | |
525 | BOOL LIBNETXMS_EXPORTABLE AgentPushParameterDataUInt64(const TCHAR *parameter, QWORD value); | |
526 | BOOL LIBNETXMS_EXPORTABLE AgentPushParameterDataDouble(const TCHAR *parameter, double value); | |
6827d635 | 527 | |
cbcaf8c8 | 528 | #endif /* _nms_agent_h_ */ |