Lord Hepipud
9a2e793be8
Fix GC collection on every REST connection
2022-04-06 13:59:31 +02:00
Tobias Deiminger
d215cfd568
Use a BlockingCollection to avoid busy loop in REST API threads
...
The former implementation had 5 threads permanently spinning fast
(10ms sleep) while waiting for a REST connection to process.
This causes higher load in general and it breaks systems where
"Turn on PowerShell Script Block Logging policy" is enabled,
because then each PS statement including Start-Sleep is logged -
resulting in 500 event log entries per second. It's a suggested
setting in some hardening guidelines.
We can easily replace the Queue with a BlockingCollection backed
by a ConcurrentQueue, which has the built-in feature to sleep until
there are new items. Now the REST API threads consumes zero CPU time
while waiting.
2022-03-30 11:13:03 +02:00
Lord Hepipud
e4ddbea4d6
Adds feature to detect frozen threads
2022-03-18 22:54:43 +01:00
Lord Hepipud
046074d468
Increase REST-Api default timeout from 30s to 120s
2022-03-18 17:41:37 +01:00
Lord Hepipud
c129bb627c
Optimizes IMC and centralizes data
2022-02-04 16:11:02 +01:00
Lord Hepipud
954e69fde1
Reworks background daemon for JEA context
2022-01-28 21:06:18 +01:00
Lord Hepipud
586b55adc0
Improves show commands and extends Show-Icinga
2022-01-27 21:06:13 +01:00
Lord Hepipud
a23a40b23f
Rewrite IfW service check daemon
2022-01-25 10:00:19 +01:00
Lord Hepipud
4ef55bddb4
Fixes lots of code styling, spelling and script analyzer
...
Disabling UseConsistentIndentation because it is not
properly working for multi-line commands with arguments
and array/hashtable objects
2022-01-14 22:26:53 +01:00
Lord Hepipud
5ed5f0b5e2
Fixes Icinga for Windows memory leak
2021-12-09 17:22:48 +01:00
Lord Hepipud
79d22ef127
Fixes Rest-Api address argument not being used
2021-11-16 16:28:00 +01:00
Lord Hepipud
495e0d05c3
Adds developer utilities
2021-11-07 12:10:05 +01:00
Lord Hepipud
253cb7f4dd
Adds Rest-Api and Api-Checks into framework
2021-10-27 10:06:13 +02:00
Lord Hepipud
eb8ea9a497
Adds support for JEA profiles
2021-09-02 09:23:10 +02:00
Lord Hepipud
9f423d060f
Fixes service daemon not working with arguments
2021-07-01 15:41:15 +02:00
Lord Hepipud
637d06e05d
Fix memory leak on background service daemon
2021-03-10 07:52:55 +01:00
Lord Hepipud
c4f6fcc1fd
Adds experimental Feature "Management Console"
2021-03-01 11:15:21 +01:00
Lord Hepipud
b9eca3a259
Fix background service daemon; fix memory leak
2021-02-23 10:58:03 +01:00
Lord Hepipud
b5d518dff9
Use non-shared globals for check results
2021-02-22 16:54:39 +01:00
Lord Hepipud
2b740785fe
Replaces Write-Host calls with custom console writes
2020-05-13 16:53:15 +02:00
Lord Hepipud
c6e9da9783
Redesign of Service Check Daemon for lower CPU usage
...
Fixes #24
2019-11-23 10:20:37 +01:00
Lord Hepipud
9df17e1068
Fixes Service Check Background Daemon Memory leak
...
Fixes #20
This fixes the memory leak on the Service Check Background Daemon, mainly caused by not properly catching the boolean return values of `Add-IcingaHashtableItem`. The boolean values stayed within the scope, poluting the memory and causing functions to behave not as expected
2019-11-22 19:42:48 +01:00
Lord Hepipud
2c4d482e28
Add support for long-term caching of check metrics
2019-11-03 21:44:29 +01:00
Lord Hepipud
5276b7a505
Move service check daemon to proper location
2019-10-22 19:57:01 +02:00
Lord Hepipud
993defec04
Fixed error on removing hashtable cache content
2019-10-06 16:07:12 +02:00
Lord Hepipud
04af3a8503
Improved stability for service check execution daemon
2019-10-06 10:48:12 +02:00
Lord Hepipud
0e1940325a
Fixed flushing of not required cached entries
2019-10-05 22:32:44 +02:00
Lord Hepipud
921dd8074b
Added support for background daemon and check execution
2019-10-05 22:07:02 +02:00