Skip to content

Commit 0c72fda

Browse files
authored
Merge pull request #837 from Icinga:fix/metrics_over_time_on_windows_2012
Fix: Metrics over Time on Windows 2012 R2 and older Fixes Metrics over Time on Windows 2012 R2 and older caused by thread pooling issues
2 parents 7276d43 + 80b8d7e commit 0c72fda

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/100-General/10-Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
1212
[Issues and PRs](https://github.com/Icinga/icinga-powershell-framework/milestone/38)
1313

1414
* [#835](https://github.com/Icinga/icinga-powershell-framework/pull/835) Fixes JEA compiler to always enforce a rebuild of the Framework to ensure integrity of JEA profiles
15+
* [#836](https://github.com/Icinga/icinga-powershell-framework/issues/836) Fixes Metric over Time collector not working on Windows 2012 R2 and older
1516

1617
## 1.13.4 (tbd)
1718

lib/daemons/ServiceCheckDaemon/daemon/Start-IcingaServiceCheckDaemon.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Start-IcingaServiceCheckDaemon()
2424
{
2525
New-IcingaThreadInstance `
2626
-Name 'Main' `
27-
-ThreadPool (Get-IcingaThreadPool -Name 'MainPool') `
27+
-ThreadPool (Get-IcingaThreadPool -Name 'ServiceDaemonPool') `
2828
-Command 'Add-IcingaServiceCheckDaemon' `
2929
-Start;
3030
}

0 commit comments

Comments
 (0)