List alerts meeting Management Pack, Severity, and Priority criteria

Hello,
As part of our Management Pack Life Cycle Management Process, I need to identify the alerts meeting the following criteria:
1.      
Generated from objects hosted by a specific subset of Management Packs (ex.: Windows Server 2003 & Windows Server 2008 (Monitoring))
2.      
With a particular subset of “Severities” (ex.: Severity = Critical | Warning)
3.      
With a particular subset of “Priorities” (ex.: Priority = High)
Alert Views
Though I can scope an alert view by severity & priority, I cannot scope by source Management Pack. 
I therefore see alerts from all Management Packs! L
Alert Report
Though the Alerts report (under
Microsoft generic Report Library) allows me to scope by Severity & Priority, here too I cannot scope by source Management Pack.
I guess ideally, I would either:
1.      
Create a new report, allowing me to specify the desired criteria; or
2.      
Build & run a SQL statement that would extract the information directly from the database
The problem is that I haven’t yet gained enough experience with OpsMgr to build either of them.
Looking forward to hearing from someone,
Larry

Hi Larry
Try the following:
# Name of Root Management Server
$RMS="XXXXXXXXXXXXXXXX"
# Initialise OpsMgr Provider
write-Host
write-Host "Executing UpdateAlerts.ps1 ..."
write-Host
## prepare OpsMgr shell
if ((Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.EnterpriseManagement.OperationsManager.Client'}) -eq $null) {
Write-Host
Write-Host "File loaded."
Write-Host "Initializing shell for operations manager..."
Write-Host "Add Microsoft.EnterpriseManagement.OperationsManager.Client snap in."
Add-PSSnapin Microsoft.EnterpriseManagement.OperationsManager.Client -ErrorAction SilentlyContinue -ErrorVariable Err
if ($Err) { $(throw write-Host $Err) }
if ((Get-ManagementGroupConnection | Where-Object {$_.ManagementServerName -eq $RMS}) -eq $null) {
Write-Host "Connect to Management Server: $RMS"
New-ManagementGroupConnection $RMS -ErrorAction SilentlyContinue -ErrorVariable Err
if ($Err) { $(throw write-Host $Err) }
if ((Get-PSDrive | Where-Object {$_.Name -eq 'Monitoring'}) -eq $null) {
Write-Host "Create Monitoring drive from Provider."
New-PSDrive -Name: Monitoring -PSProvider: OperationsManagerMonitoring -Root: \ -ErrorAction SilentlyContinue -ErrorVariable Err
if ($Err) { $(throw write-Host $Err) }
Write-Host "Operations manager shell initialized."
Write-Host
Set-Location Monitoring:\$RMS
# Rules - Alert Name, Severity, Priority, Management Pack
get-alert -criteria 'PrincipalName is not null and ResolutionState = ''0'' and IsMonitorAlert=''False''' |
select-object name, Severity, Priority, @{Name="ManagementPack"; Expression={((get-rule $_.monitoringruleid).getmanagementpack()).displayname}} |
Export-csv c:\temp\listalertsfromrules.csv
# Monitors - Alert Name, Severity, Priority, Management Pack
get-alert -criteria 'PrincipalName is not null and ResolutionState = ''0'' and IsMonitorAlert=''True''' |
select-object name, Severity, Priority, @{Name="ManagementPack"; Expression={((get-monitor $_.problemid).getmanagementpack()).displayname }} |
Export-csv c:\temp\listalertsfrommonitors.csv
It works for me (at the moment it lists all alerts with resolution state = 0 but you can change the -criteria clause to amend that). You could also add filters for different priorities and severities and I guess add on date ranges ... but lets check the
base script works for you first!
Just a few things you'll need to amend in the script:
1) The RMS is defined in the second line - you'll need to specify your RMS
2) I have saved the output to a folder c:\temp - either create such a folder or change the file output path
Let us know how it goes.
Cheers
Graham
View OpsMgr tips and tricks at
http://systemcentersolutions.wordpress.com/

Similar Messages

  • Script to change the priorty of all rules and monitors in a Management Pack

    Script to change the priority and severity  of all rules and monitors in a Management Pack in an override MP .We are deploying an MP in production and don't want the helpdesk to take any action on any alerts, so want to set all of them as informational.Once
    they are reviewed then we will delete that override mp
    Can some one help me with a script
     

    Is this MP sealed?  Doesn't really matter..  Unseal the MP if it is sealed.  Now you have access to the RAW XML.  Alert severity and priority have xml tags.  You should be able to do a search and replace and change all the various
    levels (0-3 or whatever they are) to the levels and priority you want.
    Then you can seal the mp with your own key, or just roll it into prod as an unsealed MP.
    This seems, to me, like the quickest and easiest way to make all of these changes at once.  To bulk override everything, not even sure it's still around or even works, there was a tool called Override Explorer, and you could select multiple monitors/events
    and create overrides.  I can't remember very much about the tool because we didn't use it much, but I think it did this with live data, meaning it connected to your management server, and you made the changes in real time.  
    Of course you wouldn't want to do this in production, so do it in a lab, then export the override mp and put it in prod.
    There is probably some snazzy way to do this with PoSh, but I am not aware of any atm.
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • Do we need both management Pack and ADP  for monitoring SOA suite 11g

    Hi,
    Do we need to Both management pack and ADP (OCAMM) Application Dependancy and Performance for monitoring SOA Suite 11g.
    I was creating a monitoring template for SOA Composite and SOA Infrastructure and wanted to know if I need to install additional ( management packs, ADP and Middleware Plugins ) packs to get an effective template.

    A management pack generally refers to the set of pages in EM Grid/Cloud Control which provide functionality for a given set of target types. Since EM Grid Control 11g, the ADP functionality has been part of the Grid Control release and the pages licensed via the Management Pack Plus for SOA or the SOA Management Pack EE.
    To populate the ADP pages with data, additional steps must be performed in order to deploy an ADP manager and ADP agents. Doing this is optional, depending on whether or not you require the additional capability that those pages provide.
    ADP data, however, are collected and stored separately from the core GC/CC metrics and are not related to the monitoring template functionality.

  • Adjusting queuestatistics.vbs timeout in MSMQ management pack

    Hi all,
    I'm running SCOM 2012 R2 and my question is specific to the MSMQ 6.0.6700.88 management pack.  I'm seeing a few alerts titled
    "Operations Manager failed to start a process", with the alert details saying "Forced to terminate the following process started at x:xx:xx PM because it ran past the configured timeout 300 seconds"
    Command executed: "C:\Windows\system32\cscript.exe" /nologo "queuestatistics.vbs" server.domain.local false
    One or more workflows were affected by this.
    Workflow name: many
    Instance name: many
    Instance ID: many
    etc etc - we've all seen these errors before.
    When I run the script manually on the server as local system, the script runs fine, but takes around 4 mins (360 seconds) to finish executing. 
    I want to adjust the timeout threshold for this script, and I understand that for this script timeout, there is no override available via the SCOM console, and I need to go into the management pack.
    I've exported the management pack and I've found the vbs script contained within the management pack, however I was just looking for some guidance on what XML field(s) I should change to adjust the timeout?  Searching through the management pack I've
    found several areas that might be what I'm after.
    I guess I'm just after someone to point me at the right DataSource or Rule ID or something to edit, rather than me just taking a guess and reimporting a busted management pack that I then need to clean up.
    Cheers,
    Noel.
    http://www.dreamension.net

    Thanks Michael! 
    That didn't quite work out for me, but I eventually got it working.  At first I did change the <TimeoutSeconds> value under the script as per your diagram, and after reimporting the management pack and flushing the health service cache for good
    measure, the script still failed with a 300 second timeout.
    However I started looking through the rules in more detail, and I found some rules that reference a datasource with "Queue.Statistics" in the name.  I figured that's a close enough match to the VB script that's also running.  Here is a screen grab...
    There were several rules & datasources that had "Microsoft.MSMQ.2008R2.DataSource.Queue.Statistics" in the name, and I changed the "TimeoutSeconds" value for all of them to 360 seconds.  I then reimported the management pack again, and now the script
    is completing.
    Thanks very much for your assistance with this and giving me a nudge in the right direction.
    http://www.dreamension.net

  • HP Storage Management Pack woes

    I seem to be having an issue since I imported this management pack into my test environment. I'm running SCOM 2012 R2 with v3 of the Storage pack and installed the SNMP Collector on an agent managed server. However when I installed the management
    pack (3PAR) and enabled the 3PAR SNMP Trap Catcher discovery I did it against the Windows Computer Class instead of the specific server I wanted to target. Now all computers running the service SNMP TRAP are showing as discovered inventory generating alerts
    of OpsMgr failed to run a WMI Query for WMI events.
    I tried to stop this by creating a new override for disabling the discovery and setting it to enforce. Then using the Remove-SCOMDisabledClassInstances cmdlet but it's made no difference.
    I've also tried clearing the cache on individual agents.
    Any ideas?
    Thanks 

    I had exactly the same issue this week. My DB filled up with event logs. Once I realised I had targeted the whole Windows Computer Class, I removed the enable override for the SNMP Trap Catcher object discovery, but the events continued to pile in.
    In the end I had to remove all of the HP Storage v3.1 MPs and start again.
    Currently having new issues now with a P2000 that is reporting in via SCOM's Native Discovery, but won't appear under the HP Storage MP. Now looking to use a collection point for the traps that ISN'T one of the SCOM Management servers, as it appears there
    is a known issue with this......
    On page 123 of the HP Storage MP user guide:
    Known Behavior
    Unable to collect SNMP traps from HP Storage Management Pack for System Center. Microsoft has implemented a workaround from OpsMgr to move the SNMP trap collection server to a separate Management server which is not a part of Network Resource Pool/Discovery
    Server. This will allow the SNMP Trap service to listen on port 162 and collect traps.
    Sheeeesh..
    And just realised that ther is now a new MP called HP StoreFront Manager 4.0 which seems to effectively be the latest version of HP Storage MP:
    http://www.systemcentercentral.com/hp-storefront-manager-for-microsoft-4-0-hp-storage-management-integration-with-ms-system-center/

  • Applications Change Management Pack 3.0 now available

    E-Business Suite Applications Technology Group recently released a new product, the Application Change Management Pack (ACMP), and a new version of their Application Management Pack (AMP).
    The Application Change Management Pack is noteworthy because it provides three new tools for automating updates to multiple E-Business Suite instances:
    Customization Manager automates the packaging of your customizations into AD-compliant packages that can be deployed across multiple E-Business Suite instances. Before packaging, the Customization Manager validates your customizations against Oracle's software coding best practices.
    Patch Manager integrates with Oracle Metalink and automatically downloads and deploys different types of patches across multiple (single or multi-node) E-Business Suite instances.
    Setup Manager helps manage functional setups that need to be duplicated across multiple E-Business Suite instances.
    Licencing
    Application Management Pack for Oracle E-Business Suite and Application Change Management Pack for Oracle E-Business Suite are separately licensed products. Application Management Pack for Oracle E-Business Suite Version 3.0 is a mandatory prerequisite for Application Change Management Pack for Oracle E-Business Suite Version 3.0 and should be licenced separately.
    Downloads
    The Application Management Pack and Application Change Management Pack are available as a single install using Oracle Universal Installer. They can be downloaded via:
    [Application Management Pack and Application Change Management Pack for Oracle E-Business Suite Version 3.0 (Patch 8333939)|http://updates.oracle.com/ARULink/PatchSearch/process_form?bug=8333939#uage=0&process=Submit]
    References
    [Getting Started with Oracle Application Management Pack and Application Change Management Pack for Oracle E-Business Suite Version 3.0 (Metalink Note 812315.1)|https://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=812315.1]
    [Oracle Enterprise Manager Application Change Management Pack for Oracle E-Business Suite (PDF, 260K)|http://www.oracle.com/technology/products/oem/pdf/ds_appl_chg_mgmt.pdf]
    [Application Management Pack for Oracle E-Business Suite Data Sheet (PDF, 80K)|http://blogs.oracle.com/stevenChan/2009/06/www.oracle.com/technology/products/oem/pdf/apps_mgmt_ebiz.pdf]
    Related Articles
    [Comparing OEM Data Masking and AMP Data Scrambling Features|http://blogs.oracle.com/stevenChan/2008/04/comparing_oem_data_masking_and.html]
    [Certified Oracle RAC Scenarios for Oracle E-Business Suite Cloning|http://blogs.oracle.com/stevenChan/2009/03/certified_rac_scenarios_for_ebs_cloning.html]

    There are many enhancements in Setup Manager compared to iSetup. To list a few:
    1) ability to create a project which groups extracts, loads and reports and orchestrate these tasks as per your requirements.
    2) Ability to migrate data between point releases of EBS. Example, you can move data from 12.0.4 to 12.0.6 or 12.1.1.
    3) Ability to share the projects with other users.
    4) You can do extraction and loading to multiple instances in a single execution.

  • How to install the management packs in OEM.

    Hi,
    I need to install the OEM with Management packs for a customer on windows. Now i have installed the OEM 11g on one server and installed the agent where ever required. Now i am able to do basic moniotoing with any issue. Now i need to install following packs as a part of the contract. Could any body help me to do the same?
    ================
         Diagnostics Pack.
         Tuning Pack.
         Change Management Pack
         Provisioning and Patch Automation Pack for Database & Management Pack Plus for Identity Management.
         Application Management Pack for E-Business Suite.
    ================
    Regards
    DBA.

    Database Provisioning and Patch Automation Pack
    Automates deployment of software, patches and servers. This pack provides functionality for provisioning of operating systems and software images, cloning of existing installations and software images on both bare-metal and live machines, and patching. Sizeable decreases in person-hours and costs can be achieved by using mass provisioning and patching, offering an easily quantifiable return on the investment of this management pack. Key features include the following:
    - Extensible, out-of-box best practice Deployment Procedures for provisioning and patching
    - Database and Oracle Home cloning
    - Database, RAC Extend Cluster and Add Instance-Single instance-to-RAC conversion-Bare metal provisioning (i.e. Linux)
    - Automated patching for the Oracle Databases and underlying operating system (i.e. Linux, Solaris, Windows)
    - Software Image Library
    - Deployment Procedure Manager
    - CLI driven runtime
    - Critical Patch Facility
    - Enterprise Security Advisory
    - Provisioning and deployment reports
    Standalone Provisioning and Patch Automation Pack
    Automates deployment of software, applications, and patches. This pack provides functionality for bare metal provisioning of operating systems and software images, cloning of existing installations and software images (such as CRS/RAC and AS), and patching. The Standalone Provisioning and Patch Automation Pack includes:
    - Software Image Library
    - Database and Oracle Home cloning
    - Database, RAC, Application Server, and Application provisioning
    - Extend Cluster and Add Instance
    - Single instance-to-RAC conversion
    - Bare metal provisioning
    - Deployment Procedure Manager
    - Automate patching (including staging) for Oracle software, Oracle Homes and operating systems
    - Critical Patch Facility
    - Enterprise Security Advisories
    - Provisioning and deployment reports
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to change management pack in incident template in scsm

    We have created customized incident management pack and import that to scsm.Created templates using the this managementpack now i got request to edit or delete some Class properties in the customized managment pack.I have exported the management pack and
    trying to edit the Class properties but those are Grey out.
    Please let me know that how can i Edit or Delete the Class Properties in Customized management pack.
    And Also let me know that i have created Templates using Customized management pack if i delete that mp and import a new mp in to SCSM how can i update the template with new mp.I tied to chnage the management pack in template but it is greyout.
    Regards, H@ri

    In which management pack are your class extension stored? Is this a sealed management pack (did you seal the management pack)? If it is a sealed MP than you have to modify the unsealed MP and seal it again with the same key.
    If you export a sealed MP from SCSM it will be an unsealed copy of the MP but it doesn't work to modify this exported MP. So this is not an option.
    If you want to delete custom properties in a MP you have to make sure that these properties aren't in use in the templates or work items.
    Andreas Baumgarten | H&D International Group

  • Exchange 2010 Management Pack Data Warehouse Synchronization Fails

    Hi Everyone!
    Has anyone had success with importing the Exchange 2010 management pack into Service Manager 2012?
    When we try to import it, it fails.
    Upon further investigation, the 'System Center Core Monitoring' management pack (which is not included with Service Manager 2012) is a dependency of the Exchange 2010 management pack but
    after we import it from the OpsMgr 2012 media, we still get the following warning when we import the  Exchange 2010 management into Service Manager 2012...
    "The management pack was imported successfully.
    Warnings (1):
    Override verification failed, cannot find Management Pack Element : : Cannot find ManagementPackElement [Type=ManagementPackRule, ID=Microsoft.SystemCenter.Agent.MonitoringHost.PrivateBytesThreshold] in management pack ManagementPack:[Name=Microsoft.SystemCenter.2007,
    KeyToken=31bf3856ad364e35, Version=6.0.6246.0]."
    ...and, the Exchange 2010 management pack status in the Service Manager 2012 Data Warehouse 'Management Pack' view indicates 'failed' after the MPSyncJob completes.
    We have a few 'Business Services' which depend on the Exchange 2010 management pack that we are trying to synchronize from OpsMgr 2012 and we are stuck until we can get the Exchange 2010 management
    successfully imported into Service Manager 2012 and have it show a status of 'Completed'  the Service Manager 2012 Data Warehouse 'Management Pack' view.
    Nothing useful in the
     Service Manager 2012 Data Warehouse and Management servers events logs that we could see.
    Any help or guidance would be GREATLY appreciated!
    Regards,
    JJ

    Update: I Just tested with CU2 installed for SrvMgr 2012 and OpsMgr 2012 and version 14.3.38.2 of the Exchange 2010 management, but the management pack still fails to deploy to the SrvMgr 2012 data warehouse (the management pack status shows
    up as 'failed' and the MPSyncJob shows the management pack as 'pending association').  The only clue I have for this problem is the folllowing warning which occurs when I import the management pack into SrvMgr 2012...
    I also get the following 33519 Event ID warning in the Operations Manager event log on the data warehouse server...
    ~~~~~
    Management pack association ignored. This does not require any action. If you continue to frequently see this warning, contact your administrator. This process will continue to retry.
    Management pack ID: e2296ed5-ddbc-ebc7-3881-c5288adaa7cf
    Management pack name: Microsoft.Exchange.2010
    Management pack version: 14.3.38.2
    Data source name: SRV 
    Message: Either the MP has failed deployment Or any of its references has failed deployment
    ~~~~~
    Has anyone had success with getting the Exchange 2010 management pack imported and successfully deployed to the SrvMgr 2012 data warehouse?  
    The good news is that even though the Exchange 2010 management pack has a status of failed, the distributed applications in OpsMgr 2012 that depend on the Exchange management pack now show up under Configuration Items/Business Services including
    all related service component objects which was what I was trying to accomplish in the first place, so for now I'll just leave the Exchange 2010 management pack in the data warehouse with a failed status.
    Regards,
    JJ

  • SCOM 2012 R2 Data Warehouse failed to request a list of management packs from SQL RS server

    Hello, I get this alert can someone help me out ?
    I did check the Proxy and is configured on all the MS and DW server.
    Alert Description
    Data Warehouse failed to request a list of management packs which contain
    reports deployed to SQL Reporting Services Server. Report deployment process
    failed to request management pack list from SQL RS Server. The operation will be
    retried.
    Exception 'WebException': The request failed with HTTP status 407:
    Proxy Authentication Required ( Forefront TMG requires authorization to fulfill
    the request. Access to the Web Proxy filter is denied. ).
    One or more
    workflows were affected by this.
    Workflow name:
    Microsoft.SystemCenter.DataWarehouse.Deployment.Report
    Instance name:
    Data Warehouse Synchronization Service
    Instance ID:
    {FDC7C774-397C-3660-9D57-EFBED3B60329}

    Every call to the SRS generates a call to the OpsMgr SDK on Root Management
    Server to check permissions (security integration). It apepars the account
    the call is made under does not have access.
    To figure out which account is used follow this process:
    1) Run console and click on "Run As Profiles" in the Administration space;
    2) Double-click "Data Warehouse Report Deployment Account";
    3) Click on "Run As Accounts" tab;
    4) If you have a line in the accounts which lists your Root Management
    Server in the "Target Computer" column, note the account name in the "Run As
    Account" column. If you do not have such a line, follow steps 2-4 for the
    "Default Action Account" profile and note the account name;
    5) Click on "Run-As Accounts" in the Administration space and double click
    the account name which you got on step 4)
    6) Switch to the "Account" tab and note domain name and user name;
    Once you found the account (say, DOMAIN\user) check that it is a member of
    the User Role "Operations manager Report Security Administrators". If not -
    add it and the process will recover automatically.
    Also You can refer below links
    http://blogs.technet.com/b/smsandmom/archive/2007/09/06/system-center-operations-manager-doesn-t-show-any-reports.aspx
    http://www.networksteve.com/enterprise/topic.php/Data_Warehouse_failed_to_request_a_list_of_management_packs..._E/?TopicId=16627&Posts=2
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • Script to get all the alerts from SCCM Management Pack

    Hi Team,
    I need a script/tool to generate all the default alerts from a Management Pack.
    Thanks and Regards, Mohd Zaid www.techforcast.com

    You may use the following SQL statement
    select displayname as MPname, b.monitorname, b.alert from(
    select displayname as monitorname, alert, a.managementpackid from (select monitorid, displayname as alert,
    monitor.managementpackid from monitor inner join displaystringview on monitor.alertmessage=ltstringid
    where languageCode='ENU') a inner join displaystringview on a.monitorid=ltstringid
    where languageCode='ENU') b inner join displaystringview on b.ManagementPackid=ltstringid
    where languageCode='ENU' where displayname ='SCCM Management Pack'
    Roger

  • Looking for a SQL query to get all the possible Alert Messages from the Rules in a Management Pack

    For reporting, I'm looking to get a SQL query of all the possible Alert Messages for Rules configured in a Management Pack (not necessarily the ones that have thrown alerts).  I can do this for Monitors, but not for Rules. 
    The configured alert messages for the Management Pack Monitors
    go like this:  ManagementPack > MonitorView> RuleModule > RuleModule.Alert Message > Localized Text
    The configured alert messages for the Management Pack Rules
    should go something like this, but there is a missing link:  ManagementPack > RuleView > RuleModule > ? Missing Link ? > Localized Text
    The Rules are tied to the Module, but I don't see a connection from the RulesModule to the Alert Message that I see in the LocalizedText. The Rule names do not always equal the Alert name. 
    Can someone provide the missing link?

    Hi,
    please try below powershell code to find the corresponding management pack for specific alert:
    $Alert = get-scomalert | where {$_.Name -like 'Agent Proxy Not Enabled*'} | select -first 1
    If ($alert.IsMonitorAlert -eq "True") {
    write-host "Ths is a monitor-generated alert"
    get-scommonitor -ID $Alert.MonitoringRuleID | select Enabled, DisplayName, ManagementPack
    else
    write-host "This is a rule-generated alert"
    get-scomrule -ID $Alert.MonitoringRuleID | select Enabled, DisplayName, ManagementPack
    In addition, please also refer to the below link:
    http://blogs.technet.com/b/mazenahmed/archive/2011/12/02/using-powershell-to-map-opsmgr-active-alert-to-its-corresponding-rule-monitor-and-management-pack-name.aspx
    Regards,
    Yan Li
    Regards, Yan Li

  • Create multiple management packs and groups

    Hi,
    I wonder if it is a way to create a lots of Groups and management packs automatically/scripted.
    My problem is that I have a list with about 200 services that I need to setup monitoring for.
    The monitoring are simple, its just if the service are started or stopped.
    I need to have one management pack and one group for each service.
    Like this:
    The monitor monitors the service "workstation" if its started or stopped.
    The monitor needs to be created in a management pack with this name: "Custom-Service-workstation"
    The agents that I want to monitor this on need to be members of the group "Group-Custom-Service-workstation"
    Please, please help me with this.

    You may refer to the following blog for
    Create Management pack with powershell:http://blogs.msdn.com/b/rslaten/archive/2013/05/09/creating-management-packs-in-scom-2012-with-powershell.aspx
    Create group with powershell:
    http://blogs.msdn.com/b/rslaten/archive/2013/06/06/creating-groups-in-scom-2012-with-powershell.aspx
    Roger

  • SQL Management Pack - Page Life Expectancy Alert

    We have SCOM 2012 SP1 and SQL Management Pack 6.4.1.0 in our environment.   It seems that the majority of our SQL servers are reporting the Engine Page Life Expectancy error.  However when I look at the performance data, the alerts are triggering
    at random times even when according to the performance data, it is not even close to the threshold.  Even on the alert context, the value well above the threshold in most cases.  
    When I look at the monitor in the Authoring pane, the configuration states the threshold and the interval but it does not state what counter it is looking at.  Not sure if that is normal.
    I was wondering if anyone else is experiencing this issue.  I am about to disable the monitor since I am not getting consistant alerts
    Thanks!

    Please also change the critical alert to a warning through creation of an override for all of these objects.
    SQL SERVER – What is Page Life Expectancy (PLE) Counter
    http://blog.sqlauthority.com/2010/12/13/sql-server-what-is-page-life-expectancy-ple-counter/
    Niki Han
    TechNet Community Support

  • Sealed and unsealed management pack in scom ?

    Dear all ,
    What is Difference between sealed and unsealed management pack in scom?
    I know like override alert can not be saved in sealed MP , is there any thing else ?
    Sengo.

    Hi,
    A sealed management pack is a binary file that cannot be edited. An unsealed management pack is an XML file that can be edited. Sealed management packs should have an .mp extension, while unsealed management packs should have an .xml extension.
    In general, management packs obtained from an application or hardware device vendor are sealed.
    Although you cannot change the settings in a sealed management pack, you can still customize the applied settings of a management pack after it is imported by using overrides or by creating additional settings such as rules, monitors, and tasks that supersede
    the management pack's default settings. All customizations that you create are saved to a separate management pack file.
    Management packs can only reference another management pack if the management pack that is referenced is sealed
    Regards,
    Yan Li
    Regards, Yan Li

Maybe you are looking for