diff --git a/doc/100-General/20-Eventlog.md b/doc/100-General/20-Eventlog.md index 1026f9a..76596b2 100644 --- a/doc/100-General/20-Eventlog.md +++ b/doc/100-General/20-Eventlog.md @@ -2,12 +2,6 @@ Below you will find a list of EventId's which are exported by this module. The short and detailed message are both written directly into the EventLog. This documentation shall simply provide a summary of available EventId's -## Event Id 1000 - -| Category | Short Message | Detailed Message | -| --- | --- | --- | -| Information | Generic debug message issued by the Framework or its components | The Framework or is components can issue generic debug message in case the debug log is enabled. Please ensure to disable it, if not used. You can do so with the command "Disable-IcingaFrameworkDebugMode" | - ## Event Id 1001 | Category | Short Message | Detailed Message | @@ -44,6 +38,30 @@ Below you will find a list of EventId's which are exported by this module. The s | --- | --- | --- | | Error | Icinga for Windows background daemon not found | Icinga for Windows could not find the Function or Cmdlet for the specified background daemon. The daemon was not loaded. | +## Event Id 1401 + +| Category | Short Message | Detailed Message | +| --- | --- | --- | +| Error | Icinga for Windows thread pool not found | Icinga for Windows was unable to find a specified thread pool with [Get-IcingaThreadPool] for a background daemon. To keep the daemon running, it defaulted to a basic pool but this issue should be addressed. The name of the inquired pool is: | + +## Event Id 1450 + +| Category | Short Message | Detailed Message | +| --- | --- | --- | +| Error | Icinga for Windows service check daemon invalid index | Icinga for Windows is unable to process the provided time index for a background service check task, as a given index is not numeric | + +## Event Id 1451 + +| Category | Short Message | Detailed Message | +| --- | --- | --- | +| Error | Icinga for Windows service check daemon exception on plugin execution | Icinga for Windows failed to execute a plugin within the background service check daemon with an exception | + +## Event Id 1452 + +| Category | Short Message | Detailed Message | +| --- | --- | --- | +| Error | Icinga for Windows service check daemon failed with exception | Icinga for Windows failed to properly execute a task within the background service check daemon with a given exception | + ## Event Id 1500 | Category | Short Message | Detailed Message | @@ -78,7 +96,7 @@ Below you will find a list of EventId's which are exported by this module. The s | Category | Short Message | Detailed Message | | --- | --- | --- | -| Warning | Icinga for Windows JEA context not available | The Icinga for Windows JEA session is no longer available and is attempted to be restarted on the system. This could have either happened due to a crash or a user action, like restarting the WinRM service. | +| Warning | Icinga for Windows JEA context not available | The Icinga for Windows JEA session is no longer available and is attempted to be restarted on the system. This could have either happenend due to a crash or a user action, like restarting the WinRM service. | ## Event Id 1550 @@ -90,7 +108,7 @@ Below you will find a list of EventId's which are exported by this module. The s | Category | Short Message | Detailed Message | | --- | --- | --- | -| Warning | Invalid authentication credentials provided | A web request for a client was rejected because of invalid formatted base64 encoded credentials. | +| Warning | Invalid authentication credentials provided | A web request for a client was rejected because of invalid formated base64 encoded credentials. | ## Event Id 1552 diff --git a/doc/900-Developer-Guide/00-General.md b/doc/900-Developer-Guide/00-General.md index 759f131..9abb005 100644 --- a/doc/900-Developer-Guide/00-General.md +++ b/doc/900-Developer-Guide/00-General.md @@ -110,7 +110,7 @@ $Global:Icinga.Public.Threads.'Start-IcingaForWindowsDaemon::Add-IcingaForWindow This is a section reserved for Icinga for Windows and Icinga developers in general. This space will store general information for Icinga for Windows, determining on how the PowerShell instance is handling internal requests and procedures. -As custom module developer, you can **read** from this space but are in genetal **not** allowed to store information there. Please use the `Private` and `Public` space for this. +As custom module developer, you can **read** from this space but are in general **not** allowed to store information there. Please use the `Private` and `Public` space for this. The following entries are set by default within the `Protected` space: @@ -141,7 +141,7 @@ The command ships with a bunch of configurations to modify the created `.psd1` i Once you have started to write your own code, you can use the Cmdlet `Publish-IcingaForWindowsComponent` to update the `NestedModules` attribute inside the `.psd1` file automatically, including the documentation in case the module is of type plugin. -In addition, you ca create a `.zip` file for this module which can be integrated directly into the [Repository Manager](..\120-Repository-Manager\01-Add-Repositories.md). By default, created `.zip` files will be created in your home folder, the path can how ever be changed while executing the command. +In addition, you ca create a `.zip` file for this module which can be integrated directly into the [Repository Manager](../120-Repository-Manager/01-Add-Repositories.md). By default, created `.zip` files will be created in your home folder, the path can how ever be changed while executing the command. | Argument | Type | Description | | --- | --- | --- | diff --git a/doc/900-Developer-Guide/21-Using-EventLog-Outputs.md b/doc/900-Developer-Guide/21-Using-EventLog-Outputs.md index 6260801..4446373 100644 --- a/doc/900-Developer-Guide/21-Using-EventLog-Outputs.md +++ b/doc/900-Developer-Guide/21-Using-EventLog-Outputs.md @@ -123,4 +123,4 @@ A huge benefit of the implementation we choose is the possibility to export the Publish-IcingaEventLogDocumentation -Namespace 'Framework' -OutFile 'C:\users\public\EventLog-doc.md': ``` -An example on how the exported result looks like can be found on the [Framework EventLog Documentation](../100-General/20-EventLog.md). +An example on how the exported result looks like can be found on the [Framework EventLog Documentation](../100-General/20-Eventlog.md).