source: nscp/changelog @ 40fca56

0.4.00.4.10.4.2
Last change on this file since 40fca56 was 40fca56, checked in by Michael Medin <michael@…>, 19 months ago
  • Added initial SMTPClient to allow sending messages via SMTP. Still requires template support and configuration options (mainly PoC right now).
  • Fixed unicode log issue (still not sure message format is correct)
  • Renamed Message to log in internal wrapper API
  • Fixed issue in settings old (regarding readin new keys, not 100% supported yet)
  • Property mode set to 100644
File size: 60.5 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 * Fixa dependonservice LanManWorkStation (old win)
6 * Fix RtlStringFromGUID problem on NT4
7
82011-11-09 MickeM
9 * Added initial SMTPClient to allow sending messages via SMTP.
10   Still requires template support and configuration options (mainly PoC right now).
11 * Fixed unicode log issue (still not sure message format is correct)
12 * Renamed Message to log in internal wrapper API
13 * Fixed issue in settings old (regarding readin new keys, not 100% supported yet)
14
152011-11-06 MickeM
16 * Had some "vacation" so no updates for a while
17 * A lot of fixes to the NSCA parts (now 100% compatible with old settings file)
18 * Added option to read sections (to plugin API)
19 * Fixed issues in settings wrapper so child paths are also mapped (not just keys)
20 * Many fixes related to NRPE/NSCA/*
21 * "RC quality" expect RC within the week (only need to fix default config file somehow)
22 * Upgraded all unit test to use the simplified API
23 * Fixed a some unicode issues in PythonScript module
24 * Improved threading a bit
25 * Fixed CheckSystem (service check)
26 * Fixed duplicate keys (when replacing) in old settings client
27 
282011-10-21 MickeM
29 * Some more threading issues in Python (works perfectly(?) now)
30 * Refactored the tests a bit making test suites runable from a central hub
31 * Fixed soo everything builds and works on Linux
32
332011-10-19 MickeM
34 * Fixed some threadding issues in PythonScript
35 * Still working on refactoring the unittest helpers a bit
36
372011-10-16 MickeM
38 * Fixed issue with loading zero-byte UTF-8 config files
39 * Fixed some issues with settings subsystem (debug log as well as createing instances for --generate)
40 * Added ability to set event log to real-time
41 * Added support for multiple eventlogs in real-time
42
432011-10-09 MickeM
44 * Real-time CheckEventLog working (still only for one, and I think application log)
45 * Added python tests to validfate that Real-time eventlog is working.
46 * Fixed som defects here and there (now builds on Linux again)
47 * Fixed so it builds in "debug mode"
48 * Fixed issue in grammar which caused infiniate loop in som cases
49 * Fixed so error rendering in eventlog works with "infininate number of argumnets"
50 * Added support for targeting execs (in API)
51 * Fixed some invalid return messages
52 * Streamlined submissions wrappers to be more inline with "other wrappers"
53 * Fixed a myrriad of minor python script bugs
54 * Added sleep command (which sometimes causes issues so use with care)
55
562011-10-06 MickeM
57 * Initial command for createing eventlog records
58 * Initial real-time eventlog checker
59 * Fixed obscure c-tor issue with filters
60 
612011-09-27 MickeM
62 * Fixed many many issues all over the place as I tried to make things working for my pressention at nwc.
63 
642011-09-24 MickeM
65 * Started on NSCA unit-tests in python
66 * Refactored channel API a bit to better suite NSCA (and how it actually works)
67 * Changed how headers are created (nothice this might have broken NSCP stuff, havent checked)
68 * Created helper lib for Python Unittests
69
702011-09-21 MickeM
71 * Renamed NSCAAgent to NSCAClient (to be consistant)
72 * Created a NSCAServer module (again for consistancy)
73   This will be the defenition of the new "channels" so keep a lookout in the next few weeks
74
752011-09-18 MickeM
76 * Implemented first version of DistributedClient and DistributedSServer which work so now we have a proper message based transport.
77   Still a lot of rough edges such as cookie and authentication support is hard coded.
78   We also need a proper two way distributed server as well as implement "all" payload types.
79
802011-09-11 MickeM
81 * Massive overhaul here and there
82 * Added new helper for handling "targets" (so they are the same)
83 * Extracted "command line handling" so all clients will work the same
84 * Extracted command processor to a common class to make all clients work the same
85 * Added initial zeromq stuff (nothing usable)
86 * Added an implementation layer for NSCP protocol parsing (so zeromq stuff can reuse it)
87 
882011-09-05 MickeM
89 * Cleaned up some dependencies (on config.h)
90 * Fixed invalid data in config.h.in
91
922011-09-03 MickeM (0.4.0.93)
93 * Created a protcol buffer free version of the python test script
94 * Upgraded to new version of simpleinin class
95 * Added new component for python protocol buffer library to installer
96 * Added installer for unittests to test.py run like so:
97   nscp --client --module PythonScript --command execute-and-load-python --script test.py
98 * Fixed so settings are created if not existing
99 * Fixed so plugins are not loaded in client mode
100 * Fixed so core is booting correctly in client mode
101 * Added new option --settings --switch <context> to allow switching context without migrating data
102 * Fixed unicode error on linux (settings file)
103
1042011-09-02 MickeM
105 * Fixed several issues in PythonScript
106 * PythonScript supports loading multiple instances as well as scripts
107 * Added some basic channel test to test.py script (the idea is that this will become "unit tests" eventually)
108
1092011-09-01 MickeM
110 * Implemented registration of channels (so no longer faked)
111 * Added settings key to change the NSCAAgent channel name
112 * Addded proper channel handling to PythonScript module
113 * Improved error handling in channels API
114 * Rewrote wrapper API to use templates and classes instead of macros (ish)
115 * Improved the internal plugin wrapping API to support multiple plugin load
116 * Fixed so PythonScript module supports multiple plugin load (with new argument for plugin_id)
117 * Added API for registrying routers and handling routing (almost there now)
118
1192011-09-01 MickeM
120 * Fixed issue with messages due to new API
121
1222011-08-31 MickeM
123 * Added support for loading same plugin twice (in different sessions)
124 * Added preliminary support for routing passive checks
125
1262011-08-30 MickeM
127 * Fixed uncaught exception in test client
128 * Added protocol buffers to source (needs to be added to installer as well)
129 * Added example python protocol buffer handler
130 * Added lib folder to python scripting (and automagicall load)
131
1322011-08-29 MickeM
133 * Fixed some *nix build issues...
134
1352011-08-25 MickeM
136 * Fixed some issues in the NSCPClient
137 * Fixed debug log issue in core
138 * Added support for "pushing" passive checks via NSCP
139
1402011-08-24 MickeM
141 * Sever refactoring of the new API (there is now two pb files ipc for NSCP protocol and plugin for plugin communication)
142 * Cleaned up API helper functions
143 * Fixed client argument for "client mode" to allow arbitrary arguments
144 * Cleaned up the argument processor code now requires "mode" to be first argument
145
1462011-08-23 MickeM
147 * Fixed issue in the NSCP server
148
1492011-08-22 MickeM
150 * Added initial NSCP protocol implenmentation (very vrude and not really usefull yet)
151 * Fixed so it builds on linux
152 * Fixed so automagic plugin renaming add lib<LIB name> on *nix.
153 * Fixed so it works on linux (fixed issues with timeout)
154
1552011-08-16 MickeM (0.4.0.85)
156 * Added support for remote WMI checking using target/username/password options like so:
157    CheckWMI target=192.168.0.123 user=\\foobar password=foobar namespace=root\\cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"
158 * Added support for looking up targets to CheckWMI
159   CheckWMI target=my_test_xp MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"
160   Where <target> is defined under /settings/targets as well as /settings/targets/my_test_xp
161
1622011-08-15 MickeM
163 * Readded allowed hosts function
164 * Moved default socket options to /settings/default/socket
165 * Added more default socket options
166 * Added support for target in default plugin helpers
167 * Added remote WMI commands
168 * Added target section under /settings/targets
169
1702011-08-14 MickeM
171 * NRPEClient now works on linux
172 * Added "portable" settings map file to installer (so it will work with old installed versions)
173 * Rename Function to Registry in PythonScript API as well as some other function renames
174 * Started to clean up the helpers around the API
175 * Added support for execute to PythonScripts to execute commands
176 * BUG: just realised that static plugin instances prevent multiple instances :)
177   Will fix but not now as it is not important (for me)...
178 * Added initial support for channels to PythonScript
179   Core still lacks support for subscribing to arbitrary channels
180
1812011-08-13 MickeM
182 * Added support for command line execution to PythonScript module
183 * Readded support for specifying module on command line with --client mode
184 * Fixed some issues with the NRPEClient module
185 
1862011-08-12 MickeM
187  * Finnished (rough) adding back command line exec (with modern API)
188  * Fixed so installer uses correct name for dll:s (now Server not Listsener)
189 
1902011-08-11 MickeM
191  * Started to add back command line exec (with modern API)
192 
1932011-08-10 MickeM
194 * Fixed linus issues and defect
195 * Fixed some issues in the test python script regarding how prefix is handled
196 * Fixed PythonScript module to actually use the correct function map :)
197 * Fixed so it builds and runs on linux (but parser had issues so disabled som grammar rules whichneeds to be enabled again)
198 * Added a lot of freatures and cleand up the PythonScript module
199 * Started to merge som features from PythonScript back to Lua script
200 
2012011-08-07 MickeM
202 * Fixed a lot of issues with PythonScript module adding suport for alias and "raw command processing"
203 * Fixed issue with loading plugins and aliases as well as duplicate plugin detection
204 
2052011-08-01 MickeM
206 * Added new module: PythonScript
207
2082011-07-25 MickeM
209 * merged in all 0.3.9 changes
210 * refactored where filter to be "non template" to drastically reduce compile time (as well as potentially size if I ever go dll instead of static link)
211 * streamlined checkeventlog toi be same as "the other" where filters as well as dropped support of "old" syntax.
212
2132010-02-05
214 * Multiple fixes all over the place
215 * Availible modules: CheckExternalScripts, CheckHelpers, FileLogger, NRPEClient, NRPEServer, Scheduler
216 ! Performance data is still missing (will be for a while yet)
217 
2182010-01-31 MickeM
219 + Added google protocol buffers
220 ! Changed internal handle command logic (now uses protocol buffers)
221 - Removed (temporarily) performance data (due to protocol buffer changes)
222
2232010-01-19 MickeM
224 + Rename NRPEListener to NRPEServer
225 + Added NRPEServer to CMake build
226
2272010-01-xx MickeM
228 + Added Scheduling module
229 
2302009-10-11 MickeM
231 + Added argument support to NRPE Client
232   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.
233
2342009-09-20 MickeM
235 * Fixed alias in CheckWMI (now works)
236 + Added columnSyntax to CheckWMI to allow formating of returned data (default is %column%=%value%)
237 + Added columnSeparator to CheckWMI to allow formating of returned data (default is ", ")
238
2392009-09-13 MickeM
240 * Fixed some more issues with the installer should not "work" on Windows 2008 as well as slightly simpler to configure.
241
2422009-09-06 MickeM
243 + Added new option to [NSCA Agent] string_length=<size> of the NSCA_MAX_PLUGINOUTPUT_LENGTH option on the NSCA server.
244 * Readded all the "installer configuration" crap which I accidentaly removed when I fixed the installer... *sigh*
245
2462009-08-30 MickeM
247 + Added -c and -d command line options like so:
248   NSClient++ -c CheckFile2 path=c:\test pattern=*.txt MaxCrit=1 filter+written=gt:2h
249   NSClient++ -c <command> <argument 1> <argument 2> ...
250   -d Is the same thing but with debug enabled.
251 + Added uninstall of old client (sort of broken but works)
252
2532009-08-29 MickeM
254 * Fixed issue with CheckFile (directory)
255 * Rewrote the CA:s in the installer to work "better" (hopefully) in general it should be have more like a propper installer.
256
2572009-07-18 MickeM
258 * Fixed issue with no loggers avalible and "memory leak"
259 * Added "firewall exception" to installer
260 * Fixed an issue with the socket data buffer
261 * Added new option to NSC.ini [NSCA] socket_timeout=30 (timeout in seconds when reading from NSCA sockets)
262 * Fixed issue with NSCA socket.
263
2642009-07-05 MickeM
265 * Fixed issue with CheckExternalScripts and script_dir: not adding the commands properly.
266 * Fixed issue with CheckExternalScripts and script_dir: not using relative paths (#310).
267
2682009-06-20 MickeM
269 * Fixed issue with CheckDisk and paths not working out properly
270
2712009-06-10 MickeM - 0.3.6
272 ! Release the new version
273
2742009-06-10 MickeM
275 * Fixed so CheckEventLog only reports invalid buffersizes once
276
2772009-06-07 MickeM
278 * Fixed issue with CheckFileAge incorrectly working in recursive mode.
279 * Finalized the installer
280
2812009-05-22 MickeM
282 * Fixed time_delay option in NSCA config (now uses the correct base was 1000 times to large before)
283
2842009-05-21 MickeM
285 * Fixed issue with eventlog parsing and 64 bit machines (descriptions option)
286 * Fixed issue with "modern windows" and installing the service (should not have the correct privlaiges)
287
2882009-05-17 MickeM
289 * Changed default buffer size for process enumeration (64K now instead of 1K should I hope work better on 64bit OS:es)
290
2912009-05-10 MickeM
292 + Added write support for modules to installer
293
2942009-05-03 MickeM
295 * Fixed another quite serious memory leak!
296   And this was a hard one, took me hours and hours and hours (read weeks) to track down, but here we are!
297 * A lot of other fixes as I have been through much of the code looking for the memmory leak above.
298
2992009-03-30 MickeM
300 + Added new option to NSCA module for specifying report options.
301        report=all (report=warning,critical) etc etc to specify which kind of return datat to get default value is all.
302 + Added so password and host ate stored in the installer (if changed)
303
3042009-03-29 MickeM
305 * Fixed a lot of issues with the installer and added a start on exit (and donate) on the finnish dialog.
306
3072009-03-15 MickeM
308 * New service name (displayname)
309 * New service description
310
3112009-03-14 MickeM
312 * Rebuilt installer UI (still missing write config function)
313 * Added debug entry to log filename used by debug log metrics.
314 * Fixed so alias will not require the allow_nasty_metachars option set under external sripts module.
315
3162009-03-02 MickeM
317 * Added catch handlers and error logging to NSCA Thread
318 * Fixed issue with CheckProcState and administrator login!
319 + Added debug module to installer
320 + Added option max-dir-depth to CheckFile and CheckFile2 like so:
321   CheckFile "file=c:\test\*.txt" filter-size=<24g "syntax=%filename%: %size%" MaxCrit=1 max-dir-depth=0
322   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)
323 * Fixed issue with finding sub-folders and *.txt now it will always look for subfolders if they are present
324
3252009-02-26 MickeM
326 * Fixed issue with debug logging (not it can be disabled again)
327
3282009-02-23 MickeM
329 * Fixed build issues so NSCA now has all cryuptos avalible (verify with nsclient++ /about)
330
3312009-02-11 MickeM
332 * Fixed so that performance data is always(?) renderd regardless of if we have bounds or not.
333   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).
334
3352009-02-06 MickeM
336 * Fixed so that arguments ($ARG1$) are parsed properly for alias in CheckExternalScript
337
3382009-02-05 MickeM
339 * Fixed so the error message for "to small eventlog buffer" specifies the required size.
340 * Changed so that event log buffer problems are "ignored in the result" (still logged in the error log).
341
3422009-02-03 MickeM
343 * Added support for changing the time when using NSCA with the time_delay in NSC.ini
344   time_delay=+4h or time_delay=-1h etc should can now be used when system time not the same as NSCA time.
345
3462009-01-30 MickeM
347 * Added support for changing name and description of service from the /install command line
348   NSClient++ /install [gui] [start] [service name] [description]
349   NSClient++ /uninstall [gui] [stop] [service name]
350   NSClient++ /start [gui] [service name]
351   NSClient++ /stop [gui] [service name]
352
3532009-01-28 MickeM
354 * Slightly improved error handling around socket creation
355 * Fixed some pretty minor issues with the SysTray module (uncreation as well as new boost build).
356
3572009-01-25 MickeM
358 * Fixed issue with checkVersion (#242)
359 * Fixed spelling error (#244)
360 * Fixed crash in CheckFile when a file was locked in exclusive mode (#254)
361 + Improved error handling in all CheckDIsk/CheckFile checks. Should report errors better now.
362 * Updated the config file a bit: remving "beta" from a bunch of modules no longer in beta.  (#270)
363 + Added more filter operatos to all numeric filters so they accept eq:, ne:, gt:, lt: in addition to =, >, <, <>, !, !=, in: (#269)
364
3652009-01-23 MickeM
366 + Added better support for numerical hit matching in the eventlog module. You can now use exact and detailed matching.
367    You can now use the following syntax:
368    CheckEventLog ... warn=ne:1 crit=eq:0 ...
369    To generate a warning if the number of hits are != 1 and a critical if the number of hits are = 0.
370    Other operators avalible are: =, >, <, <>, !, !=, eq:, ne:, gt:, lt:
371
3722009-01-23 MickeM
373 * Cleaned up the checkProcState code and it is not a lot better.
374   - Removed race conditions (crashes?) as well as improved perfoamnce and better error handling.
375 + Added new option 16bit to checkProcState. When set checkProcState will enumerate all 16 bit processes found running under NTVDM.
376 * Fixed NRPE version reported "incorrectly". (Version is now takedn from NSClient++)
377
3782009-01-21 MickeM
379 + Added experimental 16 bit process support to checkProcState
380
3812009-01-20 MickeM
382 * Fixed issue with CheckWMI when no filter was specified.
383
3842009-01-17 MickeM
385 + Added new command line option pdhlookup (to CheckSystem) to lookup index from names.
386   Probably not usefull to anyone but me :) Usage: "nsclient++ -noboot CheckSystem pdhlookup Antal bindningsreferenser"
387 * 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)
388 * removed debug output from -noboot
389 + Added new command line pdhmatch option to use pattern matching on PDH queries
390   Usage: nsclient++ -noboot CheckSystem pdhmatch \Process(*)\Antal trådar
391 * Improved error reporting in the PDH subsystem.
392 + Added new module A_DebugLogMetrics.dll which can be used to generate debug info.
393   Enable the module and a file called process_info.csv will be created under %APP_DATA%/nsclient++/process_info.csv which contains metrics.
394 * Fixed handle leak in CheckExternalProcess and NRPEListsner (executing commands).
395
3962009-01-13 MickeM
397 * Fixed issue with 64-bit installer (now installs under Program Files (and not x86)
398 + Brand new build enviornment based upon boost build!!!
399   Use batch file to build (release-build.bat or modify to make your own)
400 * Modified /about so it now shows a lot of usefull(?) info.
401
4022008-11-13 MickeM
403 + Added truncate option to checkServiceState
404
4052008-09-24 MickeM
406 * Imroved the installer (now auto-updates the version when built)
407
4082008-09-24 MickeM - 0.3.5
409 * Fixed issue with CheckServiceState and CheckAll (it now works)
410 + Added new check: CheckFile2 which has the same syntax as the event log filtering.
411    Usage: CheckFile2 file=c:\test\*.txt filter=in filter+creation=<24h "syntax=%filename% was created %creation%" MinWarn=0 MinCrit=0
412
4132008-09-18 MickeM - 0.3.4
414 * Changed so "missing services" are treated as stopped.
415    CheckServiceState missing=stopped ShowAll
416        OK: missing: not found
417 * Fixed issue with : in service name.
418 + Added some "reasonable default cheks" under [External Alias] for the CheckExternalScripts.dll module.
419
4202008-09-17 MickeM - 0.3.4 RC-6
421 * Added option [EventLog] lookup_names=0 to disable the evetlog name lookup (default is on)
422
4232008-09-17 MickeM
424 * Fixed issue on all filters so == takes the "usual" 2 equalsigns (old still works).
425 * Added so tray icon can get "propper" name from core for "description".
426 * Added lookup of "long" eventlog names (you can now use the alias used in the event viewer)
427
4282008-09-16 MickeM - 0.3.4 RC-5
429 * Fixed an issue with the session launcher
430
4312008-09-15 MickeM
432 * Fixed so NSCLient++ can load with "broken plugins" (before it printed an error and exited)
433 + Added a very basic simple .net plugin (and a wrapper)
434
4352008-09-14 MickeM - 0.3.4 RC-4
436 * Fixed an issue with the session launcher
437 * Fixed an issue with the uninstaller (should not "fail" when problems uninstalling)
438
4392008-09-14 MickeM - 0.3.4 RC-4
440 * Fixed issue with OS detection (again)
441 * Fixed issue with plugin unloading (again)
442 * Fixed issue with SSL socket not unloading properly
443 * Fixed issue with "login" and "no session" (should work now I hope) (#222)
444 * Changed so all projects build under "tmp" instead of under respecitve directory. (simpler to remove all "tmp" files now)
445
4462008-09-12 MickeM
447 * Thanks to everyone who listened in on my session at NETWAYS Nagios Konferenz 2008!
448
4492008-09-09 MickeM - 0.3.4 RC-3
450 * Improved error handling for the WMI checks.
451 + CheckWMI: Added support for extracting numbers from strings
452 * Fixed performance data for "large float values" to be rendered without scientific notation. (#151)
453 * Fixed issue with & and some commands via check_nt.
454 * Fixed a crash on exit (which I added in Rc1).
455 * Added 10 "bytes" the CPU buffer: (#174)
456 + Added new option to [EventLog] section buffer_size to change the size of the buffer used when scanning the evenlotg (defaults to 64k).
457 * Fixed error handling in CHeckEventLog so errors are repoorted properly (#184)
458
4592008-09-08 MickeM - 0.3.4 RC-2
460 * Fixed issue in windows 2008 with system tray (shared_session).
461 * Fixed installer issue (should run (i hope) service installer on install now on 64 bit os)
462 * Fixed issue with unloading plugins and log (causing "timeouts" when exiting some times)
463
4642008-09-07 MickeM
465 + Added sample powershell script as well as a workaround for making them run.
466 * Fixed an issue making powershell scripts (and possibly others) not timeout properly.
467 + Added upgrade support to the installer (still need to add support for keeping .ini file so be ware)
468
4692008-09-06 MickeM
470 * Improved error reporting in the eventlogchecker
471 * *BREAKING CHANGE* filter=new is now the default so unless you use the new filtering you need to specify filter=old instead!
472   I Recomend everyone to stop using the "old" filtering.
473
4742008-09-04 MickeM
475 * Fixed issues with new service stuff on NT4 and W2K (should work fine now)
476 + Added some DebugOutput to service handling features so if you experience tropubel try using sysinternals DebugView too se logging before the agent startes.
477 * Fixed a memory leak in the error formating code
478
4792008-08-24 MickeM
480 * Changed NSCA "general problem" error message to be more descriptive.
481 * Fixed issue with CheckCPU not returning a valid performance unit (%) see issue #219 for details.
482
4832008-08-16 MickeM
484 * *WARNING* THIS IS VERY VERY UNSTABEL (possibly)
485 * *WARNING* A lot of new untested code here so dont run in production enviornments :)
486 + Added shared session so system tray can communicate with master
487 + Added new system tray handlig (via TS so FUS should work with it)
488 + Added new option [System] / shared_session=0 (or 1) to enable / disable the new shared memory framework (it is for now disabled by default)
489   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.
490
4912008-08-09 MickeM
492 + Added ChangeWindowMessageFilter so systray should maybe work on vista and beyond!
493
4942008-07-28 MickeM
495 * Improved the error handling for the check proc state.
496 * Removed all (I think) asserts replacing them with exceptions (should I hope reduce crashes and instead leave some form of errors)
497
4982008-07-25 MickeM
499 + Built a garage at the summer house
500 * cut down all the reeds and shrubbs at the summer house.
501
5022008-07-03 MickeM
503 * Fixed (again) issue with performance data and CheckDriveSize (when using "Min" bounds)
504 + Added some more error messages for when counters are not found.
505 * Fixed an issue with the new namespace option
506
5072008-07-02 MickeM
508 ! 0.3.3 Released (take 2)
509 + Added new option alias to controll the name for performance counters when using checkfile use like so:
510    checkfile alias=foo file=C:\boot.ini filter-written=>1000d syntax=gurka MaxCrit=1
511 * Fixed issue with performance data and CheckDriveSize (when using "Min" bounds)
512 ! 0.3.3 Released (take 1)
513 * Fixed some issues (?) with the installer the w32 and x64 are now different components (GUIDs).
514
5152008-07-02 MickeM
516 + Fixed some issues (?) with the installer the w32 and x64 are now different components (GUIDs).
517
5182008-07-01 MickeM
519 + Added new option (namespace) to CheckWMI and CheckWMIValue use like so:
520   CheckWMI namespace=root\\cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"
521
5222008-06-30 MickeM
523 * Fixed issue with CheckFile and performance data ( #156 )
524 + Added option (InvalidStatus) to CheckCounter to allow other then UNKNOWN return state when counters are missing ( #167 ).
525   *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)
526   Message will reflect reason.
527 * Fixed issue in the arraybuffer (one of the plit functions had a problem with multiple chars of the same) ( #190 )
528
5292008-06-25 MickeM
530 * Fixed issue with CheckDriveSize and CheckAllOthers (#188)
531
5322008-06-24 MickeM
533 + Added new check (to CheckHelpers): CheckOK: Just return OK (anything passed along will be used as a message).
534 + Added new check (to CheckHelpers): CheckWARNING: Just return WARN (anything passed along will be used as a message).
535 + Added new check (to CheckHelpers): CheckCRITICAL: Just return CRIT (anything passed along will be used as a message).
536 + Added new check (to CheckHelpers): CheckVersion: Just return the nagios version (along with OK status).
537 * Better error messages in the check service thingy.
538
5392008-06-18 MickeM
540 * Fixed an issue in regards to reading the return packet in the in the NRPEClient (now it works).
541   Before only the first 1024 bytes were used.
542
5432008-06-15 MickeM
544 * Applied patches from Jeff Goldschrafe <goldschr AT cshl.edu>
545   + CheckDriveSize now uses "all drives" when no drive is specified.
546   * Fixed misspellt Container
547
5482008-06-14 MickeM
549 * Fixed error message from external commands (better reporting now)
550
5512008-05-14 MickeM
552 * Fixed memoryleak in the service checker.
553     I am really sorry I usualy write better code then this.
554 + Added some "reasonable default cheks" under [External Alias] for the CheckExternalScripts.dll module.
555
5562008-09-17 MickeM - 0.3.4 RC-6
557 * Added option [EventLog] lookup_names=0 to disable the evetlog name lookup (default is on)
558
5592008-09-17 MickeM
560 * Fixed issue on all filters so == takes the "usual" 2 equalsigns (old still works).
561 * Added so tray icon can get "propper" name from core for "description".
562 * Added lookup of "long" eventlog names (you can now use the alias used in the event viewer)
563
5642008-09-16 MickeM - 0.3.4 RC-5
565 * Fixed an issue with the session launcher
566
5672008-09-15 MickeM
568 * Fixed so NSCLient++ can load with "broken plugins" (before it printed an error and exited)
569 + Added a very basic simple .net plugin (and a wrapper)
570
5712008-09-14 MickeM - 0.3.4 RC-4
572 * Fixed an issue with the session launcher
573 * Fixed an issue with the uninstaller (should not "fail" when problems uninstalling)
574
5752008-09-14 MickeM - 0.3.4 RC-4
576 * Fixed issue with OS detection (again)
577 * Fixed issue with plugin unloading (again)
578 * Fixed issue with SSL socket not unloading properly
579 * Fixed issue with "login" and "no session" (should work now I hope) (#222)
580 * Changed so all projects build under "tmp" instead of under respecitve directory. (simpler to remove all "tmp" files now)
581
5822008-09-12 MickeM
583 * Thanks to everyone who listened in on my session at NETWAYS Nagios Konferenz 2008!
584
5852008-09-09 MickeM - 0.3.4 RC-3
586 * Improved error handling for the WMI checks.
587 + CheckWMI: Added support for extracting numbers from strings
588 * Fixed performance data for "large float values" to be rendered without scientific notation. (#151)
589 * Fixed issue with & and some commands via check_nt.
590 * Fixed a crash on exit (which I added in Rc1).
591 * Added 10 "bytes" the CPU buffer: (#174)
592 + Added new option to [EventLog] section buffer_size to change the size of the buffer used when scanning the evenlotg (defaults to 64k).
593 * Fixed error handling in CHeckEventLog so errors are repoorted properly (#184)
594
5952008-09-08 MickeM - 0.3.4 RC-2
596 * Fixed issue in windows 2008 with system tray (shared_session).
597 * Fixed installer issue (should run (i hope) service installer on install now on 64 bit os)
598 * Fixed issue with unloading plugins and log (causing "timeouts" when exiting some times)
599
6002008-09-07 MickeM
601 + Added sample powershell script as well as a workaround for making them run.
602 * Fixed an issue making powershell scripts (and possibly others) not timeout properly.
603 + Added upgrade support to the installer (still need to add support for keeping .ini file so be ware)
604
6052008-09-06 MickeM
606 * Improved error reporting in the eventlogchecker
607 * *BREAKING CHANGE* filter=new is now the default so unless you use the new filtering you need to specify filter=old instead!
608   I Recomend everyone to stop using the "old" filtering.
609
6102008-09-04 MickeM
611 * Fixed issues with new service stuff on NT4 and W2K (should work fine now)
612 + Added some DebugOutput to service handling features so if you experience tropubel try using sysinternals DebugView too se logging before the agent startes.
613 * Fixed a memory leak in the error formating code
614
6152008-08-24 MickeM
616 * Changed NSCA "general problem" error message to be more descriptive.
617 * Fixed issue with CheckCPU not returning a valid performance unit (%) see issue #219 for details.
618
6192008-08-16 MickeM
620 * *WARNING* THIS IS VERY VERY UNSTABEL (possibly)
621 * *WARNING* A lot of new untested code here so dont run in production enviornments :)
622 + Added shared session so system tray can communicate with master
623 + Added new system tray handlig (via TS so FUS should work with it)
624 + Added new option [System] / shared_session=0 (or 1) to enable / disable the new shared memory framework (it is for now disabled by default)
625   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.
626
6272008-08-09 MickeM
628 + Added ChangeWindowMessageFilter so systray should maybe work on vista and beyond!
629
6302008-07-28 MickeM
631 * Improved the error handling for the check proc state.
632 * Removed all (I think) asserts replacing them with exceptions (should I hope reduce crashes and instead leave some form of errors)
633
6342008-07-25 MickeM
635 + Built a garage at the summer house
636 * cut down all the reeds and shrubbs at the summer house.
637
6382008-07-03 MickeM
639 * Fixed (again) issue with performance data and CheckDriveSize (when using "Min" bounds)
640 + Added some more error messages for when counters are not found.
641 * Fixed an issue with the new namespace option
642
6432008-07-02 MickeM
644 ! 0.3.3 Released (take 2)
645 + Added new option alias to controll the name for performance counters when using checkfile use like so:
646    checkfile alias=foo file=C:\boot.ini filter-written=>1000d syntax=gurka MaxCrit=1
647 * Fixed issue with performance data and CheckDriveSize (when using "Min" bounds)
648 ! 0.3.3 Released (take 1)
649 * Fixed some issues (?) with the installer the w32 and x64 are now different components (GUIDs).
650
6512008-07-02 MickeM
652 + Fixed some issues (?) with the installer the w32 and x64 are now different components (GUIDs).
653
6542008-07-01 MickeM
655 + Added new option (namespace) to CheckWMI and CheckWMIValue use like so:
656   CheckWMI namespace=root\\cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"
657
6582008-06-30 MickeM
659 * Fixed issue with CheckFile and performance data ( #156 )
660 + Added option (InvalidStatus) to CheckCounter to allow other then UNKNOWN return state when counters are missing ( #167 ).
661   *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)
662   Message will reflect reason.
663 * Fixed issue in the arraybuffer (one of the plit functions had a problem with multiple chars of the same) ( #190 )
664
6652008-06-25 MickeM
666 * Fixed issue with CheckDriveSize and CheckAllOthers (#188)
667
6682008-06-24 MickeM
669 + Added new check (to CheckHelpers): CheckOK: Just return OK (anything passed along will be used as a message).
670 + Added new check (to CheckHelpers): CheckWARNING: Just return WARN (anything passed along will be used as a message).
671 + Added new check (to CheckHelpers): CheckCRITICAL: Just return CRIT (anything passed along will be used as a message).
672 + Added new check (to CheckHelpers): CheckVersion: Just return the nagios version (along with OK status).
673 * Better error messages in the check service thingy.
674
6752008-06-18 MickeM
676 * Fixed an issue in regards to reading the return packet in the in the NRPEClient (now it works).
677   Before only the first 1024 bytes were used.
678
6792008-06-15 MickeM
680 * Applied patches from Jeff Goldschrafe <goldschr AT cshl.edu>
681   + CheckDriveSize now uses "all drives" when no drive is specified.
682   * Fixed misspellt Container
683
6842008-06-14 MickeM
685 * Fixed error message from external commands (better reporting now)
686
6872008-05-14 MickeM
688 * Fixed memoryleak in the service checker.
689     I am really sorry I usualy write better code then this.
690
6912008-05-?? MickeM
692 * BREAKING CHANGE! -- THe API function NSCLoadPlugin has been changed to take an integer to define the load-status
693
6942008-06-?? MickeM
695 * BREAKING CHANGE! -- New settings API as well as new WEBConfiguration UI (nothing is finnished yet but I wanted to check things into the SVN since it is a lot of changes now :)
696
6972008-05-14 MickeM
698 * Fixed memoryleak in the service checker.
699     I am really sorry I usualy write better code then this.
700
7012008-05-11 MickeM
702 * BREAKING CHANGE! -- Changed PDH options to a more uniform design:
703     auto_detect_pdh and dont_use_pdh_index has been removed and instead there is a new method option that takes various values.
704
7052008-04-03 MickeM
706 * Moved COM init to "core" (from WMI module)
707 + Added new Check command: CheckTaskSched Use like so:
708     CheckTaskSched +filter-exit-code==1 ShowAll MaxWarn=1 MaxCrit=1
709
7102008-03-21 MickeM
711 + Added command line support for process checks
712   New option: cmdLine will toggle so full command lines are used instead of just process names.
713 + Added regular expression matching to process checks
714   New option: match=regexp (match=strings is the default and "old" way)
715 + Added substring matching to process checks
716   New option: match=substr (match=strings is the default and "old" way)
717   This is *NOT* case blind so might be hard to use, plan to add case blindness to it in the future.
718 : Sample command: check_nt ... -v PROCSTATE -l cmdLine,match=regexp,.*exp.* -d SHOWALL
719 * Ohh yeah... it is 2008 this year... not 2007, fixed a few entries in the change log :)
720 - BREAKING CHANGE! -- Removed TOOLHELPER API as PSAPI is simpler and toolhelp is really only useful on w9x (which I don't officially support)
721
7222008-03-20 MickeM
723 + Added host-lookupos for NSCA server (#149)
724 + Added option (cache_hostname=1|0) to cache the NSCA host name (Ie. only lookup once)
725 * Fixed service check: check_nt -v SERVICESTATE -l CheckAll so it works as advertised (#150)
726 * Fixed issue with check_nt MEMUSE/CPULOAD/UPTIME if something is "broken" they will now return an error instead of "0". (#134)
727   Added option debug_skip_data_collection to simulate this (just for kicks)
728
7292008-03-18 MickeM
730 * Added some more error messages to the NSCA module
731 * Added support for arguments to LUA module.
732   syntax: function debug (command, args) -- args is a table with all arguments
733
7342008-03-11 MickeM
735 ! 0.3.1 Released
736
7372008-03-08 MickeM
738 * Changed so log is now in Unicode format
739   Hopefully this will make it simpler to diagnose PDH issues in "strange locales".
740   If anyone hates this let me know and I will add an option to use "old ansi log".
741 * Fixed so the console is logged as ANSI (properly) and all Unicode's are discarded.
742   This means "strangeness" in Unicode and non-us-ascii chars on the console,
743    so for details refer to the log-file which is proper Unicode.
744 + Since log module is loaded "after" the client has booted I added a "hello" message that prints the current version
745    (if you find this annoying let me know, I will make it optional :)
746 * Fixed some issues in the registry handling
747
7482008-03-06 MickeM
749 * Fixed silly ordering bug with the <> syntax.
750
7512008-03-05 MickeM
752 + 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.
753 + Added syntax to new section [Eventlog] used as a shorthand for the syntax to use as "default" (when no syntax=... option is given)
754 * Fixed an issue with eventlog and . matching.
755 + Added shorthand ! for != in "all" numeric filters (eventlog)
756 + Added <> (same as ! and !=) as NRPE breaks the use of ! (in "all" numeric filters (eventlog))
757   Try using: filter-eventType=<>warning to remove everything that is not a warning
758 * Fixed two spelling mistakes in the SysTray module.
759 * Fixed 64-bit issues with installer
760 * Fixed so installer uninstalls/installs the service
761 
7622008-02-26 MickeM
763 + Added installer
764 
7652008-02-22 MickeM
766 * Fixed issues in the NRPE module (now returns the correct status)
767 + Added a lot of "error log" for when the packet size in NRPEListener is not correct
768    (might make it simpler to diagnose problems)
769
7702008-02-20 MickeM
771 + Added new module NRPEClient that can act as a NRPE client, might be useful for testing things and
772   eventually for relaying events.
773   Usage: nsclient++ -noboot NRPEClient -H 192.168.0.1 -p 5666 -c check_something -a foo bar
774   This is an early concept so don't expect much...
775 * Fixed a bug in NSCA module (now it works again :)
776 + Added a command wrapper for the NRPECLient module so now it can act as a check command.
777   (No argument handling yet though), For a sample check out the [NRPE Client Handlers] section in NSC.ini
778
7792008-02-19 MickeM
780 + Fixed a buffer overflow in the NRPE socket handling.
781 
7822008-02-18 MickeM
783 + Added proper output handling to process subsystem (now you can execute programs that return "much" data.
784 + Added select support for SSL_write (now you can send "any amount of data" to the (SSL) socket.
785   Since check_nrpe doesn't do this it wont work in that end, but still...
786
7872008-02-16 MickeM
788 + Re factored ExternalCommand handling so NRPE and new module does the same thing.
789
7902008-02-14 MickeM
791 + Added so commands starting in host_ (NSCA Handlers) are sent as host-commands
792 * Fixed a copy constructor in NSCA Commands (now service checks are sent as service checks)
793
7942008-02-13 MickeM
795 + Added string_length to [Settings] as well (used internally) for all "injected" buffers.
796 * Fixed issue with scripts result truncated after 1024 chars
797    (now they return "all" output and thus you can use the NRPE settings I added yesterday :)
798 + Added hostname setting to [NSCA] section (must have been  when I did not add it before)
799 + Added to NSCA truncates output when to long.
800
8012008-02-12 MickeM
802 + Added new option for the [NRPE] section string_length which is the length of the NRPE strings
803   (notice you need to recompile the check_nrpe to match this value)
804 * Improved exception handling in the PDH collector (hopefully less deadlocks)
805
8062008-02-11 MickeM
807 + Added encryption support for NSCA module (about half of the algorithms are available,
808     if someone wants to use one not available let me know, and I will try to add it)
809
8102008-02-09 MickeM
811 + New module CheckExternalScripts to handle 1, external script (similar to the old NRPE but in its own module)
812   - Can Check batch/vbs/programs/*
813   - Works with NSCA module (if you don't want to have NRPE at the same time)
814   - Simpler syntax (discarded old and added new section for alias)
815   - Started to add "sample alias" to ease initial setup and give some nice ideas (please provide me with feedback on them)
816
8172008-02-08 MickeM
818 + Added some more default catch handlers (on the "core" side of plugin-calls).
819
8202008-02-07 MickeM
821 + Added default catch handlers to all wrapped plug in calls.
822
8232008-02-05 MickeM
824 * Fixed issue with checkEventLog (sometimes you got the wrong message back)
825
8262008-02-04 MickeM
827 *** Happy Birthday bogi!! :)
828 * Fixed issues with performance counter rendering (mainly checkDisk)
829
8302008-02-03 MickeM
831 + Added encryption subsystem to NSCA module (still no mcrypt support, but at least you have "xor" and passwords)
832 + Added API for scripts to register commands
833 + Added command descriptions (for some modules)
834 * Fixed issue in NRPE that displayed a console window when running commands
835 * New improved "inject" dialog from the system tray
836   Lists available commands, and shows command descriptions and a lot of other improvements.
837 + Added an internal log windows that displays log in real-time.
838 + Fixed some issues with the dialog procs (should work smoother now, especially Termination)
839
8402008-02-02 MickeM
841 * Might have fixed the "missing eventlog messages" problem.
842 + Added %count% parameter to syntax which (when used with unique) will display the number of hits for each message displayed.
843
8442008-01-27 MickeM
845 * Fixed a memory-leak in format_time
846 * Fixed so time/date is displayed in "local time" (not UTC) for the eventlog check
847 + Added %message% to eventlog check. Will display the "proper formated eventlog message" as in the eventlog viewer.
848   For this to work you need to have the descriptions flag set
849   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
850 + Added option "unique" to CheckEventLog If this is present only unique errors will be returned.
851   The uniqueness is defined by event-log, event-source, event-id and event-category.
852
8532007-12-16 MickeM
854 + A lot of new features in the LUA module only "arguments" missing (as well as exposing more of the API)
855 * Changed some exceptions that were thrown wrong
856
8572007-12-11 MickeM
858 + Added support for index-lookups of PDH counters (hopefully *all* locale problems are now fixed (yeah right))
859
8602007-12-10 MickeM
861 + Added initial draft for LUA module
862
8632007-12-09 MickeM
864 + Added a check if the service is started when running with /test so you get a warning
865 + Improved the socket thread with:
866    * a default-catch
867    * If the socket fails to start we still wait for it to shut down (no error message)
868 + Added first version of the NSCA agent (NSCAgent.dll)
869   (no encryption support as of yet, but will come)
870
8712007-12-04 MickeM
872 ! 0.3.0 Released
873
8742007-12-01 MickeM
875 * Fixed issue with date formating in FILEAGE
876
8772007-11-29 MickeM
878 * Fixed issue with date formating in FILEAGE
879
8802007-11-28 MickeM
881 ! 0.3.0 RC-1
882 * Fixed some UNICODE issues with process-listings
883 + Added an error message if the "detected" process enumeration method is not available.
884 + Fixed some more Unicode issues Password encrypt/decrypt: #107
885 * Fixed Unicode issues with "external programs" #109
886 * Fixed so default string for check_nt:s FILEAGE command is "delta" is 5 minutes ago (and not absolute ie. 1970...), Issue #39
887 + added support for  <date strings> to check_nt:s FILEAGE command, Issue #39
888    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 ...
889    Only the above listed %<char> works, and default to 0 so might not be to pretty but works...
890
8912007-11-26 MickeM
892 + Fixed a socket issue (erroneously reported "Could not read NSClient packet from socket :(")
893 * More 2k5 build tweaks
894
8952007-11-23 MickeM
896 * Converted to Unicode (damn sometimes I **HATE** C++)
897 + Added support for escaping " on the /test syntax so now you can do: CheckWMI MaxCrit=3 "MinWarn=1" "Query:load=Select * from win32_Processor"
898
8992007-11-22 MickeM
900 * Fixed so the "default path" is correct even when running as a service (issue: #96)
901
9022007-11-21 MickeM
903 * Fixed process counter so checkProcState  now return the *correct* number (previously it was correct-1)
904 * Fixed some missing exceptions that were not caught
905 + Added "AliasCol" option to CheckWMIValue to allow a column to be used as "alias" for a result set:
906     CheckWMIValue -a "Query=select Caption, ThreadCount from Win32_Process" MaxWarn=50 MaxCrit=100 Check:threads=ThreadCount AliasCol=Caption
907    will give you: "System threads: 98 > warning, svchost.exe threads: 87 > warning"
908 - Removed  from SVN (as it is old and outdated and no longer used)
909
9102007-11-20 MickeM
911 + Added new option to CheckSystem to override detected language (force_language=0x0014)
912
9132007-11-19 MickeM
914 * Fixed a minor issue in reading registry keys
915 + Added -noboot option to startup used for running command line utilities without booting the client
916   "nsclient++ -noboot RemoteConfigruation ini2reg" for instance
917 + Added fall back to try <module> and <module>.dll if the module was not loaded (when running command lines)
918 * Migrated 2008 project files to new name and back ported to 2005 project files.
919
9202007-11-16 MickeM
921 * Fixed an NRPE issue I added when I improved the sockets_timeout (now SSL works as well :).
922 + Added sample VBS script and definitions
923
9242007-11-15 MickeM
925 * Improved error message when external NRPE command failles.
926
9272007-11-14 MickeM
928 + Added multi-line output support ( issue #91 )
929 * Improved error handling for external commands
930 * Fixed an issue with NRPE/NSClient socket-reading (introduced by the socket_timeout)
931 + Added an English fall back if "local" language PDH counters fail.
932
9332007-11-12 MickeM
934 + Added option to configure socket_timeouts (default is now 30 seconds) should (I hope) fix issue #85
935
9362007-11-11 MickeM
937 + Added option to configure the behavior of CheckService CheckAll (#64)
938
9392007-11-08 MickeM
940 + Added CheckWMIValue to check result-values from a WMI Query
941 * Changed so performance values are "collapsed" i.e. 75362115584 = 70.0G (#89)
942    If anyone don't want this let me know and I will make an option for it.
943
9442007-11-06 MickeM
945 + Added CLI interface to CheckWMI to check queries
946
9472007-11-04 MickeM
948 * Rewritten WMI handling as well as checks so things should be more useful now (cf. the wiki page for details)
949
9502007-10-29 MickeM
951 * Restructured build and include to work from CLI
952 + Started to add makefiles to build from CLI
953 + Added Finnish counters (#98)
954 * Fixed performance counter issue with check_nt (#99)
955 
9562007-10-06 MickeM
957 + Added auto-upda-te of versions and dates on build to make versions better updated.
958 + Fixed x64 build and cleanup a bit.
959
9602007-09-15 MickeM
961 + Added better error messages (now return codes are displayed as text). Not implemented all over yet but the infrastructure is there.
962
9632007-09-11 MickeM
964 + Added Dutch performance counters to counters.defs
965 + Added Spanish performance counters to counters.defs
966 + Added #69 [includes] directive to INI-file to include other files
967 * Fixed #75 (spelling issue)
968
9692007-06-23 MickeM
970 * 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...
971 * Fixed the "check memory" issues for real this time.
972 * 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.
973
9742007-06-20 MickeM
975 * Fixed #24 crash in NSClient++.exe CheckSystem listpdh | debugpdh
976 * Fixed #62 Problems with CheckServiceState and services with spaces.
977
9782007-03-06 MickeM
979 ! 0.2.7 released
980
9812007-03-05 MickeM
982 * Fixed -v FILEAGE check_nt (NSClient) check.
983 * Added license agreement header to all files
984
9852007-03-04 MickeM
986 + Added script_dir option to NRPE section as well as some sample scripts in the scripts/
987   subdirectory. The script_dir will use all files in this directory as scripts for NRPE
988 + Added Japanese counters to counters.defs from patch (thanx!!!)
989
9902007-02-25 MickeM
991 + Added possibility to check many memory checks in one go, just stack type options.
992     type=paged type=physical etc...
993 * Fixed a performance check bug in the last nightly.
994 * Fixed a potential crash when a malformed check-file-age command was issued.
995 + Added support for more then and NSClient command
996 + Added net mask support to allowed_hosts (try with 192.168.0.1/24 and such)
997 
9982007-02-22 MickeM
999 + Added debug output to see if the socket is bound and/or has shutdown.
1000 * Fixed a potential bug in the thread manager.
1001 + Added configuration option for suppressing performance data to the NRPE section.
1002   Set performance_data=0 to stop sending performance data to nagios
1003 + New (better?) (simpler?) event log checking
1004 + Added option to most commands (ignore-perf-data) to suppress performance data
1005 + Added option CheckAll for checking all auto-start services to checkServiceState.
1006   Also an exclude=<service> to exclude checking that.
1007 * Fixed return syntax for PROCSTATE nsclient
1008
10092007-02-21 MickeM
1010 * Fixed "broken password check" (again) in NSClient listener (this time it is correct! :)
1011
10122006-12-02 MickeM
1013 + Managed to build so it works on NT 4.0 (SP6a) and W2K3
1014 * Fixed "broken password check" in NSClient listener
1015
10162006-11-18 MickeM
1017 + Added support for empty NRPE checking (i.e.. chec_nrpe without a -c argument)
1018 * Added error message when detected language is missing from counters.defs
1019 + Added Swedish locale to counters.defs (yes, I switched to Swedish XP on my computer :)
1020 * Fixed : (and possibly other problems) in counters when checking from check_nt (via NSCLient protocol)
1021 + Added CheckAllExcept to CheckDrive to check all except the specified drives.
1022 * Fixed a display error in the various size functions (1000-1024 byte was displayed incorrectly)
1023
10242006-10-05 MickeM
1025 * Yayyy!!! (first fix in a looong while :)
1026 * Fixed a W2k3 "bug" (actually just an incorrect error) but the:
1027   "e .\PDHCollector.cpp(130) Failed to query performance counters..." is no more...
1028 + Added option to NRPE/NSClient section to not-cache host names (for dyndns etc.)
1029   NOTICE this is "not safe" really in so far as someone might hi-jack your DNS and quickly gain
1030   access to your nagios box (probably only a theoretical problem but hey! :)
1031   NOTICE this is "slow" since all hosts in the list are "looked up" each time you get a NRPE/NSClient
1032   request it will be "slow" but I think it is not that much of a problem really.
1033   NOTICE I don't have the possibility to test this so feel free to report if it works and if it doesn't.
1034   Set cache_allowed_hosts=0 to disable host cache
1035
10362006-04-04 MickeM
1037 * Fixed a few more bugs to the INI/REG readers
1038
10392006-04-02 MickeM
1040 * Could all magicians stop trying to kill me?
1041   *Please* i don't like to die!
1042
10432006-03-31 MickeM
1044 * Damn necromancers! stop 0wning my ass all the time!
1045 
10462006-03-29 MickeM
1047 + Added API for saving/reading settings
1048 
10492006-03-28 MickeM
1050 + Added REG/INI parsers
1051 * *NOTICE* You need to add an option (use_file=1) to your nsc.ini file or new builds wont work.
1052
10532006-03-25 MickeM
1054 * Oblivion f*cking roxx!
1055
10562006-03-02 MickeM
1057 * Fixed bug in INI-file reader (memory leak)
1058
10592006-03-01 MickeM
1060 * Fixed bug in CheckFile (now dates work correctly)
1061
10622006-02-26 MickeM
1063 + Added syntax option to CheckFile (%filename%, %creation%, %access%, %write%, %size%).
1064
10652006-02-25 MickeM
1066 * Fixed Sections problem (now sections can be any size)
1067 + Added bind_to_address option to both NRPE and NSClient section in the INI file.
1068   Allows you to bind the listener to a specific IP address (only dotted number not host name).
1069   This might break things as I had to do some internal rewrite of the Socket classes so be careful :)
1070 * Disabled default-debug logging (as things are fairly stable, you can still enable it by using debug=1 in the NSC:ini file)
1071 * "Fixed" socket backlog to use "max responsible value" as opposed to "10" if no value is specified.
1072 + Added option socket_back_log to both NRPE and NSClient section that allows you to tweak the "back-log" of incoming connections to keep.
1073   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.
1074   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.
1075 - 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.
1076 * Moved listpdh and debugpdh into the CheckSystem module
1077 * Removed PDH dependencies from "core exe" means you can run NSClient++ without PDH (though you cant use the CheckSystem module)
1078 
10792006-02-2? MickeM
1080 + Added new Interface for Modules (NSCommandLineExec that allows modules to execute things give from command line.
1081   Syntax is NSClient++ <module name> <command> [arguments] and if a module doesn't support this it is simply ignored.
1082 + Added new install/uninstall command to SystemTray module:
1083   NSClient++.exe SystemTray install
1084   NSClient++.exe SystemTray uninstall
1085   That will install/uninstall the system tray module this sets the "Allow Service to Interact with Desktop" flag for the service.
1086 * 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).
1087 * Fixed so checkProcess isn't case sensitive.
1088 * Added (not finished) syntax option to event log checker to format the outputted data
1089
10902006-02-12 MickeM
1091 + Added support for host name resolve to allowed_hosts
1092
10932006-02-08 MickeM
1094 ! Fixed filter-eventID in EventLog module (now works for all IDs regardless of severity state)
1095 + Added new filters to EventLog (filter-severity that can filter based on event severity success, error, warning, informational)
1096
10972006-02-07 MickeM
1098 + Added new filter option to eventlog filter-eventID
1099 + Added new operator to all numeric filters in:number,number,... etc. (for instance filter-eventID=in:123,456,789 to check for lists.
1100
11012006-02-05 MickeM
1102 + Added CheckFile check command
1103   This new command (in development) will allow various file checks such as age, size, date, etc on single or multiple files.
1104 + Added FILEAGE support to NSClient
1105 + Started to convert the web page to WIKI
1106 
11072006-01-21 MickeM
1108 + Added WMI Check module (early alpha)
1109   This is an extremely early alpha more to see if there is an interest and how to progress with it.
1110   To use the WMI module enable the WMICheck.dll (nsc.ini) and then run the following check:
1111   CheckWMI MaxWarn=10 MaxCrit=15 "Query:load=Select LoadPercentage from win32_Processor"
1112   The Max* are as every other check and sets limits.
1113   The Query works similarly to other check commands i.e.. Query:<name>=<WMI query>
1114   So any other WMI query should work (notice this is experimental and not stable and has virtually
1115   no error handling so it is likely to crash nsclient if you ask anything "non working".)
1116   I would *really* *really* like to get feedback on how to expand this concept to work better so feel free to come with feedback.
1117  * Fixed NT4 /install (should work now!)
1118
11192006-01-02 MickeM
1120 * Fixed ChangeServiceConfig2 on NT4
1121 + Added support for more then 4GB memory (8GB?)
1122   Since I don't have this much memory this needs to be verified...
1123 * Fixed syntax of performance data
1124
11252005-09-24 MickeM
1126 * Fixed memory size bug (free and used were swapped)
1127
11282005-09-20 MickeM
1129 + Added option to debug all PDH counters /debugpdh
1130
11312005-09-17 MickeM
1132 + Added support for checking service by display name
1133
11342005-09-03 MickeM
1135 * First off, sorry for lack of updates, but was on vacation :)
1136 + Added ShowAll=long to CPULoad
1137 + Added several new types to checkMem (type=paged, type=physical, type=page, type=virtual)
1138
11392005-07-31 MickeM
1140 + /install now sets the service to autostart
1141 * Did some cleanup of minor code sections
1142 * (done before but not reported i think) /listpdh option added to list all PDH counters (nsclient++ /listpdh)
1143 + Added service description
1144 * Event log reworked (again) this time I hope it is better (and even useful, but syntax has changed)
1145
11462005-07-26 MickeM
1147 + Added support for ShowAll=long (to show long and short info, only applies to some areas, but available everywhere)
1148 + Extended Drive and memory check syntax to facilitate both Free and Used space checks: MaxWarnFree / MaxWarnUsed etc)
1149
11502005-07-19 MickeM
1151 * Changed thread API to use _creatthreadex as opposed to _creatthread (works better now!)
1152 * Fixed UNKNOWN return code (was 4 should have been 3)
1153
11542005-07-16 MickeM
1155 * Fixed drive checks from NSClient
1156
11572005-07-11 MickeM
1158 * *ALOT* of bug fixes and enhancements all checking code has been centralized and rewritten also my internal check scripts
1159   have been extended to check a lot more things.
1160   *NOTICE* that EventLog has not been upgraded yet neither has the documentation.
1161 + Added MaxWarnCount / MinWarnCount to checkProcState to check number of processes running
1162
11632005-06-09 MickeM
1164 * Escapes " in NRPE commands in the NSC.ini
1165
11662005-06-05 MickeM
1167 * Created configuration interface (not released yet)
1168
11692005-06-03 MickeM
1170 * Created interactive installer (not released yet)
1171
11722005-06-02 MickeM
1173 * CheckEventLog reworked...
1174
11752005-06-01 MickeM
1176 * CheckSystem auto detects windows version and language.
1177
11782005-05-29 MickeM
1179 * Fixed PROCSTATE and SERVICESTATE return state.
1180 + Added support for individual size in CheckDriveSize and CheckFileSize (size has to be specified before a drive/path)
1181 * Fixed performance data for drives (and possibly other places)
1182
11832005-05-23 MickeM
1184 + Added obfuscated password support
1185 + Added some more debug info on commands (return code, and input args)
1186 + Added some more comments to the NSC.ini
1187 + Added central password "override"
1188 + Added central "host override"
1189 + Fixed bug with external commands always getting WARNING state
1190
11912005-05-22 MickeM
1192 + Added debug output for command
1193 + Added timestamps for log-to-file (date_mask to configure format)
1194 + Added support for "no password" with check_nt
1195 + Added log of bad password on NSClient requests.
1196 * Some threading issues fixed (I hate threading :)
1197
11982005-05-19 MickeM
1199 * Verified NT4 compatibility
1200
12012005-05-18 MickeM
1202 * Fixed bug in NSC.ini (section title for Check System was wrong)
1203 + Added multitasking for plug-ins (now two plug-ins can handle requests simultaneously)
1204 * Fixed some minor issues here and there
1205
12062005-05-15 MickeM
1207 + Added NRPE support for checkCounter
1208 + Updated documentation
1209 * Make check commands ignore case
1210 + Added CheckHelpers module to alter the result of various check and similar things
1211
12122005-05-14 MickeM
1213 + Added support for Volumes (CheckDisk)
1214 + Added support for checking all drives of a certain kind
1215 + Added support for altering filter (makes it possible to check removable drives)
1216 + Created web page and better documentation
1217
12182005-04-20 MickeM
1219 + Added multitasking to socket listener (it can now handle multiple connections)
1220 * Fixed bug in NSClientListener now "seqv" in check_nt shouldn't happen.
1221 + Added COUNTER support to NSClient and CheckSystem
1222
12232005-04-19 MickeM
1224 + Added SSL support
1225 + Added a lot of new options
1226 + Added documentation
1227 * Renamed and restructured NSCLientCompat to CheckSystem
1228 * *ALOT* of fixes all over
1229 : We are now starting to get to something that is "stable"
1230 : This means that soon you might actually be able to use this.
1231 
12322005-03-28 MickeM
1233 * Changed the Thread class a bit (mutex -> signal, and CreatThread does not return the instance)
1234 * Moved settings "keys" fro NRPE to config.h
1235 * Changed build options (added Distribution) which builds a zip file under ./dist (requires 7z installed)
1236 * Minor tweaks to error/debug logging and small fixes "here and there"
1237
12382005-03-26 MickeM
1239 + NRPE Support (very basic, no encryption, and nothing fancy)
1240 * Socket classes rewritten
1241 + Added NSCModuleHelper::getSettingsSection to the API
1242
12432005-03-22 MickeM
1244 * Fixed NSClientListener return codes for basic commands
1245 * Extracted arrayBuffer code into new files under /include
1246 * Minor tweaks in the API (fixed minor issues)
1247 + Added some basic "tests" to a few commands (getToken, and arrayBuffer related)
1248
12492005-03-21 MickeM
1250 * Fixed BUG in inject command (now things should "work" again, but far from stable)
1251 + Added NRPE return code
1252 * Fixed some return states to NSClientListener (not verified yet, but soon they will be back in order :)
1253
12542005-03-20 MickeM
1255 * Fundamental API changes (due to NRPE compatibility)
1256   - HandleCommand has changed
1257   - Inject has changed
1258   - Most API calls have new "return codes" (typedef:ed INT to allow for return code compiler checks)
1259   - A lot of the old return codes have changed
1260 + Preliminary NRPE support (can parse and execute incoming requests, cant return data yet, and no encryption)
1261 + New SimpleSocket in include/ will be used as base class for Listeners
1262 * A lot of rewrite to the NSC API
1263
12642005-03-19 MickeM
1265 * Re factored out NSCLient Listener as a separate module
1266 + Added initial NRPE listener module (not yet implemented only a shell)
1267 * Changed Module API (Inject function has new syntax)
1268 + Added some tokenizer function to charEx
1269 + Added new wrapper function to inject Command
1270 * Minor changes in relation to refactor work
1271
12722005-03-01 MickeM
1273 * Improved thread safety in Core
1274 + Added exception handling and logging in PDH code
1275 * Various fixes all over the place
1276 + New module for check size of files/directories
1277 * Changed build to Dynamic link
1278 * Added regular expression support for EventLog checker
1279
12802005-02-22 MickeM
1281 + Added documentation
1282
12832005-02-17 MickeM
1284 * NSClient issues fixed
1285 * System Tray issues fixed
1286
12872005-02-14 MickeM
1288 * Initial SourceForge release
1289
1290 
Note: See TracBrowser for help on using the repository browser.