source: nscp/changelog @ 34e7428

0.4.00.4.10.4.2stable
Last change on this file since 34e7428 was 34e7428, checked in by Michael Medin <michael@…>, 5 years ago

Added new option (namespace) to CheckWMI and CheckWMIValue use like so:

CheckWMI namespace=root
cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"

  • Property mode set to 100644
File size: 29.4 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 * "The message is blocked by User Interface Privilege Isolation, Administrative applications that need to see it can allow it through by calling ChangeWindowMessageFilter after making sure the necessary security precautions are in place. "
7
82008-07-01 MickeM
9 + Added new option (namespace) to CheckWMI and CheckWMIValue use like so:
10   CheckWMI namespace=root\\cimv2 MaxCrit=3 MinWarn=1 "Query:load=Select * from win32_Processor"
11
122008-06-30 MickeM
13 * Fixed issue with CheckFile and performance data ( #156 )
14 + Added option (InvalidStatus) to CheckCounter to allow other then UNKNOWN return state when counters are missing ( #167 ).
15   *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)
16   Message will reflect reason.
17 * Fixed issue in the arraybuffer (one of the plit functions had a problem with multiple chars of the same) ( #190 )
18
192008-06-25 MickeM
20 * Fixed issue with CheckDriveSize and CheckAllOthers (#188)
21
222008-06-24 MickeM
23 + Added new check (to CheckHelpers): CheckOK: Just return OK (anything passed along will be used as a message).
24 + Added new check (to CheckHelpers): CheckWARNING: Just return WARN (anything passed along will be used as a message).
25 + Added new check (to CheckHelpers): CheckCRITICAL: Just return CRIT (anything passed along will be used as a message).
26 + Added new check (to CheckHelpers): CheckVersion: Just return the nagios version (along with OK status).
27 * Better error messages in the check service thingy.
28
292008-06-18 MickeM
30 * Fixed an issue in regards to reading the return packet in the in the NRPEClient (now it works).
31   Before only the first 1024 bytes were used.
32
332008-06-15 MickeM
34 * Applied patches from Jeff Goldschrafe <goldschr AT cshl.edu>
35   + CheckDriveSize now uses "all drives" when no drive is specified.
36   * Fixed misspellt Container
37
382008-06-14 MickeM
39 * Fixed error message from external commands (better reporting now)
40
412008-05-14 MickeM
42 * Fixed memoryleak in the service checker.
43     I am really sorry I usualy write better code then this.
44
452008-04-03 MickeM
46 * Moved COM init to "core" (from WMI module)
47 + Added new Check command: CheckTaskSched Use like so:
48     CheckTaskSched +filter-exit-code==1 ShowAll MaxWarn=1 MaxCrit=1
49
502008-03-21 MickeM
51 + Added command line support for process checks
52   New option: cmdLine will toggle so full command lines are used instead of just process names.
53 + Added regular expression matching to process checks
54   New option: match=regexp (match=strings is the default and "old" way)
55 + Added substring matching to process checks
56   New option: match=substr (match=strings is the default and "old" way)
57   This is *NOT* case blind so might be hard to use, plan to add case blindness to it in the future.
58 : Sample command: check_nt ... -v PROCSTATE -l cmdLine,match=regexp,.*exp.* -d SHOWALL
59 * Ohh yeah... it is 2008 this year... not 2007, fixed a few entries in the  :)
60 - BREAKING CHANGE! -- Removed TOOLHELPER API as PSAPI is simpler and toolhelp is really only useful on w9x (which I don't officially support)
61
622008-03-20 MickeM
63 + Added host-lookupos for NSCA server (#149)
64 + Added option (cache_hostname=1|0) to cache the NSCA host name (Ie. only lookup once)
65 * Fixed service check: check_nt -v SERVICESTATE -l CheckAll so it works as advertised (#150)
66 * Fixed issue with check_nt MEMUSE/CPULOAD/UPTIME if something is "broken" they will now return an error instead of "0". (#134)
67   Added option debug_skip_data_collection to simulate this (just for kicks)
68
692008-03-18 MickeM
70 * Added some more error messages to the NSCA module
71 * Added support for arguments to LUA module.
72   syntax: function debug (command, args) -- args is a table with all arguments
73
742008-03-11 MickeM
75 ! 0.3.1 Released
76
772008-03-08 MickeM
78 * Changed so log is now in Unicode format
79   Hopefully this will make it simpler to diagnose PDH issues in "strange locales".
80   If anyone hates this let me know and I will add an option to use "old ansi log".
81 * Fixed so the console is logged as ANSI (properly) and all Unicode's are discarded.
82   This means "strangeness" in Unicode and non-us-ascii chars on the console,
83    so for details refer to the log-file which is proper Unicode.
84 + Since log module is loaded "after" the client has booted I added a "hello" message that prints the current version
85    (if you find this annoying let me know, I will make it optional :)
86 * Fixed some issues in the registry handling
87
882008-03-06 MickeM
89 * Fixed silly ordering bug with the <> syntax.
90
912008-03-05 MickeM
92 + 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.
93 + Added syntax to new section [Eventlog] used as a shorthand for the syntax to use as "default" (when no syntax=... option is given)
94 * Fixed an issue with eventlog and . matching.
95 + Added shorthand ! for != in "all" numeric filters (eventlog)
96 + Added <> (same as ! and !=) as NRPE breaks the use of ! (in "all" numeric filters (eventlog))
97   Try using: filter-eventType=<>warning to remove everything that is not a warning
98 * Fixed two spelling mistakes in the SysTray module.
99 * Fixed 64-bit issues with installer
100 * Fixed so installer uninstalls/installs the service
101 
1022008-02-26 MickeM
103 + Added installer
104 
1052008-02-22 MickeM
106 * Fixed issues in the NRPE module (now returns the correct status)
107 + Added a lot of "error log" for when the packet size in NRPEListener is not correct
108    (might make it simpler to diagnose problems)
109
1102008-02-20 MickeM
111 + Added new module NRPEClient that can act as a NRPE client, might be useful for testing things and
112   eventually for relaying events.
113   Usage: nsclient++ -noboot NRPEClient -H 192.168.0.1 -p 5666 -c check_something -a foo bar
114   This is an early concept so don't expect much...
115 * Fixed a bug in NSCA module (now it works again :)
116 + Added a command wrapper for the NRPECLient module so now it can act as a check command.
117   (No argument handling yet though), For a sample check out the [NRPE Client Handlers] section in NSC.ini
118
1192008-02-19 MickeM
120 + Fixed a buffer overflow in the NRPE socket handling.
121 
1222008-02-18 MickeM
123 + Added proper output handling to process subsystem (now you can execute programs that return "much" data.
124 + Added select support for SSL_write (now you can send "any amount of data" to the (SSL) socket.
125   Since check_nrpe doesn't do this it wont work in that end, but still...
126
1272008-02-16 MickeM
128 + Re factored ExternalCommand handling so NRPE and new module does the same thing.
129
1302008-02-14 MickeM
131 + Added so commands starting in host_ (NSCA Handlers) are sent as host-commands
132 * Fixed a copy constructor in NSCA Commands (now service checks are sent as service checks)
133
1342008-02-13 MickeM
135 + Added string_length to [Settings] as well (used internally) for all "injected" buffers.
136 * Fixed issue with scripts result truncated after 1024 chars
137    (now they return "all" output and thus you can use the NRPE settings I added yesterday :)
138 + Added hostname setting to [NSCA] section (must have been  when I did not add it before)
139 + Added to NSCA truncates output when to long.
140
1412008-02-12 MickeM
142 + Added new option for the [NRPE] section string_length which is the length of the NRPE strings
143   (notice you need to recompile the check_nrpe to match this value)
144 * Improved exception handling in the PDH collector (hopefully less deadlocks)
145
1462008-02-11 MickeM
147 + Added encryption support for NSCA module (about half of the algorithms are available,
148     if someone wants to use one not available let me know, and I will try to add it)
149
1502008-02-09 MickeM
151 + New module CheckExternalScripts to handle 1, external script (similar to the old NRPE but in its own module)
152   - Can Check batch/vbs/programs/*
153   - Works with NSCA module (if you don't want to have NRPE at the same time)
154   - Simpler syntax (discarded old and added new section for alias)
155   - Started to add "sample alias" to ease initial setup and give some nice ideas (please provide me with feedback on them)
156
1572008-02-08 MickeM
158 + Added some more default catch handlers (on the "core" side of plugin-calls).
159
1602008-02-07 MickeM
161 + Added default catch handlers to all wrapped plug in calls.
162
1632008-02-05 MickeM
164 * Fixed issue with checkEventLog (sometimes you got the wrong message back)
165
1662008-02-04 MickeM
167 *** Happy Birthday bogi!! :)
168 * Fixed issues with performance counter rendering (mainly checkDisk)
169
1702008-02-03 MickeM
171 + Added encryption subsystem to NSCA module (still no mcrypt support, but at least you have "xor" and passwords)
172 + Added API for scripts to register commands
173 + Added command descriptions (for some modules)
174 * Fixed issue in NRPE that displayed a console window when running commands
175 * New improved "inject" dialog from the system tray
176   Lists available commands, and shows command descriptions and a lot of other improvements.
177 + Added an internal log windows that displays log in real-time.
178 + Fixed some issues with the dialog procs (should work smoother now, especially Termination)
179
1802008-02-02 MickeM
181 * Might have fixed the "missing eventlog messages" problem.
182 + Added %count% parameter to syntax which (when used with unique) will display the number of hits for each message displayed.
183
1842008-01-27 MickeM
185 * Fixed a memory-leak in format_time
186 * Fixed so time/date is displayed in "local time" (not UTC) for the eventlog check
187 + Added %message% to eventlog check. Will display the "proper formated eventlog message" as in the eventlog viewer.
188   For this to work you need to have the descriptions flag set
189   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
190 + Added option "unique" to CheckEventLog If this is present only unique errors will be returned.
191   The uniqueness is defined by event-log, event-source, event-id and event-category.
192
1932007-12-16 MickeM
194 + A lot of new features in the LUA module only "arguments" missing (as well as exposing more of the API)
195 * Changed some exceptions that were thrown wrong
196
1972007-12-11 MickeM
198 + Added support for index-lookups of PDH counters (hopefully *all* locale problems are now fixed (yeah right))
199
2002007-12-10 MickeM
201 + Added initial draft for LUA module
202
2032007-12-09 MickeM
204 + Added a check if the service is started when running with /test so you get a warning
205 + Improved the socket thread with:
206    * a default-catch
207    * If the socket fails to start we still wait for it to shut down (no error message)
208 + Added first version of the NSCA agent (NSCAgent.dll)
209   (no encryption support as of yet, but will come)
210
2112007-12-04 MickeM
212 ! 0.3.0 Released
213
2142007-12-01 MickeM
215 * Fixed issue with date formating in FILEAGE
216
2172007-11-29 MickeM
218 * Fixed issue with date formating in FILEAGE
219
2202007-11-28 MickeM
221 ! 0.3.0 RC-1
222 * Fixed some UNICODE issues with process-listings
223 + Added an error message if the "detected" process enumeration method is not available.
224 + Fixed some more Unicode issues Password encrypt/decrypt: #107
225 * Fixed Unicode issues with "external programs" #109
226 * Fixed so default string for check_nt:s FILEAGE command is "delta" is 5 minutes ago (and not absolute ie. 1970...), Issue #39
227 + added support for  <date strings> to check_nt:s FILEAGE command, Issue #39
228    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 ...
229    Only the above listed %<char> works, and default to 0 so might not be to pretty but works...
230
2312007-11-26 MickeM
232 + Fixed a socket issue (erroneously reported "Could not read NSClient packet from socket :(")
233 * More 2k5 build tweaks
234
2352007-11-23 MickeM
236 * Converted to Unicode (damn sometimes I **HATE** C++)
237 + Added support for escaping " on the /test syntax so now you can do: CheckWMI MaxCrit=3 "MinWarn=1" "Query:load=Select * from win32_Processor"
238
2392007-11-22 MickeM
240 * Fixed so the "default path" is correct even when running as a service (issue: #96)
241
2422007-11-21 MickeM
243 * Fixed process counter so checkProcState  now return the *correct* number (previously it was correct-1)
244 * Fixed some missing exceptions that were not caught
245 + Added "AliasCol" option to CheckWMIValue to allow a column to be used as "alias" for a result set:
246     CheckWMIValue -a "Query=select Caption, ThreadCount from Win32_Process" MaxWarn=50 MaxCrit=100 Check:threads=ThreadCount AliasCol=Caption
247    will give you: "System threads: 98 > warning, svchost.exe threads: 87 > warning"
248 - Removed  from SVN (as it is old and outdated and no longer used)
249
2502007-11-20 MickeM
251 + Added new option to CheckSystem to override detected language (force_language=0x0014)
252
2532007-11-19 MickeM
254 * Fixed a minor issue in reading registry keys
255 + Added -noboot option to startup used for running command line utilities without booting the client
256   "nsclient++ -noboot RemoteConfigruation ini2reg" for instance
257 + Added fall back to try <module> and <module>.dll if the module was not loaded (when running command lines)
258 * Migrated 2008 project files to new name and back ported to 2005 project files.
259
2602007-11-16 MickeM
261 * Fixed an NRPE issue I added when I improved the sockets_timeout (now SSL works as well :).
262 + Added sample VBS script and definitions
263
2642007-11-15 MickeM
265 * Improved error message when external NRPE command failles.
266
2672007-11-14 MickeM
268 + Added multi-line output support ( issue #91 )
269 * Improved error handling for external commands
270 * Fixed an issue with NRPE/NSClient socket-reading (introduced by the socket_timeout)
271 + Added an English fall back if "local" language PDH counters fail.
272
2732007-11-12 MickeM
274 + Added option to configure socket_timeouts (default is now 30 seconds) should (I hope) fix issue #85
275
2762007-11-11 MickeM
277 + Added option to configure the behavior of CheckService CheckAll (#64)
278
2792007-11-08 MickeM
280 + Added CheckWMIValue to check result-values from a WMI Query
281 * Changed so performance values are "collapsed" i.e. 75362115584 = 70.0G (#89)
282    If anyone don't want this let me know and I will make an option for it.
283
2842007-11-06 MickeM
285 + Added CLI interface to CheckWMI to check queries
286
2872007-11-04 MickeM
288 * Rewritten WMI handling as well as checks so things should be more useful now (cf. the wiki page for details)
289
2902007-10-29 MickeM
291 * Restructured build and include to work from CLI
292 + Started to add makefiles to build from CLI
293 + Added Finnish counters (#98)
294 * Fixed performance counter issue with check_nt (#99)
295 
2962007-10-06 MickeM
297 + Added auto-upda-te of versions and dates on build to make versions better updated.
298 + Fixed x64 build and cleanup a bit.
299
3002007-09-15 MickeM
301 + Added better error messages (now return codes are displayed as text). Not implemented all over yet but the infrastructure is there.
302
3032007-09-11 MickeM
304 + Added Dutch performance counters to counters.defs
305 + Added Spanish performance counters to counters.defs
306 + Added #69 [includes] directive to INI-file to include other files
307 * Fixed #75 (spelling issue)
308
3092007-06-23 MickeM
310 * 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...
311 * Fixed the "check memory" issues for real this time.
312 * 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.
313
3142007-06-20 MickeM
315 * Fixed #24 crash in NSClient++.exe CheckSystem listpdh | debugpdh
316 * Fixed #62 Problems with CheckServiceState and services with spaces.
317
3182007-03-06 MickeM
319 ! 0.2.7 released
320
3212007-03-05 MickeM
322 * Fixed -v FILEAGE check_nt (NSClient) check.
323 * Added license agreement header to all files
324
3252007-03-04 MickeM
326 + Added script_dir option to NRPE section as well as some sample scripts in the scripts/
327   subdirectory. The script_dir will use all files in this directory as scripts for NRPE
328 + Added Japanese counters to counters.defs from patch (thanx!!!)
329
3302007-02-25 MickeM
331 + Added possibility to check many memory checks in one go, just stack type options.
332     type=paged type=physical etc...
333 * Fixed a performance check bug in the last nightly.
334 * Fixed a potential crash when a malformed check-file-age command was issued.
335 + Added support for more then and NSClient command
336 + Added net mask support to allowed_hosts (try with 192.168.0.1/24 and such)
337 
3382007-02-22 MickeM
339 + Added debug output to see if the socket is bound and/or has shutdown.
340 * Fixed a potential bug in the thread manager.
341 + Added configuration option for suppressing performance data to the NRPE section.
342   Set performance_data=0 to stop sending performance data to nagios
343 + New (better?) (simpler?) event log checking
344 + Added option to most commands (ignore-perf-data) to suppress performance data
345 + Added option CheckAll for checking all auto-start services to checkServiceState.
346   Also an exclude=<service> to exclude checking that.
347 * Fixed return syntax for PROCSTATE nsclient
348
3492007-02-21 MickeM
350 * Fixed "broken password check" (again) in NSClient listener (this time it is correct! :)
351
3522006-12-02 MickeM
353 + Managed to build so it works on NT 4.0 (SP6a) and W2K3
354 * Fixed "broken password check" in NSClient listener
355
3562006-11-18 MickeM
357 + Added support for empty NRPE checking (i.e.. chec_nrpe without a -c argument)
358 * Added error message when detected language is missing from counters.defs
359 + Added Swedish locale to counters.defs (yes, I switched to Swedish XP on my computer :)
360 * Fixed : (and possibly other problems) in counters when checking from check_nt (via NSCLient protocol)
361 + Added CheckAllExcept to CheckDrive to check all except the specified drives.
362 * Fixed a display error in the various size functions (1000-1024 byte was displayed incorrectly)
363
3642006-10-05 MickeM
365 * Yayyy!!! (first fix in a looong while :)
366 * Fixed a W2k3 "bug" (actually just an incorrect error) but the:
367   "e .\PDHCollector.cpp(130) Failed to query performance counters..." is no more...
368 + Added option to NRPE/NSClient section to not-cache host names (for dyndns etc.)
369   NOTICE this is "not safe" really in so far as someone might hi-jack your DNS and quickly gain
370   access to your nagios box (probably only a theoretical problem but hey! :)
371   NOTICE this is "slow" since all hosts in the list are "looked up" each time you get a NRPE/NSClient
372   request it will be "slow" but I think it is not that much of a problem really.
373   NOTICE I don't have the possibility to test this so feel free to report if it works and if it doesn't.
374   Set cache_allowed_hosts=0 to disable host cache
375
3762006-04-04 MickeM
377 * Fixed a few more bugs to the INI/REG readers
378
3792006-04-02 MickeM
380 * Could all magicians stop trying to kill me?
381   *Please* i don't like to die!
382
3832006-03-31 MickeM
384 * Damn necromancers! stop 0wning my ass all the time!
385 
3862006-03-29 MickeM
387 + Added API for saving/reading settings
388 
3892006-03-28 MickeM
390 + Added REG/INI parsers
391 * *NOTICE* You need to add an option (use_file=1) to your nsc.ini file or new builds wont work.
392
3932006-03-25 MickeM
394 * Oblivion f*cking roxx!
395
3962006-03-02 MickeM
397 * Fixed bug in INI-file reader (memory leak)
398
3992006-03-01 MickeM
400 * Fixed bug in CheckFile (now dates work correctly)
401
4022006-02-26 MickeM
403 + Added syntax option to CheckFile (%filename%, %creation%, %access%, %write%, %size%).
404
4052006-02-25 MickeM
406 * Fixed Sections problem (now sections can be any size)
407 + Added bind_to_address option to both NRPE and NSClient section in the INI file.
408   Allows you to bind the listener to a specific IP address (only dotted number not host name).
409   This might break things as I had to do some internal rewrite of the Socket classes so be careful :)
410 * Disabled default-debug logging (as things are fairly stable, you can still enable it by using debug=1 in the NSC:ini file)
411 * "Fixed" socket backlog to use "max responsible value" as opposed to "10" if no value is specified.
412 + Added option socket_back_log to both NRPE and NSClient section that allows you to tweak the "back-log" of incoming connections to keep.
413   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.
414   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.
415 - 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.
416 * Moved listpdh and debugpdh into the CheckSystem module
417 * Removed PDH dependencies from "core exe" means you can run NSClient++ without PDH (though you cant use the CheckSystem module)
418 
4192006-02-2? MickeM
420 + Added new Interface for Modules (NSCommandLineExec that allows modules to execute things give from command line.
421   Syntax is NSClient++ <module name> <command> [arguments] and if a module doesn't support this it is simply ignored.
422 + Added new install/uninstall command to SystemTray module:
423   NSClient++.exe SystemTray install
424   NSClient++.exe SystemTray uninstall
425   That will install/uninstall the system tray module this sets the "Allow Service to Interact with Desktop" flag for the service.
426 * 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).
427 * Fixed so checkProcess isn't case sensitive.
428 * Added (not finished) syntax option to event log checker to format the outputted data
429
4302006-02-12 MickeM
431 + Added support for host name resolve to allowed_hosts
432
4332006-02-08 MickeM
434 ! Fixed filter-eventID in EventLog module (now works for all IDs regardless of severity state)
435 + Added new filters to EventLog (filter-severity that can filter based on event severity success, error, warning, informational)
436
4372006-02-07 MickeM
438 + Added new filter option to eventlog filter-eventID
439 + Added new operator to all numeric filters in:number,number,... etc. (for instance filter-eventID=in:123,456,789 to check for lists.
440
4412006-02-05 MickeM
442 + Added CheckFile check command
443   This new command (in development) will allow various file checks such as age, size, date, etc on single or multiple files.
444 + Added FILEAGE support to NSClient
445 + Started to convert the web page to WIKI
446 
4472006-01-21 MickeM
448 + Added WMI Check module (early alpha)
449   This is an extremely early alpha more to see if there is an interest and how to progress with it.
450   To use the WMI module enable the WMICheck.dll (nsc.ini) and then run the following check:
451   CheckWMI MaxWarn=10 MaxCrit=15 "Query:load=Select LoadPercentage from win32_Processor"
452   The Max* are as every other check and sets limits.
453   The Query works similarly to other check commands i.e.. Query:<name>=<WMI query>
454   So any other WMI query should work (notice this is experimental and not stable and has virtually
455   no error handling so it is likely to crash nsclient if you ask anything "non working".)
456   I would *really* *really* like to get feedback on how to expand this concept to work better so feel free to come with feedback.
457  * Fixed NT4 /install (should work now!)
458
4592006-01-02 MickeM
460 * Fixed ChangeServiceConfig2 on NT4
461 + Added support for more then 4GB memory (8GB?)
462   Since I don't have this much memory this needs to be verified...
463 * Fixed syntax of performance data
464
4652005-09-24 MickeM
466 * Fixed memory size bug (free and used were swapped)
467
4682005-09-20 MickeM
469 + Added option to debug all PDH counters /debugpdh
470
4712005-09-17 MickeM
472 + Added support for checking service by display name
473
4742005-09-03 MickeM
475 * First off, sorry for lack of updates, but was on vacation :)
476 + Added ShowAll=long to CPULoad
477 + Added several new types to checkMem (type=paged, type=physical, type=page, type=virtual)
478
4792005-07-31 MickeM
480 + /install now sets the service to autostart
481 * Did some cleanup of minor code sections
482 * (done before but not reported i think) /listpdh option added to list all PDH counters (nsclient++ /listpdh)
483 + Added service description
484 * Event log reworked (again) this time I hope it is better (and even useful, but syntax has changed)
485
4862005-07-26 MickeM
487 + Added support for ShowAll=long (to show long and short info, only applies to some areas, but available everywhere)
488 + Extended Drive and memory check syntax to facilitate both Free and Used space checks: MaxWarnFree / MaxWarnUsed etc)
489
4902005-07-19 MickeM
491 * Changed thread API to use _creatthreadex as opposed to _creatthread (works better now!)
492 * Fixed UNKNOWN return code (was 4 should have been 3)
493
4942005-07-16 MickeM
495 * Fixed drive checks from NSClient
496
4972005-07-11 MickeM
498 * *ALOT* of bug fixes and enhancements all checking code has been centralized and rewritten also my internal check scripts
499   have been extended to check a lot more things.
500   *NOTICE* that EventLog has not been upgraded yet neither has the documentation.
501 + Added MaxWarnCount / MinWarnCount to checkProcState to check number of processes running
502
5032005-06-09 MickeM
504 * Escapes " in NRPE commands in the NSC.ini
505
5062005-06-05 MickeM
507 * Created configuration interface (not released yet)
508
5092005-06-03 MickeM
510 * Created interactive installer (not released yet)
511
5122005-06-02 MickeM
513 * CheckEventLog reworked...
514
5152005-06-01 MickeM
516 * CheckSystem auto detects windows version and language.
517
5182005-05-29 MickeM
519 * Fixed PROCSTATE and SERVICESTATE return state.
520 + Added support for individual size in CheckDriveSize and CheckFileSize (size has to be specified before a drive/path)
521 * Fixed performance data for drives (and possibly other places)
522
5232005-05-23 MickeM
524 + Added obfuscated password support
525 + Added some more debug info on commands (return code, and input args)
526 + Added some more comments to the NSC.ini
527 + Added central password "override"
528 + Added central "host override"
529 + Fixed bug with external commands always getting WARNING state
530
5312005-05-22 MickeM
532 + Added debug output for command
533 + Added timestamps for log-to-file (date_mask to configure format)
534 + Added support for "no password" with check_nt
535 + Added log of bad password on NSClient requests.
536 * Some threading issues fixed (I hate threading :)
537
5382005-05-19 MickeM
539 * Verified NT4 compatibility
540
5412005-05-18 MickeM
542 * Fixed bug in NSC.ini (section title for Check System was wrong)
543 + Added multitasking for plug-ins (now two plug-ins can handle requests simultaneously)
544 * Fixed some minor issues here and there
545
5462005-05-15 MickeM
547 + Added NRPE support for checkCounter
548 + Updated documentation
549 * Make check commands ignore case
550 + Added CheckHelpers module to alter the result of various check and similar things
551
5522005-05-14 MickeM
553 + Added support for Volumes (CheckDisk)
554 + Added support for checking all drives of a certain kind
555 + Added support for altering filter (makes it possible to check removable drives)
556 + Created web page and better documentation
557
5582005-04-20 MickeM
559 + Added multitasking to socket listener (it can now handle multiple connections)
560 * Fixed bug in NSClientListener now "seqv" in check_nt shouldn't happen.
561 + Added COUNTER support to NSClient and CheckSystem
562
5632005-04-19 MickeM
564 + Added SSL support
565 + Added a lot of new options
566 + Added documentation
567 * Renamed and restructured NSCLientCompat to CheckSystem
568 * *ALOT* of fixes all over
569 : We are now starting to get to something that is "stable"
570 : This means that soon you might actually be able to use this.
571 
5722005-03-28 MickeM
573 * Changed the Thread class a bit (mutex -> signal, and CreatThread does not return the instance)
574 * Moved settings "keys" fro NRPE to config.h
575 * Changed build options (added Distribution) which builds a zip file under ./dist (requires 7z installed)
576 * Minor tweaks to error/debug logging and small fixes "here and there"
577
5782005-03-26 MickeM
579 + NRPE Support (very basic, no encryption, and nothing fancy)
580 * Socket classes rewritten
581 + Added NSCModuleHelper::getSettingsSection to the API
582
5832005-03-22 MickeM
584 * Fixed NSClientListener return codes for basic commands
585 * Extracted arrayBuffer code into new files under /include
586 * Minor tweaks in the API (fixed minor issues)
587 + Added some basic "tests" to a few commands (getToken, and arrayBuffer related)
588
5892005-03-21 MickeM
590 * Fixed BUG in inject command (now things should "work" again, but far from stable)
591 + Added NRPE return code
592 * Fixed some return states to NSClientListener (not verified yet, but soon they will be back in order :)
593
5942005-03-20 MickeM
595 * Fundamental API changes (due to NRPE compatibility)
596   - HandleCommand has changed
597   - Inject has changed
598   - Most API calls have new "return codes" (typedef:ed INT to allow for return code compiler checks)
599   - A lot of the old return codes have changed
600 + Preliminary NRPE support (can parse and execute incoming requests, cant return data yet, and no encryption)
601 + New SimpleSocket in include/ will be used as base class for Listeners
602 * A lot of rewrite to the NSC API
603
6042005-03-19 MickeM
605 * Re factored out NSCLient Listener as a separate module
606 + Added initial NRPE listener module (not yet implemented only a shell)
607 * Changed Module API (Inject function has new syntax)
608 + Added some tokenizer function to charEx
609 + Added new wrapper function to inject Command
610 * Minor changes in relation to refactor work
611
6122005-03-01 MickeM
613 * Improved thread safety in Core
614 + Added exception handling and logging in PDH code
615 * Various fixes all over the place
616 + New module for check size of files/directories
617 * Changed build to Dynamic link
618 * Added regular expression support for EventLog checker
619
6202005-02-22 MickeM
621 + Added documentation
622
6232005-02-17 MickeM
624 * NSClient issues fixed
625 * System Tray issues fixed
626
6272005-02-14 MickeM
628 * Initial SourceForge release
Note: See TracBrowser for help on using the repository browser.