An updated management pack has been released for Active Directory Certificate Services 2016 get version 10.0.0.0 here
An updated management pack has been released for Active Directory Certificate Services 2016 get version 10.0.0.0 here
Additional support is now available for SCOM 2016 for SQL 2012 SP3. this will more easily facilitate the in-place upgrade path from SCOM 2012 as previously you would need your environment to be using a SQL version supported by both SCOM versions (SQL 2014 SP2)
Kevin Holman has a nice article hi-lighting the different supported versions you can find it here
A new version of the Windows Server MP has been released version 10.0.8.0 can be found here
There are quite a few changes so as usual test in your labs where possible before deploying to live environments.
New in this version
A new version of the O365 MP is available get it here
New in version 7.1.5134.0
New versions of the SQL Server management packs are out! They are available from the below links:
Note: Be aware that there have been some serious issues with previous versions of the SQL management packs this year. I cannot stress enough the need for testing before using these in a live environment.
SQL Server 2016: here
SQL Server 2014: here
SQL Server 2008 / 2012: here
SQL Dashboards: here
New in this version
SQL Server 2008 / 2012
SQL Server 2014 / 2016
Dashboards
If you ever need to alert if a server has been online for more then a specific time period, you can achieve this with the following method. In this example we will be alerting if the server is up for more than 60 days.
Firstly create a unit monitor > Windows Performance Counter < Single Threshold > Simple Threshold, targeting a relevant target, in this case we used Windows Computer.
Then specify the performance counter to target the System Up Time Counter which is part of the System Object,
The threshold value is in seconds and needs to be set according to your requirement, in our case 60 days is 5184000 seconds.
You can then leave the alert details as is or specify a custom message. You will now get an alert for any server that is online for more then 60 days,
This posting is a follow on in my SCOM basics series.
Lets start with what is Optimized Collection?
Optimization for a collection rule only collects a value if it differs from the previous sample by a specified tolerance. This is used to reduce network traffic and the amount of data stored in the Operations Manager database.
How does this affect me?
When viewing performance data you need to bear in mind that if the collection rule has optimization enabled then you may see gaps in your graphs if the value has not changed significantly for some time. The below image is an example of how this might look:
Note: Optimization should be used for performance counters that are expected to only change gradually. For counters that are expected to vary significantly from one value to the next, optimized collection should be disabled.
An update to the SQL management packs Community Technical Preview is now available here.
There have been additions for SQL Server 2016 SSRS and SSAS and minor improvements to the other existing management packs. Hopefully when this reaches public release it will avoid the issues of previous SQL mp versions.
Newly released
SSRS Native Mode 2016
SSAS 2016
Updates and fixes
SQL Server 2005/ 2008 / 2012 / 2014 / 2016
SQL Server 2008 /2012 / 2014 / 2016 Replication
Dashboards
A post I came across from Ian Blyth with a short powershell script to show which Resource Pools your management servers are part of. It’s quite useful to see all of the resource pool members in one place without having to open each one in the console, particularly in larger environments.
For a single managementserver
$Member = Get-SCOMManagementServer -Name “FQDN”
$Pools = Get-SCOMResourcePool -Member $Member
$Member.DisplayName
$Pools.DisplayName
For all management servers
$Members = Get-SCOMManagementServer
foreach ($member in $members)
{
write-host “”
$Pools = Get-SCOMResourcePool -Member $Member
write-host “Management Server – “$Member.DisplayName
$Pools.DisplayName
}
Version 6.7.0.0 of the Community Technical Preview 2 for the SQL management packs have been released, they are available for download here.
Microsoft seems to be very cautions now with releases of the SQL MP which is good considering the issues with the last 4 live versions,
What’s new?
New Releases
MP for SSAS 2016
MP for SSRS 2016 (Native Mode)
Updates and fixes
SQL Server Dashboards
SQL Server 2016 / 2014
SQL Server 2016 / 2014 / 2012 / 2008 Replication