source: nscp/changelog @ 24a46ab

stable
Last change on this file since 24a46ab was 24a46ab, checked in by Michael Medin <michael@…>, 2 years ago

2011-06-27 MickeM

  • Fixed issue where parsers and () which was broken
  • Made most keywords in the where parser case insensitive so NOT and not as well as AND and AnD should now all work
  • Changed so unredable processes are debug messages (as modern windows usualy always has a few)
  • Property mode set to 100644
File size: 62.3 KB
Line 
1TODO:
2 * Process times and similar ?
3 * Fix configuration GUI (low priority)
4 * Add API for rehashing the daemon (or implement it the API is there but does nothing)
5 * Improved socket performance (would be nice if we could be used as a "hub")
6 * Fix depend onservice LanManWorkStation (old win)
7 * Fix RtlStringFromGUID problem on NT4
8
92011-06-27 MickeM
10 * Fixed issue where parsers and () which was broken
11 * Made most keywords in the where parser case insensitive so NOT and not as well as AND and AnD should now all work
12 * Changed so unredable processes are debug messages (as modern windows usualy always has a few)
13
142011-06-14 MickeM - 0.3.9 rc2
15 * Fixed issue with performance data in memory check
16
172011-06-13 MickeM - 0.3.9 rc2
18 * Fixed some issues with CheckFiles
19 * Added regexp matching to all string filters
20   like so: "filter=message regexp '.*MICKEM-LAPTOP.*'"
21   CheckEventLog file=application file=system MaxWarn=1 MaxCrit=1 "filter=generated gt -2d AND message regexp '.*MICKEM-LAPTOP.*'" truncate=800 unique descriptions "syntax=%severity%: %source%: %message% (%count%)"
22 * Fixed issue with errant "dot" in the performance data (I really hate performance data)
23
242011-05-20 MickeM
25 * Added new option to CheckprocState (ignore-state) to ignore any state checks (usefull for checking MaxCount when 0 is an option)
26 * Fixed performance data for process checks.
27 * Fixed error message for the op5 sales people
28
292011-04-01 MickeM
30 * Fixed (finally!!) the NSCA issue with multiple commands and missing "data"
31
322011-03-24 MickeM
33 * Added check_updates.vbs script
34 * Added a lot of useful(?) aliases
35
362011-03-22 MickeM
37 * Added magic modifier (shamelessly stolen from check_mk) to CheckDriveSize
38
392011-03-17 MickeM
40 * Added proper volume support to CheckDriveSize
41
422011-03-15 MickeM
43 * Added suport for delayed start to service check (default ignored)
44 * Added new option to CheckDriveSize ignore-unreadable which will ignore checking any unreadable disk drive.
45
462011-02-16 MickeM
47 * Added new module CheckTaskSched2 which is the same as CheckTaskSched but designed for Vista and beyond.
48   So if you want to check "new tasks" on modern Windows use this module instead of the CheckTaskSched mosule.
49   They are exactly the same excep using different APIs (and somewhat different options)
50   The CheckTaskSched2 is somewhat limited as the only supported keys are: title, exit_code, status, most_recent_run_time
51
522011-02-10 MickeM
53 * Fixed issue with where filters and & operator
54 * Added exact bounds to CheckTaskSched
55 * Added conversion of status from string
56 * Fixed time handling in CheckTaskSched to be "UTC" (hence the %most_recent_run_time% syntax string is also UTC)
57 
582011-02-01 MickeM
59 ! BREAKING CHANGE!
60 * Removed deprecated command CheckFile
61 * Deprecated command CheckFile2
62 * Added new command CheckFiles which replaces CheckFile2 and CheckFile
63   Command has the new where filter syntax like so:
64   CheckFiles path=D:\tmp pattern=*.exe "filter=version != 1.0" "syntax=%filename%: %version%" MaxWarn=1
65 * Replaced undocumented CheckTaskSched with a new where filter based command.
66   CheckTaskSched debug "filter=exit_code != 0" "syntax=%title%: %exit_code%"
67
682010-12-26 MickeM
69 * Improved crash reporter to support BOTH archive and send.
70 * Improved crash reporter to archive under APPDATA (Local Settings/NSClient++/crash dumps)
71 * Started on the new CheckNSCP (internal health plugin)
72 * Added a "text description" file to crash dump folder to see which version crashed and what not.
73 * General improvments to the crash helper.
74 * Added check_nscp which is a basic command to check the internal health of NSClient++
75 * Added check_files (script) submitted by
76
772010-12-25 MickeM
78 * Fixed issue with performance coutners and erroneouse pointers in some rare cases.
79   (Thank you google breakpad)
80 * Added date to crash reports (to make it simpler to find correct symbols)
81 
822010-12-14 MickeM
83 * CheckEventLog: Fixed so type can be compared to various string keys: error, warning, info, auditSuccess, auditFailure
84 * CheckEventLog: Fixed so invalid parses are reported better (check the "rest" buffer)
85    CheckEventLog file=Application "filter=generated gt -600m AND message LIKE 'Click2Run'" ...
86    WARNING:Parsing failed: AND message LIKE 'Click2Run'
87 * CheckEventLog: Added support for "not like" operator.
88    CheckEventLog file=Application "filter=generated gt -600m AND message not like 'Click2Run'" ...
89 * CrashHandler: Added several options to the crash handler (so it can be configurable)
90    Everything reside under the [crash] sectiuon and the avalible keys are:
91     * restart=1 # if we shall restart the service when a crash is detected.
92     * service_name=<name of service to restart>
93     * submit=0 # if we shall submit crash reports to crash.nsclient.org
94     * url=http://crash.nsclient.org/submit
95     * archive=1 # Archive crashdumps
96     * folder=<appfolder>/dumps
97 
982010-12-13 MickeM
99 + Added not responding detection to CheckProcState
100   All "hung" processes will be considerd "hung" (and not started/stopped)
101   When process is "not hung" (badapp.exe)
102    CheckProcState quake.exe=stopped badapp.exe=started notepad++.exe=started
103     OK:OK: All processes are running.
104    CheckProcState quake.exe=stopped badapp.exe=hung notepad++.exe=started
105     CRITICAL:CRITICAL: BadApp.exe: started (critical)
106   Where as when it is hung:
107    CheckProcState quake.exe=stopped badapp.exe=started notepad++.exe=started
108     CRITICAL:CRITICAL: BadApp.exe: hung (critical)
109    CheckProcState quake.exe=stopped badapp.exe=hung notepad++.exe=started
110     OK:OK: All processes are running.
111   
1122010-12-12 MickeM
113 + Added initial support for google breakpad
114   This means if nsclient++ crash two things will happen now.
115   1. Crash reports will be sent to crash.nsclient.org (this will be optionalin the near future)
116   2. service will restart
117   You can try this out in /test mode using the "assert" command.
118   
1192010-11-14 MickeM
120 * Added the "extended NRPE payload packet patch"
121   Should have done this years ago but alas I have not.
122   This allows you to (with a patched NRPE) send and recieve more then 1024 chars (in a backwards compatible way)
123   cf: https://dev.icinga.org/attachments/113/nrpe_multiline.patch
124   To enable this you set the following. The value is the number of packets we allow.
125   [NRPE]
126   packet_count=10
127   NOTICE for this to make sence you need to extend the "main payload buffer" which will most likely run out.
128   [Settings]
129   string_length=16000
130   This value "should" be NRPE:packet_count*NRPE:string_length(1024)
131
1322010-10-17 MickeM
133 * Added new command timeout which runs a command in a thread and timeouts after a given time.
134   *NOTICE* this is not a good command to use since it will leak memory/resources when it "kills threads"
135 * Added new command: negate which can alter the result of other commands
136
1372010-09-29 MickeM
138 * Reverted a merge miss in CheckDisk
139 * Added so IN (...) accepts strings without qoutes in the SQL Query syntax of CheckEventlog
140 * Added new "parsing structure" str(...) to create strings in the SQL query without using ticks (') to allow "nasty meta char thingy")
141 * Extended error parsing (eventlog messages) to allow up to 24 arguments (up from 11)
142
1432010-08-04 MickeM
144 * Added performance data display when missing bounds
145
1462010-07-28 MickeM
147 * Fixed issue with NSCA server and closing sockets (no flushes the datat before)
148 * Fixed issue with performance data units beeing incorrect:
149    before: B, K, M, G, ... noew: B, KB, MB, GB, ...
150 * Fixed syntax errors in performance data extra ';' dropped and spaces added propperly
151   Result now looks like so: ... |'C:\ %'=42%;10;5 'C:\'=229.66GB;39.06;19.53;0;390.62 'D:\ %'=99%;10;5 'D:\'=3.39GB;20.55;10.27;0;205.54
152 * Fixed issues with caluclating netmask (also added support for spaces and tabs in the hostlist string.
153
1542010-06-02 MickeM
155 * Fixed a few issues with listCounterInstances
156
1572010-05-25 MickeM - 0.3.8 (take 3)
158 ! Release the new version
159 * Fixed issue with CheckServiceState
160
1612010-05-25 MickeM - 0.3.8 (take 2)
162 ! Release the new version
163 * Fixed issue with FILEAGE
164
1652010-05-19 MickeM - 0.3.8
166 ! Release the new version
167
1682010-05-17 MickeM
169 * Fixed id is considerd an int (not a string) in the eventlog filter
170 
1712010-05-14 MickeM
172 * Fixed issue with LUA script module not using relative path
173 * New default syntax for CheckEventLog
174
1752010-05-12 MickeM - 0.3.8 RC3
176 * Fixed issue which caused latest build to crash
177
1782010-05-10 MickeM - 0.3.8 RC2
179 * Fixed issue with listpdh and debugpdh (not works again)
180 + Fixed issue and added support for IN ( ... ) and NOT IN ( ... ) operators (CheckEventLog)
181
1822010-05-08 MickeM
183 + Added new "script templating" thing to simplify adding scripts:
184   Two new sections: [Script Wrappings] for adding templates and [Wrapped Scripts] for adding the scripts.
185    %SCRIPT% is replaced with the script name
186    %ARGS% is replaced with arguments.
187     vbs=cscript.exe //T:30 //NoLogo scripts\wrapper.vbs %SCRIPT% %ARGS%
188    and
189     w_vbs=check_test.vbs /arg1:1 /arg2:1 /variable:1
190    is the same as:
191     w_vbs=cscript.exe //T:30 //NoLogo scripts\wrapper.vbs check_test.vbs /arg1:1 /arg2:1 /variable:1
192 * Added correct syntax for VB scripts
193 * Added correct syntax for powershell scripts
194 * Cleaned up scripts folder
195 + Added new "NagiosPlugin library" from op5
196 + Added check_no_rdp.vbs (Checks that no RDP connection is online)
197 + Added check_battery.vbs which checks batterys via WMI
198 + Added check_printer.vbs to check printers via WMI
199
2002010-04-21 MickeM - 0.3.8 RC1
201 + Added support for strings and int (values) to CheckSingleRegEntry
202   Use like so (int):
203    CheckSingleRegEntry path=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MaxSize "syntax=%path%: %int%"  warn==20971520 crit==20971520 check=int ShowAll=long
204    CheckSingleRegEntry path=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MaxSize "syntax=%path%: %int%"  warn==30971520 crit==30971520 check=int ShowAll=long
205   Use like so (string):
206    CheckSingleRegEntry path=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MaxSize "syntax=%path%: %string%"  warn==20971520 crit==20971520 check=string ShowAll=long
207    CheckSingleRegEntry path=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MaxSize "syntax=%path%: %string%"  warn==30971520 crit==30971520 check=string ShowAll=long
208   This can ofcourse be combined and all valid operators (like regexp, substr, lt, gt, ne etc etc are supported.
209   
2102010-04-16 MickeM
211 + Added new Check to CheckSystem: CheckSingleRegEntry
212   Similar to the previous CheckSIngleFile but can be used to check aspects of registry entries.
213     CheckSingleRegEntry path=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MaxSize "syntax=%path%: %exists%"  warn==true crit==true check=exists ShowAll=long
214         CheckSingleRegEntry path=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\eventlog\Application\MaxSizeYY "syntax=%path%: %exists%"  warn==true crit==true check=exists ShowAll=long
215   Currently only supports checking existanse of keys but more checks will be added soon.
216
2172010-04-14 MickeM
218 ! Fixed erroneous error message "Failed to peek buffer"
219 
2202010-04-13 MickeM
221 + Added support for dates in the new CheckEventLog so the following are equvivalent:
222    CheckEventLog debug=true file=application file=system MaxWarn=1 MaxCrit=1 "filter=generated gt -2d AND severity = 'error'" truncate=800 unique descriptions "syntax=%severity%: %source%: %strings% (%count%)"
223    CheckEventLog debug=true file=application file=system filter=new filter=in MaxWarn=1 MaxCrit=1 filter+generated=gt:2d filter+severity==error truncate=800 unique descriptions "syntax=%severity%: %source%: %strings% (%count%)" debug-threshold=100
224
2252010-04-09 MickeM
226 + Added "like" keyword to comapre strings like so:
227    "filter=severity = 'error' AND strings like 'SQLEXPRESS'"
228    CheckEventLog debug=true file=application file=system MaxWarn=1 MaxCrit=1 "filter=severity = 'error' AND strings like 'SQLEXPRESS'" truncate=800 unique descriptions "syntax=%severity%: %source%: %strings% (%count%)"
229 * Fixed eventlog check issue (Reverted "major eventlog change" since it did in fact break to many things)
230
2312010-04-04 MickeM
232 - Reverted "major eventlog change" since it did in fact break to many things
233 + Added new major addition to CheckEventLog
234   CheckEventLog has a compleatly new syntax borrowed from SQL.
235   CheckEventLog MaxWarn=1 MaxCrit=1 "filter=(id = 123 OR id = 321) AND (severity='warning' OR severity='error')"
236   Avalible operators are: =, !=, >, <, >=, <=, eq, ne, gt, lt, ge, le, OR, AND
237   Avalible functions are: convert(<value>) (will try to automatically convert type)
238   Avalible variables are: severity (others may work but this will come in the next week)
239
2402010-03-24 MickeM
241 + added a new "option" in conjunction with -c you can now do -m to specify the module to load.
242   nsclient++ -m CheckDisk.dll -c CheckDriveSize MaxWarn=100 CheckAll
243   This prevents socket based modules from loading causing "bind" errors.
244
2452010-03-11 MickeM
246 * Fixed MAJOR issue with CheckEventLog and this might actually break "existing" checks so let me know.
247   Problem was I matched filter+ incorrectly.
248 + Added new option debug-threshold to set "after which rule" we will start dumping filter matches (very usefull to ignore first rule)
249   CheckEventLog debug=true debug-threshold=1 (will be alot more usefull then without the threshold)
250
2512010-03-08 MickeM
252 + Added new option append-filter-<key>=<value> to CheckEventLog to allow "and" of filter rules.
253   CheckEventLog file=application file=system filter=out MaxWarn=1 MaxCrit=1 filter-eventID=ne:1 filter-eventID=eq:1 append-filter-eventSource==SecurityCenter truncate=1023 unique descriptions "syntax=%source%: %id% (%count%)"
254 + Added debug option to CheckEventLog (to allow settingdebug on per-check)
255 + Added obfuscated_password to NSCA section
256 + Added so "global" ([Settings] password=...) passwords are read from the NSCA module
257 
2582010-02-26 MickeM
259 * Changed so missing files and such generate an error
260 * Added option to return error messages to the client [CheckDisk] show_errors=1 (defauilt is off 0)
261 * Added warning message ewhen numerical filters evaluate to zero (and are not 0)
262 * Fixed major issue with date mathing in CheckFile* which was not working at all.
263
2642010-01-24 MickeM
265 * Fixed so files locked for reading can be chcked (basic checks)
266 * Improved speed of file chyecking (does not check file data twice)
267
2682010-01-23 MickeM
269 + Added checks for missing path and missing filter on CheckFile2 thus
270    CheckFile2 without paths and/or filters will have status unknown.
271 * Changed "missing" disks are now a critical error and not unknown
272 * Improved CheckDriveSize bad FilterType error message
273 + Added checks for missing counters to CheckCounter
274 + Added new thread safe PDH subsystem (switch using the new option pdh_subsystem=thread-safe (normal mode is fast).
275   The reason for this new subsystem is to allow reloading counters and get around some quirks in various PDH implementations (mainly HP)
276   Added benefits of this new mode is that you can now reload counters which are changed during runtime.
277   This is done by adding the reload flag to the CheckCounter command.
278   THIS IS AN ADVANCED FEATURE (so dont use unless you know what you are doing)
279 + Added new index option to CheckCounter to allow looking up index and thus you can use the same checks on multiple locales and also use characters not present in "NRPE charset)
280    CheckCounter index "Counter=\1450(_Total)\1458" ShowAll MaxWarn=500 MaxCrit=1000
281   same as
282    CheckCounter "Counter=\\Utskriftskö(_Total)\\Utskrifter" ShowAll MaxWarn=500 MaxCrit=1000
283   To find index you can use the command line options:
284    nsclient++ -noboot CheckSystem pdhlookup Utskrifter
285
2862009-12-31 MickeM
287 * Fixed CheckFile* time handling so it is "signed"
288   This means you can check for "future dates" as well as future dates works correctly:
289   Like so:
290    CheckFile2 debug path=D:\tmp\dates filter+creation=>30m MaxWarn=1 MaxCrit=1 "syntax=%filename%: %creation%"
291    CRITICAL:past.txt: Thursday, December 31, 2009 08:47:30, found files: 1 > critical|'found files'=1;1;1;
292    CheckFile2 debug path=D:\tmp\dates filter+creation=<-30m MaxWarn=1 MaxCrit=1 "syntax=%filename%: %creation%"
293    CRITICAL:future.txt: C: Thursday, December 31, 2009 12:47:11, found files: 1 > critical|'found files'=1;1;1;
294 + Added volume support for CheckDriveSize (CHeckAll) like so:
295   Like so:
296    CheckDriveSize MinWarn=50% MinCrit=25% CheckAll=volumes FilterType=FIXED FilterType=REMOTE
297 + Added %user% to syntax to print user who generated message.
298   Like so:
299    CheckEventLog file=application file=system filter=new filter=out MaxWarn=1 MaxCrit=1 filter-generated=>2w filter-severity==success filter-severity==informational truncate=1023 unique descriptions "syntax=%user% (%count%)"
300    CRITICAL: (1),  (2), NT INSTANS\SYSTEM (3), NT INSTANS\SYSTEM (3), NT INSTANS\SYSTEM (3), missing (3), missing (5),  (4), missing (2), missing (2), missing (2), missing (2),  (1), eventlog: 33 > critical|'eventlog'=33;1;1;
301
3022009-12-21 MickeM
303 ! BREAKING CHANGE!
304 ! New perfoamcen data syntax for ALL % checks
305   Alias is '<alias> %' and it also has the "full" non % data as '<alias>'
306   Like so:
307        CheckDriveSize CheckAll MaxWarnUsed=80% MaxCritUsed=90%
308        CRITICAL:CRITICAL: C:\: Total: 146G - Used: 140G (95%) - Free: 6.31G (5%) > critical, D:\: Total: 152G - Used: 148G (97%) - Free: 3.59G (3%) > critical|'C:\ %'=95%;80;90; 'C:\'=140.17G;117.18;131.83;0;146.48; 'D:\ %'=97%;80;90; 'D:\'=147.93G;121.21;136.3;0;151.52;
309        CheckDriveSize CheckAll MaxWarnFree=20% MaxCritFree=10%
310        OK:OK: All drives within bounds.|'C:\ %'=5%;20;10; 'C:\'=140.17G;29.29;14.64;0;146.48; 'D:\ %'=3%;20;10; 'D:\'=147.93G;30.30;15.15;0;151.52;
311        CheckDriveSize CheckAll MaxWarnUsed=100G MaxCritUsed=150G
312        WARNING:WARNING: C:\: Total: 146G - Used: 140G (95%) - Free: 6.31G (5%) > warning, D:\: Total: 152G - Used: 148G (97%) - Free: 3.59G (3%) > warning|'C:\ %'=95%;32;4294967294; 'C:\'=140.17G;100;150;0;146.48; 'D:\ %'=97%;35;2; 'D:\'=147.93G;100;150;0;151.52;
313        CheckDriveSize CheckAll MaxWarnFree=20G MaxCritFree=10G
314        OK:OK: All drives within bounds.|'C:\ %'=5%;87;94; 'C:\'=140.17G;20;10;0;146.48; 'D:\ %'=3%;87;94; 'D:\'=147.93G;20;10;0;151.52;
315
3162009-12-13 MickeM
317 + Added new command: CheckSingleFile to check spects of a single file use like so:
318   CheckSingleFile file=d:\nrpe_512.pem warn=>100 check=line-count warn=>100 crit=>170 check=size
319 + Added option debug to CheckFile2 to enable priting of debug information
320 + Added ignore-errors to "ignore" any filesystem related errors (NOTICE this is probably not what you want)
321 + Added master-syntax to CheckFile2 to change the overall message like so:
322    It takes three options (and char data):
323     * %list% A list of all "files" (syntax controls this)
324     * %files% number of files
325     * %matches% number of files matched
326    CheckFile2 MinWarn=10 MinCrit=10 path=D:\WINDOWS\system32 filter+size=gt:0 truncate=10 ignore-errors "master-syntax=%matches%/%files%"
327    OK:7177/7...|'found files'=7177;10;10;
328
3292009-12-06 MickeM
330 + Added != to all string filters
331 + Sorted out the alias handling it is now wither what you specify or "files found" (this makes performance data work)
332 + Added version to CheckFile2
333   CheckFile2 path=D:\tmp pattern=*.exe filter+version=!=1.0 "syntax=%filename%: %version%" MaxWarn=1
334   CheckFile2 path=D:\tmp pattern=*.exe filter+version=!=6.0.2900.5512 "syntax=%filename%: %version%" MaxWarn=1
335 + Added line count to CheckFile2 to count lines
336   CheckFile2 path=D:\tmp pattern=*.txt filter+line-count=!=2 "syntax=%filename%: %line-count%" MaxWarn=1
337   CheckFile2 path=D:\tmp pattern=*.txt filter+line-count=ne:3 "syntax=%filename%: %line-count%" MaxWarn=1
338
3392009-xx-x MickeM - 0.3.7
340 ! Release the new version
341
3422009-10-11 MickeM
343 + Added argument support to NRPE Client
344   This is temporarily enabled by the same options under the NRPE section. BUT this will change int he future so be ware when using them.
345
3462009-09-20 MickeM
347 * Fixed alias in CheckWMI (now works)
348 + Added columnSyntax to CheckWMI to allow formating of returned data (default is %column%=%value%)
349 + Added columnSeparator to CheckWMI to allow formating of returned data (default is ", ")
350
3512009-09-13 MickeM
352 * Fixed some more issues with the installer should not "work" on Windows 2008 as well as slightly simpler to configure.
353
3542009-09-06 MickeM
355 + Added new option to [NSCA Agent] string_length=<size> of the NSCA_MAX_PLUGINOUTPUT_LENGTH option on the NSCA server.
356 * Readded all the "installer configuration" crap which I accidentaly removed when I fixed the installer... *sigh*
357
3582009-08-30 MickeM
359 + Added -c and -d command line options like so:
360   NSClient++ -c CheckFile2 path=c:\test pattern=*.txt MaxCrit=1 filter+written=gt:2h
361   NSClient++ -c <command> <argument 1> <argument 2> ...
362   -d Is the same thing but with debug enabled.
363 + Added uninstall of old client (sort of broken but works)
364
3652009-08-29 MickeM
366 * Fixed issue with CheckFile (directory)
367 * Rewrote the CA:s in the installer to work "better" (hopefully) in general it should be have more like a propper installer.
368
3692009-07-18 MickeM
370 * Fixed issue with no loggers avalible and "memory leak"
371 * Added "firewall exception" to installer
372 * Fixed an issue with the socket data buffer
373 * Added new option to NSC.ini [NSCA] socket_timeout=30 (timeout in seconds when reading from NSCA sockets)
374 * Fixed issue with NSCA socket.
375
3762009-07-05 MickeM
377 * Fixed issue with CheckExternalScripts and script_dir: not adding the commands properly.
378 * Fixed issue with CheckExternalScripts and script_dir: not using relative paths (#310).
379
3802009-06-20 MickeM
381 * Fixed issue with CheckDisk and paths not working out properly
382
3832009-06-10 MickeM - 0.3.6
384 ! Release the new version
385
3862009-06-10 MickeM
387 * Fixed so CheckEventLog only reports invalid buffersizes once
388
3892009-06-07 MickeM
390 * Fixed issue with CheckFileAge incorrectly working in recursive mode.
391 * Finalized the installer
392
3932009-05-22 MickeM
394 * Fixed time_delay option in NSCA config (now uses the correct base was 1000 times to large before)
395
3962009-05-21 MickeM
397 * Fixed issue with eventlog parsing and 64 bit machines (descriptions option)
398 * Fixed issue with "modern windows" and installing the service (should not have the correct privlaiges)
399
4002009-05-17 MickeM
401 * Changed default buffer size for process enumeration (64K now instead of 1K should I hope work better on 64bit OS:es)
402
4032009-05-10 MickeM
404 + Added write support for modules to installer
405
4062009-05-03 MickeM
407 * Fixed another quite serious memory leak!
408   And this was a hard one, took me hours and hours and hours (read weeks) to track down, but here we are!
409 * A lot of other fixes as I have been through much of the code looking for the memmory leak above.
410
4112009-03-30 MickeM
412 + Added new option to NSCA module for specifying report options.
413        report=all (report=warning,critical) etc etc to specify which kind of return datat to get default value is all.
414 + Added so password and host ate stored in the installer (if changed)
415
4162009-03-29 MickeM
417 * Fixed a lot of issues with the installer and added a start on exit (and donate) on the finnish dialog.
418
4192009-03-15 MickeM
420 * New service name (displayname)
421 * New service description
422
4232009-03-14 MickeM
424 * Rebuilt installer UI (still missing write config function)
425 * Added debug entry to log filename used by debug log metrics.
426 * Fixed so alias will not require the allow_nasty_meta_chars option set under external sripts module.
427
4282009-03-02 MickeM
429 * Added catch handlers and error logging to NSCA Thread
430 * Fixed issue with CheckProcState and administrator login!
431 + Added debug module to installer
432 + Added option max-dir-depth to CheckFile and CheckFile2 like so:
433   CheckFile "file=c:\test\*.txt" filter-size=<24g "syntax=%filename%: %size%" MaxCrit=1 max-dir-depth=0
434   Will only find files on the "first level" where as max-dir-depth=1 would find all parents and children etc. (-1 is the default and means find all)
435 * Fixed issue with finding sub-folders and *.txt now it will always look for subfolders if they are present
436
4372009-02-26 MickeM
438 * Fixed issue with debug logging (not it can be disabled again)
439
4402009-02-23 MickeM
441 * Fixed build issues so NSCA now has all cryuptos avalible (verify with nsclient++ /about)
442
4432009-02-11 MickeM
444 * Fixed so that performance data is always(?) renderd regardless of if we have bounds or not.
445   This was primarily to fix issues where we have might not "unexpectedly" get performance data (might still be some issues here so let me know).
446
4472009-02-06 MickeM
448 * Fixed so that arguments ($ARG1$) are parsed properly for alias in CheckExternalScript
449
4502009-02-05 MickeM
451 * Fixed so the error message for "to small eventlog buffer" specifies the required size.
452 * Changed so that event log buffer problems are "ignored in the result" (still logged in the error log).
453
4542009-02-03 MickeM
455 * Added support for changing the time when using NSCA with the time_delay in NSC.ini
456   time_delay=+4h or time_delay=-1h etc should can now be used when system time not the same as NSCA time.
457
4582009-01-30 MickeM
459 * Added support for changing name and description of service from the /install command line
460   NSClient++ /install [gui] [start] [service name] [description]
461   NSClient++ /uninstall [gui] [stop] [service name]
462   NSClient++ /start [gui] [service name]
463   NSClient++ /stop [gui] [service name]
464
4652009-01-28 MickeM
466 * Slightly improved error handling around socket creation
467 * Fixed some pretty minor issues with the SysTray module (uncreation as well as new boost build).
468
4692009-01-25 MickeM
470 * Fixed issue with checkVersion (#242)
471 * Fixed spelling error (#244)
472 * Fixed crash in CheckFile when a file was locked in exclusive mode (#254)
473 + Improved error handling in all CheckDIsk/CheckFile checks. Should report errors better now.
474 * Updated the config file a bit: remving "beta" from a bunch of modules no longer in beta.  (#270)
475 + Added more filter operatos to all numeric filters so they accept eq:, ne:, gt:, lt: in addition to =, >, <, <>, !, !=, in: (#269)
476
4772009-01-23 MickeM
478 + Added better support for numerical hit matching in the eventlog module. You can now use exact and detailed matching.
479    You can now use the following syntax:
480    CheckEventLog ... warn=ne:1 crit=eq:0 ...
481    To generate a warning if the number of hits are != 1 and a critical if the number of hits are = 0.
482    Other operators avalible are: =, >, <, <>, !, !=, eq:, ne:, gt:, lt:
483
4842009-01-23 MickeM
485 * Cleaned up the checkProcState code and it is not a lot better.
486   - Removed race conditions (crashes?) as well as improved perfoamnce and better error handling.
487 + Added new option 16bit to checkProcState. When set checkProcState will enumerate all 16 bit processes found running under NTVDM.
488 * Fixed NRPE version reported "incorrectly". (Version is now takedn from NSClient++)
489
4902009-01-21 MickeM
491 + Added experimental 16 bit process support to checkProcState
492
4932009-01-20 MickeM
494 * Fixed issue with CheckWMI when no filter was specified.
495
4962009-01-17 MickeM
497 + Added new command line option pdhlookup (to CheckSystem) to lookup index from names.
498   Probably not usefull to anyone but me :) Usage: "nsclient++ -noboot CheckSystem pdhlookup Antal bindningsreferenser"
499 * Fixed so PDH Collectors use the same exception as the rest of the PDH stuff (might give better errors when PDH breaks, but I doubt it)
500 * removed debug output from -noboot
501 + Added new command line pdhmatch option to use pattern matching on PDH queries
502   Usage: nsclient++ -noboot CheckSystem pdhmatch \Process(*)\Antal trådar
503 * Improved error reporting in the PDH subsystem.
504 + Added new module A_DebugLogMetrics.dll which can be used to generate debug info.
505   Enable the module and a file called process_info.csv will be created under %APP_DATA%/nsclient++/process_info.csv which contains metrics.
506 * Fixed handle leak in CheckExternalProcess and NRPEListsner (executing commands).
507
5082009-01-13 MickeM
509 * Fixed issue with 64-bit installer (now installs under Program Files (and not x86)
510 + Brand new build enviornment based upon boost build!!!
511   Use batch file to build (release-build.bat or modify to make your own)
512 * Modified /about so it now shows a lot of usefull(?) info.
513
5142008-11-13 MickeM
515 + Added truncate option to checkServiceState
516
5172008-09-24 MickeM
518 * Imroved the installer (now auto-updates the version when built)
519
5202008-09-24 MickeM - 0.3.5
521 * Fixed issue with CheckServiceState and CheckAll (it now works)
522 + Added new check: CheckFile2 which has the same syntax as the event log filtering.
523    Usage: CheckFile2 file=c:\test\*.txt filter=in filter+creation=<24h "syntax=%filename% was created %creation%" MinWarn=0 MinCrit=0
524
5252008-09-18 MickeM - 0.3.4
526 * Changed so "missing services" are treated as stopped.
527    CheckServiceState missing=stopped ShowAll
528        OK: missing: not found
529 * Fixed issue with : in service name.
530 + Added some "reasonable default cheks" under [External Alias] for the CheckExternalScripts.dll module.
531
5322008-09-17 MickeM - 0.3.4 RC-6
533 * Added option [EventLog] lookup_names=0 to disable the evetlog name lookup (default is on)
534
5352008-09-17 MickeM
536 * Fixed issue on all filters so == takes the "usual" 2 equalsigns (old still works).
537 * Added so tray icon can get "propper" name from core for "description".
538 * Added lookup of "long" eventlog names (you can now use the alias used in the event viewer)
539
5402008-09-16 MickeM - 0.3.4 RC-5
541 * Fixed an issue with the session launcher
542
5432008-09-15 MickeM
544 * Fixed so NSCLient++ can load with "broken plugins" (before it printed an error and exited)
545 + Added a very basic simple .net plugin (and a wrapper)
546
5472008-09-14 MickeM - 0.3.4 RC-4
548 * Fixed an issue with the session launcher
549 * Fixed an issue with the uninstaller (should not "fail" when problems uninstalling)
550
5512008-09-14 MickeM - 0.3.4 RC-4
552 * Fixed issue with OS detection (again)
553 * Fixed issue with plugin unloading (again)
554 * Fixed issue with SSL socket not unloading properly
555 * Fixed issue with "login" and "no session" (should work now I hope) (#222)
556 * Changed so all projects build under "tmp" instead of under respecitve directory. (simpler to remove all "tmp" files now)
557
5582008-09-12 MickeM
559 * Thanks to everyone who listened in on my session at NETWAYS Nagios Konferenz 2008!
560
5612008-09-09 MickeM - 0.3.4 RC-3
562 * Improved error handling for the WMI checks.
563 + CheckWMI: Added support for extracting numbers from strings
564 * Fixed performance data for "large float values" to be rendered without scientific notation. (#151)
565 * Fixed issue with & and some commands via check_nt.
566 * Fixed a crash on exit (which I added in Rc1).
567 * Added 10 "bytes" the CPU buffer: (#174)
568 + Added new option to [EventLog] section buffer_size to change the size of the buffer used when scanning the evenlotg (defaults to 64k).
569 * Fixed error handling in CHeckEventLog so errors are repoorted properly (#184)
570
5712008-09-08 MickeM - 0.3.4 RC-2
572 * Fixed issue in windows 2008 with system tray (shared_session).
573 * Fixed installer issue (should run (i hope) service installer on install now on 64 bit os)
574 * Fixed issue with unloading plugins and log (causing "timeouts" when exiting some times)
575
5762008-09-07 MickeM
577 + Added sample powershell script as well as a workaround for making them run.
578 * Fixed an issue making powershell scripts (and possibly others) not timeout properly.
579 + Added upgrade support to the installer (still need to add support for keeping .ini file so be ware)
580
5812008-09-06 MickeM
582 * Improved error reporting in the eventlogchecker
583 * *BREAKING CHANGE* filter=new is now the default so unless you use the new filtering you need to specify filter=old instead!
584   I Recomend everyone to stop using the "old" filtering.
585
5862008-09-04 MickeM
587 * Fixed issues with new service stuff on NT4 and W2K (should work fine now)
588 + Added some DebugOutput to service handling features so if you experience tropubel try using sysinternals DebugView too se logging before the agent startes.
589 * Fixed a memory leak in the error formating code
590
5912008-08-24 MickeM
592 * Changed NSCA "general problem" error message to be more descriptive.
593 * Fixed issue with CheckCPU not returning a valid performance unit (%) see issue #219 for details.
594
5952008-08-16 MickeM
596 * *WARNING* THIS IS VERY VERY UNSTABEL (possibly)
597 * *WARNING* A lot of new untested code here so dont run in production enviornments :)
598 + Added shared session so system tray can communicate with master
599 + Added new system tray handlig (via TS so FUS should work with it)
600 + Added new option [System] / shared_session=0 (or 1) to enable / disable the new shared memory framework (it is for now disabled by default)
601   If you want to try this remember to change that option but also beware! it is dagerous and not finnished and and also there is as of now no security at all.
602
6032008-08-09 MickeM
604 + Added ChangeWindowMessageFilter so systray should maybe work on vista and beyond!
605
6062008-07-28 MickeM
607 * Improved the error handling for the check proc state.
608 * Removed all (I think) asserts replacing them with exceptions (should I hope reduce crashes and instead leave some form of errors)
609
6102008-07-25 MickeM
611 + Built a garage at the summer house
612 * cut down all the reeds and shrubbs at the summer house.
613
6142008-07-03 MickeM
615 * Fixed (again) issue with performance data and CheckDriveSize (when using "Min" bounds)
616 + Added some more error messages for when counters are not found.
617 * Fixed an issue with the new namespace option
618
6192008-07-02 MickeM
620 ! 0.3.3 Released (take 2)
621 + Added new option alias to controll the name for performance counters when using checkfile use like so:
622    checkfile alias=foo file=C:\boot.ini filter-written=>1000d syntax=gurka MaxCrit=1
623 * Fixed issue with performance data and CheckDriveSize (when using "Min" bounds)
624 ! 0.3.3 Released (take 1)
625 * Fixed some issues (?) with the installer the w32 and x64 are now different components (GUIDs).
626
6272008-07-02 MickeM
628 + Fixed some issues (?) with the installer the w32 and x64 are now different components (GUIDs).
629
6302008-07-01 MickeM
631 + Added new option (namespace) to CheckWMI and CheckWMIValue use like so:
632   CheckWMI namespace=root\\cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"
633
6342008-06-30 MickeM
635 * Fixed issue with CheckFile and performance data ( #156 )
636 + Added option (InvalidStatus) to CheckCounter to allow other then UNKNOWN return state when counters are missing ( #167 ).
637   *NOTICE* this is all reasons (so if the counter is missing or some such the same will happen not just when the instance is missing)
638   Message will reflect reason.
639 * Fixed issue in the arraybuffer (one of the plit functions had a problem with multiple chars of the same) ( #190 )
640
6412008-06-25 MickeM
642 * Fixed issue with CheckDriveSize and CheckAllOthers (#188)
643
6442008-06-24 MickeM
645 + Added new check (to CheckHelpers): CheckOK: Just return OK (anything passed along will be used as a message).
646 + Added new check (to CheckHelpers): CheckWARNING: Just return WARN (anything passed along will be used as a message).
647 + Added new check (to CheckHelpers): CheckCRITICAL: Just return CRIT (anything passed along will be used as a message).
648 + Added new check (to CheckHelpers): CheckVersion: Just return the nagios version (along with OK status).
649 * Better error messages in the check service thingy.
650
6512008-06-18 MickeM
652 * Fixed an issue in regards to reading the return packet in the in the NRPEClient (now it works).
653   Before only the first 1024 bytes were used.
654
6552008-06-15 MickeM
656 * Applied patches from Jeff Goldschrafe <goldschr AT cshl.edu>
657   + CheckDriveSize now uses "all drives" when no drive is specified.
658   * Fixed misspellt Container
659
6602008-06-14 MickeM
661 * Fixed error message from external commands (better reporting now)
662
6632008-05-14 MickeM
664 * Fixed memoryleak in the service checker.
665     I am really sorry I usualy write better code then this.
666
6672008-04-03 MickeM
668 * Moved COM init to "core" (from WMI module)
669 + Added new Check command: CheckTaskSched Use like so:
670     CheckTaskSched +filter-exit-code==1 ShowAll MaxWarn=1 MaxCrit=1
671
6722008-03-21 MickeM
673 + Added command line support for process checks
674   New option: cmdLine will toggle so full command lines are used instead of just process names.
675 + Added regular expression matching to process checks
676   New option: match=regexp (match=strings is the default and "old" way)
677 + Added substring matching to process checks
678   New option: match=substr (match=strings is the default and "old" way)
679   This is *NOT* case blind so might be hard to use, plan to add case blindness to it in the future.
680 : Sample command: check_nt ... -v PROCSTATE -l cmdLine,match=regexp,.*exp.* -d SHOWALL
681 * Ohh yeah... it is 2008 this year... not 2007, fixed a few entries in the  :)
682 - BREAKING CHANGE! -- Removed TOOLHELPER API as PSAPI is simpler and toolhelp is really only useful on w9x (which I don't officially support)
683
6842008-03-20 MickeM
685 + Added host-lookupos for NSCA server (#149)
686 + Added option (cache_hostname=1|0) to cache the NSCA host name (Ie. only lookup once)
687 * Fixed service check: check_nt -v SERVICESTATE -l CheckAll so it works as advertised (#150)
688 * Fixed issue with check_nt MEMUSE/CPULOAD/UPTIME if something is "broken" they will now return an error instead of "0". (#134)
689   Added option debug_skip_data_collection to simulate this (just for kicks)
690
6912008-03-18 MickeM
692 * Added some more error messages to the NSCA module
693 * Added support for arguments to LUA module.
694   syntax: function debug (command, args) -- args is a table with all arguments
695
6962008-03-11 MickeM
697 ! 0.3.1 Released
698
6992008-03-08 MickeM
700 * Changed so log is now in Unicode format
701   Hopefully this will make it simpler to diagnose PDH issues in "strange locales".
702   If anyone hates this let me know and I will add an option to use "old ansi log".
703 * Fixed so the console is logged as ANSI (properly) and all Unicode's are discarded.
704   This means "strangeness" in Unicode and non-us-ascii chars on the console,
705    so for details refer to the log-file which is proper Unicode.
706 + Since log module is loaded "after" the client has booted I added a "hello" message that prints the current version
707    (if you find this annoying let me know, I will make it optional :)
708 * Fixed some issues in the registry handling
709
7102008-03-06 MickeM
711 * Fixed silly ordering bug with the <> syntax.
712
7132008-03-05 MickeM
714 + Added debug to new section [Eventlog], when enabled it will (log) what lines matched what, this is a pretty big performance overhead so don't run with this one.
715 + Added syntax to new section [Eventlog] used as a shorthand for the syntax to use as "default" (when no syntax=... option is given)
716 * Fixed an issue with eventlog and . matching.
717 + Added shorthand ! for != in "all" numeric filters (eventlog)
718 + Added <> (same as ! and !=) as NRPE breaks the use of ! (in "all" numeric filters (eventlog))
719   Try using: filter-eventType=<>warning to remove everything that is not a warning
720 * Fixed two spelling mistakes in the SysTray module.
721 * Fixed 64-bit issues with installer
722 * Fixed so installer uninstalls/installs the service
723 
7242008-02-26 MickeM
725 + Added installer
726 
7272008-02-22 MickeM
728 * Fixed issues in the NRPE module (now returns the correct status)
729 + Added a lot of "error log" for when the packet size in NRPEListener is not correct
730    (might make it simpler to diagnose problems)
731
7322008-02-20 MickeM
733 + Added new module NRPEClient that can act as a NRPE client, might be useful for testing things and
734   eventually for relaying events.
735   Usage: nsclient++ -noboot NRPEClient -H 192.168.0.1 -p 5666 -c check_something -a foo bar
736   This is an early concept so don't expect much...
737 * Fixed a bug in NSCA module (now it works again :)
738 + Added a command wrapper for the NRPECLient module so now it can act as a check command.
739   (No argument handling yet though), For a sample check out the [NRPE Client Handlers] section in NSC.ini
740
7412008-02-19 MickeM
742 + Fixed a buffer overflow in the NRPE socket handling.
743 
7442008-02-18 MickeM
745 + Added proper output handling to process subsystem (now you can execute programs that return "much" data.
746 + Added select support for SSL_write (now you can send "any amount of data" to the (SSL) socket.
747   Since check_nrpe doesn't do this it wont work in that end, but still...
748
7492008-02-16 MickeM
750 + Re factored ExternalCommand handling so NRPE and new module does the same thing.
751
7522008-02-14 MickeM
753 + Added so commands starting in host_ (NSCA Handlers) are sent as host-commands
754 * Fixed a copy constructor in NSCA Commands (now service checks are sent as service checks)
755
7562008-02-13 MickeM
757 + Added string_length to [Settings] as well (used internally) for all "injected" buffers.
758 * Fixed issue with scripts result truncated after 1024 chars
759    (now they return "all" output and thus you can use the NRPE settings I added yesterday :)
760 + Added hostname setting to [NSCA] section (must have been  when I did not add it before)
761 + Added to NSCA truncates output when to long.
762
7632008-02-12 MickeM
764 + Added new option for the [NRPE] section string_length which is the length of the NRPE strings
765   (notice you need to recompile the check_nrpe to match this value)
766 * Improved exception handling in the PDH collector (hopefully less deadlocks)
767
7682008-02-11 MickeM
769 + Added encryption support for NSCA module (about half of the algorithms are available,
770     if someone wants to use one not available let me know, and I will try to add it)
771
7722008-02-09 MickeM
773 + New module CheckExternalScripts to handle 1, external script (similar to the old NRPE but in its own module)
774   - Can Check batch/vbs/programs/*
775   - Works with NSCA module (if you don't want to have NRPE at the same time)
776   - Simpler syntax (discarded old and added new section for alias)
777   - Started to add "sample alias" to ease initial setup and give some nice ideas (please provide me with feedback on them)
778
7792008-02-08 MickeM
780 + Added some more default catch handlers (on the "core" side of plugin-calls).
781
7822008-02-07 MickeM
783 + Added default catch handlers to all wrapped plug in calls.
784
7852008-02-05 MickeM
786 * Fixed issue with checkEventLog (sometimes you got the wrong message back)
787
7882008-02-04 MickeM
789 *** Happy Birthday bogi!! :)
790 * Fixed issues with performance counter rendering (mainly checkDisk)
791
7922008-02-03 MickeM
793 + Added encryption subsystem to NSCA module (still no mcrypt support, but at least you have "xor" and passwords)
794 + Added API for scripts to register commands
795 + Added command descriptions (for some modules)
796 * Fixed issue in NRPE that displayed a console window when running commands
797 * New improved "inject" dialog from the system tray
798   Lists available commands, and shows command descriptions and a lot of other improvements.
799 + Added an internal log windows that displays log in real-time.
800 + Fixed some issues with the dialog procs (should work smoother now, especially Termination)
801
8022008-02-02 MickeM
803 * Might have fixed the "missing eventlog messages" problem.
804 + Added %count% parameter to syntax which (when used with unique) will display the number of hits for each message displayed.
805
8062008-01-27 MickeM
807 * Fixed a memory-leak in format_time
808 * Fixed so time/date is displayed in "local time" (not UTC) for the eventlog check
809 + Added %message% to eventlog check. Will display the "proper formated eventlog message" as in the eventlog viewer.
810   For this to work you need to have the descriptions flag set
811   In short: /nrpe -H 192.168.0.147 -c checkEventLog -a truncate=1024 "syntax=%generated%: %message%" descriptions=true file=System MaxWarn=1 MaxCrit=1 filter+eventType==error filter+generated=\<12h filter=new filter=all filter=in
812 + Added option "unique" to CheckEventLog If this is present only unique errors will be returned.
813   The uniqueness is defined by event-log, event-source, event-id and event-category.
814
8152007-12-16 MickeM
816 + A lot of new features in the LUA module only "arguments" missing (as well as exposing more of the API)
817 * Changed some exceptions that were thrown wrong
818
8192007-12-11 MickeM
820 + Added support for index-lookups of PDH counters (hopefully *all* locale problems are now fixed (yeah right))
821
8222007-12-10 MickeM
823 + Added initial draft for LUA module
824
8252007-12-09 MickeM
826 + Added a check if the service is started when running with /test so you get a warning
827 + Improved the socket thread with:
828    * a default-catch
829    * If the socket fails to start we still wait for it to shut down (no error message)
830 + Added first version of the NSCA agent (NSCAgent.dll)
831   (no encryption support as of yet, but will come)
832
8332007-12-04 MickeM
834 ! 0.3.0 Released
835
8362007-12-01 MickeM
837 * Fixed issue with date formating in FILEAGE
838
8392007-11-29 MickeM
840 * Fixed issue with date formating in FILEAGE
841
8422007-11-28 MickeM
843 ! 0.3.0 RC-1
844 * Fixed some UNICODE issues with process-listings
845 + Added an error message if the "detected" process enumeration method is not available.
846 + Fixed some more Unicode issues Password encrypt/decrypt: #107
847 * Fixed Unicode issues with "external programs" #109
848 * Fixed so default string for check_nt:s FILEAGE command is "delta" is 5 minutes ago (and not absolute ie. 1970...), Issue #39
849 + added support for  <date strings> to check_nt:s FILEAGE command, Issue #39
850    append: .<date string> if you want to use a "custom date" like so: ... -v FILEAGE -l c:\\windows,Date: %Y-%m-%d %H:%M:%S" -w 5 -c 6 ...
851    Only the above listed %<char> works, and default to 0 so might not be to pretty but works...
852
8532007-11-26 MickeM
854 + Fixed a socket issue (erroneously reported "Could not read NSClient packet from socket :(")
855 * More 2k5 build tweaks
856
8572007-11-23 MickeM
858 * Converted to Unicode (damn sometimes I **HATE** C++)
859 + Added support for escaping " on the /test syntax so now you can do: CheckWMI MaxCrit=3 "MinWarn=1" "Query:load=Select * from win32_Processor"
860
8612007-11-22 MickeM
862 * Fixed so the "default path" is correct even when running as a service (issue: #96)
863
8642007-11-21 MickeM
865 * Fixed process counter so checkProcState  now return the *correct* number (previously it was correct-1)
866 * Fixed some missing exceptions that were not caught
867 + Added "AliasCol" option to CheckWMIValue to allow a column to be used as "alias" for a result set:
868     CheckWMIValue -a "Query=select Caption, ThreadCount from Win32_Process" MaxWarn=50 MaxCrit=100 Check:threads=ThreadCount AliasCol=Caption
869    will give you: "System threads: 98 > warning, svchost.exe threads: 87 > warning"
870 - Removed  from SVN (as it is old and outdated and no longer used)
871
8722007-11-20 MickeM
873 + Added new option to CheckSystem to override detected language (force_language=0x0014)
874
8752007-11-19 MickeM
876 * Fixed a minor issue in reading registry keys
877 + Added -noboot option to startup used for running command line utilities without booting the client
878   "nsclient++ -noboot RemoteConfigruation ini2reg" for instance
879 + Added fall back to try <module> and <module>.dll if the module was not loaded (when running command lines)
880 * Migrated 2008 project files to new name and back ported to 2005 project files.
881
8822007-11-16 MickeM
883 * Fixed an NRPE issue I added when I improved the sockets_timeout (now SSL works as well :).
884 + Added sample VBS script and definitions
885
8862007-11-15 MickeM
887 * Improved error message when external NRPE command failles.
888
8892007-11-14 MickeM
890 + Added multi-line output support ( issue #91 )
891 * Improved error handling for external commands
892 * Fixed an issue with NRPE/NSClient socket-reading (introduced by the socket_timeout)
893 + Added an English fall back if "local" language PDH counters fail.
894
8952007-11-12 MickeM
896 + Added option to configure socket_timeouts (default is now 30 seconds) should (I hope) fix issue #85
897
8982007-11-11 MickeM
899 + Added option to configure the behavior of CheckService CheckAll (#64)
900
9012007-11-08 MickeM
902 + Added CheckWMIValue to check result-values from a WMI Query
903 * Changed so performance values are "collapsed" i.e. 75362115584 = 70.0G (#89)
904    If anyone don't want this let me know and I will make an option for it.
905
9062007-11-06 MickeM
907 + Added CLI interface to CheckWMI to check queries
908
9092007-11-04 MickeM
910 * Rewritten WMI handling as well as checks so things should be more useful now (cf. the wiki page for details)
911
9122007-10-29 MickeM
913 * Restructured build and include to work from CLI
914 + Started to add makefiles to build from CLI
915 + Added Finnish counters (#98)
916 * Fixed performance counter issue with check_nt (#99)
917 
9182007-10-06 MickeM
919 + Added auto-upda-te of versions and dates on build to make versions better updated.
920 + Fixed x64 build and cleanup a bit.
921
9222007-09-15 MickeM
923 + Added better error messages (now return codes are displayed as text). Not implemented all over yet but the infrastructure is there.
924
9252007-09-11 MickeM
926 + Added Dutch performance counters to counters.defs
927 + Added Spanish performance counters to counters.defs
928 + Added #69 [includes] directive to INI-file to include other files
929 * Fixed #75 (spelling issue)
930
9312007-06-23 MickeM
932 * Might have fixed #53 I was not able to get the problem locally but I have fixed the problem ias at op5 discovered at least...
933 * Fixed the "check memory" issues for real this time.
934 * Fixed problem with : in counter names #50 (anything starts with \ is considered a counter so if you use aliases with \ this will break things for you.
935
9362007-06-20 MickeM
937 * Fixed #24 crash in NSClient++.exe CheckSystem listpdh | debugpdh
938 * Fixed #62 Problems with CheckServiceState and services with spaces.
939
9402007-03-06 MickeM
941 ! 0.2.7 released
942
9432007-03-05 MickeM
944 * Fixed -v FILEAGE check_nt (NSClient) check.
945 * Added license agreement header to all files
946
9472007-03-04 MickeM
948 + Added script_dir option to NRPE section as well as some sample scripts in the scripts/
949   subdirectory. The script_dir will use all files in this directory as scripts for NRPE
950 + Added Japanese counters to counters.defs from patch (thanx!!!)
951
9522007-02-25 MickeM
953 + Added possibility to check many memory checks in one go, just stack type options.
954     type=paged type=physical etc...
955 * Fixed a performance check bug in the last nightly.
956 * Fixed a potential crash when a malformed check-file-age command was issued.
957 + Added support for more then and NSClient command
958 + Added net mask support to allowed_hosts (try with 192.168.0.1/24 and such)
959 
9602007-02-22 MickeM
961 + Added debug output to see if the socket is bound and/or has shutdown.
962 * Fixed a potential bug in the thread manager.
963 + Added configuration option for suppressing performance data to the NRPE section.
964   Set performance_data=0 to stop sending performance data to nagios
965 + New (better?) (simpler?) event log checking
966 + Added option to most commands (ignore-perf-data) to suppress performance data
967 + Added option CheckAll for checking all auto-start services to checkServiceState.
968   Also an exclude=<service> to exclude checking that.
969 * Fixed return syntax for PROCSTATE nsclient
970
9712007-02-21 MickeM
972 * Fixed "broken password check" (again) in NSClient listener (this time it is correct! :)
973
9742006-12-02 MickeM
975 + Managed to build so it works on NT 4.0 (SP6a) and W2K3
976 * Fixed "broken password check" in NSClient listener
977
9782006-11-18 MickeM
979 + Added support for empty NRPE checking (i.e.. chec_nrpe without a -c argument)
980 * Added error message when detected language is missing from counters.defs
981 + Added Swedish locale to counters.defs (yes, I switched to Swedish XP on my computer :)
982 * Fixed : (and possibly other problems) in counters when checking from check_nt (via NSCLient protocol)
983 + Added CheckAllExcept to CheckDrive to check all except the specified drives.
984 * Fixed a display error in the various size functions (1000-1024 byte was displayed incorrectly)
985
9862006-10-05 MickeM
987 * Yayyy!!! (first fix in a looong while :)
988 * Fixed a W2k3 "bug" (actually just an incorrect error) but the:
989   "e .\PDHCollector.cpp(130) Failed to query performance counters..." is no more...
990 + Added option to NRPE/NSClient section to not-cache host names (for dyndns etc.)
991   NOTICE this is "not safe" really in so far as someone might hi-jack your DNS and quickly gain
992   access to your nagios box (probably only a theoretical problem but hey! :)
993   NOTICE this is "slow" since all hosts in the list are "looked up" each time you get a NRPE/NSClient
994   request it will be "slow" but I think it is not that much of a problem really.
995   NOTICE I don't have the possibility to test this so feel free to report if it works and if it doesn't.
996   Set cache_allowed_hosts=0 to disable host cache
997
9982006-04-04 MickeM
999 * Fixed a few more bugs to the INI/REG readers
1000
10012006-04-02 MickeM
1002 * Could all magicians stop trying to kill me?
1003   *Please* i don't like to die!
1004
10052006-03-31 MickeM
1006 * Damn necromancers! stop 0wning my ass all the time!
1007 
10082006-03-29 MickeM
1009 + Added API for saving/reading settings
1010 
10112006-03-28 MickeM
1012 + Added REG/INI parsers
1013 * *NOTICE* You need to add an option (use_file=1) to your nsc.ini file or new builds wont work.
1014
10152006-03-25 MickeM
1016 * Oblivion f*cking roxx!
1017
10182006-03-02 MickeM
1019 * Fixed bug in INI-file reader (memory leak)
1020
10212006-03-01 MickeM
1022 * Fixed bug in CheckFile (now dates work correctly)
1023
10242006-02-26 MickeM
1025 + Added syntax option to CheckFile (%filename%, %creation%, %access%, %write%, %size%).
1026
10272006-02-25 MickeM
1028 * Fixed Sections problem (now sections can be any size)
1029 + Added bind_to_address option to both NRPE and NSClient section in the INI file.
1030   Allows you to bind the listener to a specific IP address (only dotted number not host name).
1031   This might break things as I had to do some internal rewrite of the Socket classes so be careful :)
1032 * Disabled default-debug logging (as things are fairly stable, you can still enable it by using debug=1 in the NSC:ini file)
1033 * "Fixed" socket backlog to use "max responsible value" as opposed to "10" if no value is specified.
1034 + Added option socket_back_log to both NRPE and NSClient section that allows you to tweak the "back-log" of incoming connections to keep.
1035   This is an advanced setting and should not be used. If you get "connection refused" when running many client this might be something you want to tweak though.
1036   And if you then start getting "Socket timeout" you might wanna tweak the timeout value as well because larger value here means it takes "longer" to process a socket.
1037 - I have looked into the event log problem and dates seem to work here so if anyone still have problems (use the syntax option to debug) let me know.
1038 * Moved listpdh and debugpdh into the CheckSystem module
1039 * Removed PDH dependencies from "core exe" means you can run NSClient++ without PDH (though you cant use the CheckSystem module)
1040 
10412006-02-2? MickeM
1042 + Added new Interface for Modules (NSCommandLineExec that allows modules to execute things give from command line.
1043   Syntax is NSClient++ <module name> <command> [arguments] and if a module doesn't support this it is simply ignored.
1044 + Added new install/uninstall command to SystemTray module:
1045   NSClient++.exe SystemTray install
1046   NSClient++.exe SystemTray uninstall
1047   That will install/uninstall the system tray module this sets the "Allow Service to Interact with Desktop" flag for the service.
1048 * Removed the "Allow Service to Interact with Desktop" flag from the /install option so that it no longer defaults to on (see commands to set this above).
1049 * Fixed so checkProcess isn't case sensitive.
1050 * Added (not finished) syntax option to event log checker to format the outputted data
1051
10522006-02-12 MickeM
1053 + Added support for host name resolve to allowed_hosts
1054
10552006-02-08 MickeM
1056 ! Fixed filter-eventID in EventLog module (now works for all IDs regardless of severity state)
1057 + Added new filters to EventLog (filter-severity that can filter based on event severity success, error, warning, informational)
1058
10592006-02-07 MickeM
1060 + Added new filter option to eventlog filter-eventID
1061 + Added new operator to all numeric filters in:number,number,... etc. (for instance filter-eventID=in:123,456,789 to check for lists.
1062
10632006-02-05 MickeM
1064 + Added CheckFile check command
1065   This new command (in development) will allow various file checks such as age, size, date, etc on single or multiple files.
1066 + Added FILEAGE support to NSClient
1067 + Started to convert the web page to WIKI
1068 
10692006-01-21 MickeM
1070 + Added WMI Check module (early alpha)
1071   This is an extremely early alpha more to see if there is an interest and how to progress with it.
1072   To use the WMI module enable the WMICheck.dll (nsc.ini) and then run the following check:
1073   CheckWMI MaxWarn=10 MaxCrit=15 "Query:load=Select LoadPercentage from win32_Processor"
1074   The Max* are as every other check and sets limits.
1075   The Query works similarly to other check commands i.e.. Query:<name>=<WMI query>
1076   So any other WMI query should work (notice this is experimental and not stable and has virtually
1077   no error handling so it is likely to crash nsclient if you ask anything "non working".)
1078   I would *really* *really* like to get feedback on how to expand this concept to work better so feel free to come with feedback.
1079  * Fixed NT4 /install (should work now!)
1080
10812006-01-02 MickeM
1082 * Fixed ChangeServiceConfig2 on NT4
1083 + Added support for more then 4GB memory (8GB?)
1084   Since I don't have this much memory this needs to be verified...
1085 * Fixed syntax of performance data
1086
10872005-09-24 MickeM
1088 * Fixed memory size bug (free and used were swapped)
1089
10902005-09-20 MickeM
1091 + Added option to debug all PDH counters /debugpdh
1092
10932005-09-17 MickeM
1094 + Added support for checking service by display name
1095
10962005-09-03 MickeM
1097 * First off, sorry for lack of updates, but was on vacation :)
1098 + Added ShowAll=long to CPULoad
1099 + Added several new types to checkMem (type=paged, type=physical, type=page, type=virtual)
1100
11012005-07-31 MickeM
1102 + /install now sets the service to autostart
1103 * Did some cleanup of minor code sections
1104 * (done before but not reported i think) /listpdh option added to list all PDH counters (nsclient++ /listpdh)
1105 + Added service description
1106 * Event log reworked (again) this time I hope it is better (and even useful, but syntax has changed)
1107
11082005-07-26 MickeM
1109 + Added support for ShowAll=long (to show long and short info, only applies to some areas, but available everywhere)
1110 + Extended Drive and memory check syntax to facilitate both Free and Used space checks: MaxWarnFree / MaxWarnUsed etc)
1111
11122005-07-19 MickeM
1113 * Changed thread API to use _creatthreadex as opposed to _creatthread (works better now!)
1114 * Fixed UNKNOWN return code (was 4 should have been 3)
1115
11162005-07-16 MickeM
1117 * Fixed drive checks from NSClient
1118
11192005-07-11 MickeM
1120 * *ALOT* of bug fixes and enhancements all checking code has been centralized and rewritten also my internal check scripts
1121   have been extended to check a lot more things.
1122   *NOTICE* that EventLog has not been upgraded yet neither has the documentation.
1123 + Added MaxWarnCount / MinWarnCount to checkProcState to check number of processes running
1124
11252005-06-09 MickeM
1126 * Escapes " in NRPE commands in the NSC.ini
1127
11282005-06-05 MickeM
1129 * Created configuration interface (not released yet)
1130
11312005-06-03 MickeM
1132 * Created interactive installer (not released yet)
1133
11342005-06-02 MickeM
1135 * CheckEventLog reworked...
1136
11372005-06-01 MickeM
1138 * CheckSystem auto detects windows version and language.
1139
11402005-05-29 MickeM
1141 * Fixed PROCSTATE and SERVICESTATE return state.
1142 + Added support for individual size in CheckDriveSize and CheckFileSize (size has to be specified before a drive/path)
1143 * Fixed performance data for drives (and possibly other places)
1144
11452005-05-23 MickeM
1146 + Added obfuscated password support
1147 + Added some more debug info on commands (return code, and input args)
1148 + Added some more comments to the NSC.ini
1149 + Added central password "override"
1150 + Added central "host override"
1151 + Fixed bug with external commands always getting WARNING state
1152
11532005-05-22 MickeM
1154 + Added debug output for command
1155 + Added timestamps for log-to-file (date_mask to configure format)
1156 + Added support for "no password" with check_nt
1157 + Added log of bad password on NSClient requests.
1158 * Some threading issues fixed (I hate threading :)
1159
11602005-05-19 MickeM
1161 * Verified NT4 compatibility
1162
11632005-05-18 MickeM
1164 * Fixed bug in NSC.ini (section title for Check System was wrong)
1165 + Added multitasking for plug-ins (now two plug-ins can handle requests simultaneously)
1166 * Fixed some minor issues here and there
1167
11682005-05-15 MickeM
1169 + Added NRPE support for checkCounter
1170 + Updated documentation
1171 * Make check commands ignore case
1172 + Added CheckHelpers module to alter the result of various check and similar things
1173
11742005-05-14 MickeM
1175 + Added support for Volumes (CheckDisk)
1176 + Added support for checking all drives of a certain kind
1177 + Added support for altering filter (makes it possible to check removable drives)
1178 + Created web page and better documentation
1179
11802005-04-20 MickeM
1181 + Added multitasking to socket listener (it can now handle multiple connections)
1182 * Fixed bug in NSClientListener now "seqv" in check_nt shouldn't happen.
1183 + Added COUNTER support to NSClient and CheckSystem
1184
11852005-04-19 MickeM
1186 + Added SSL support
1187 + Added a lot of new options
1188 + Added documentation
1189 * Renamed and restructured NSCLientCompat to CheckSystem
1190 * *ALOT* of fixes all over
1191 : We are now starting to get to something that is "stable"
1192 : This means that soon you might actually be able to use this.
1193 
11942005-03-28 MickeM
1195 * Changed the Thread class a bit (mutex -> signal, and CreatThread does not return the instance)
1196 * Moved settings "keys" fro NRPE to config.h
1197 * Changed build options (added Distribution) which builds a zip file under ./dist (requires 7z installed)
1198 * Minor tweaks to error/debug logging and small fixes "here and there"
1199
12002005-03-26 MickeM
1201 + NRPE Support (very basic, no encryption, and nothing fancy)
1202 * Socket classes rewritten
1203 + Added NSCModuleHelper::getSettingsSection to the API
1204
12052005-03-22 MickeM
1206 * Fixed NSClientListener return codes for basic commands
1207 * Extracted arrayBuffer code into new files under /include
1208 * Minor tweaks in the API (fixed minor issues)
1209 + Added some basic "tests" to a few commands (getToken, and arrayBuffer related)
1210
12112005-03-21 MickeM
1212 * Fixed BUG in inject command (now things should "work" again, but far from stable)
1213 + Added NRPE return code
1214 * Fixed some return states to NSClientListener (not verified yet, but soon they will be back in order :)
1215
12162005-03-20 MickeM
1217 * Fundamental API changes (due to NRPE compatibility)
1218   - HandleCommand has changed
1219   - Inject has changed
1220   - Most API calls have new "return codes" (typedef:ed INT to allow for return code compiler checks)
1221   - A lot of the old return codes have changed
1222 + Preliminary NRPE support (can parse and execute incoming requests, cant return data yet, and no encryption)
1223 + New SimpleSocket in include/ will be used as base class for Listeners
1224 * A lot of rewrite to the NSC API
1225
12262005-03-19 MickeM
1227 * Re factored out NSCLient Listener as a separate module
1228 + Added initial NRPE listener module (not yet implemented only a shell)
1229 * Changed Module API (Inject function has new syntax)
1230 + Added some tokenizer function to charEx
1231 + Added new wrapper function to inject Command
1232 * Minor changes in relation to refactor work
1233
12342005-03-01 MickeM
1235 * Improved thread safety in Core
1236 + Added exception handling and logging in PDH code
1237 * Various fixes all over the place
1238 + New module for check size of files/directories
1239 * Changed build to Dynamic link
1240 * Added regular expression support for EventLog checker
1241
12422005-02-22 MickeM
1243 + Added documentation
1244
12452005-02-17 MickeM
1246 * NSClient issues fixed
1247 * System Tray issues fixed
1248
12492005-02-14 MickeM
1250 * Initial SourceForge release
Note: See TracBrowser for help on using the repository browser.