Wrong alert description...

Hello,
Why am I getting alerts:
Alert: _026E0E71_A5B3_4781_8FBA_E29D7FC4225D_
instead of
Alert: KHI: Retry Remote Delivery Queue Length - sustained for 30 minutes - Red(>1) - Hub Transport.
Any idea is welcome,
Thanks,
Dom
System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

Yes in the email
Alert: _026E0E71_A5B3_4781_8FBA_E29D7FC4225D_
Resolution state: Closed
Source: Queues - SOPEXCH4 (Hub Transport) - MCO
Path: SOPEXCH4.ad
Last modified by: System
Last modified time: 8/24/2014 1:21:08 PM
Alert description:
"http://OPMGRRMS1.ad/default.aspx?DisplayMode=Pivot&AlertID=%7bd33cc629-166b-435b-8385-d09143601cef%7d"
Notification subscription ID generating this message: {6938E96A-B072-7A58-931E-E8C82A37BFD6}
but also on the SCOM Console?
System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

Similar Messages

  • StdOut in the alert description

    Hi!
    Does anyone know if it's possible to have just the value of the StdOut property in the alert description without values for ReturnCode and ReturnValue in $Data/Context/WsManData$ ? I've been trying various options and didn't find a working one so far.
    Thanks,
    Ivan
    Ivan Seriavin

    Ivan
    These should give you just StdOut, StdErr, or ReturnCode:
    $Data/Context///*[local-name()="StdOut"]$
    $Data/Context///*[local-name()="StdErr"]$
    $Data/Context///*[local-name()="ReturnCode"]$
    Thanks,
    Kris
    www.operatingquadrant.com

  • What is the best way to edit alert descriptions from Sealed Management Packs?

    We have an alert generated from the Exchange 2010 MP. It basically states that the Database Logical Disk Space is running low. We get this alert a lot as log volume varies each day. Alert:
    Alert: The database copy is low on database volume space. The volume has reached error levels (16% free)
    Alert Source: Public Folder Database DB Logical Disk Space - <Server Name> (Mailbox)
    Alert Description:
    TimeSampled: 2015-02-02T14:01:25.0000000-06:00
    ObjectName: Logical Disk
    CounterName: % Free Space
    InstanceName: E:
    Value:
    4
    SampleValue: 15.9214487075806
    Knowledge:
    http://go.microsoft.com/fwlink/?LinkID=67336&id=653D3B31-DFAE-45c8-A656-2584E4C7B93E
    Computer:
    <Computer Name>
    Impacted Entities (0):
    What we'd like to do is edit the subject of the alert to say what the actual value is (in GB for example). What I've been finding is that since the MP is sealed, I'm not allowed to make changes to the alert description.
    What is the recommended way to customize sealed MP alerts and descriptions?

    Making a change to a sealed Microsoft MP isn't a good idea. If you make a change and then you update the MP down the track you will loose any changes you have made.
    When you say edit the subject of the alert, is it the subject in the email notification your talking about or the highlighted value you listed in the alert?
    If its the value you highlighted then I don't believe so as this is the raw value returned from the property bag data and this is usually used by other monitors also. 
    If its the email subject your talking about you can format the E-Mail Notification Channel used and edit E-Mail subject to present the data as you wish in an email.
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Third question - Using parameters in powershell recovery - Alert description

    Hi guys,
    With help i created powershell recovery in a management pack. Once again thanks very much, this is new to me. Now i know these parameters (variables):
    http://blogs.technet.com/b/kevinholman/archive/2009/09/23/alert-notification-subscription-variables-and-linking-that-to-the-console-database-and-sdk.aspx
    But how can i implement this in this XML? I think i must declare them in the XML, because when i put the variable there, it doesn't work. I would like to get the alert description in the message variable (see xml below)
    </Recovery>
    <Recovery ID="MomUIGenaratedRecovery28e1547022254ccbb82784c60d51b1d2" Accessibility="Public" Enabled="true" Target="Type603f92b7b83945598af55495615db953" Monitor="UIGeneratedMonitor0cd347f57f3949deb958cebb02d25555" ResetMonitor="false" ExecuteOnState="Error" Remotable="true" Timeout="300">
    <Category>Custom</Category>
    <WriteAction ID="MomUIGenaratedModule75df98fbfc5b48e39fd605cccd97d29b" TypeID="Windows!Microsoft.Windows.PowerShellWriteAction">
    <ScriptName>sendSMS.ps1</ScriptName>
    <ScriptBody>
    # function SendSMS
    # PowerShell function to send SMS messages via the CM SMS Gateway.
    function SendSMS{
    param([string]$url, [int]$customer, [string]$login, [string]$password, [string]$recipient, [string]$sender,[string]$reference)
    $xml = New-Object XML
    $messages = $xml.CreateElement("MESSAGES")
    $customerxml = $xml.CreateElement("CUSTOMER")
    $customerxml.SetAttribute("ID", $customer)
    $messages.AppendChild($customerxml)|Out-Null
    $user = $xml.CreateElement("USER")
    $user.SetAttribute("LOGIN", $login)
    $user.SetAttribute("PASSWORD", $password)
    $messages.AppendChild($user) |Out-Null
    if (!($reference.Equals(''))) {
    $refxml = $xml.CreateElement("REFERENCE")
    $refxml.Innertext = $reference
    $messages.AppendChild($refxml) |Out-Null
    $tariff = $xml.CreateElement("TARIFF")
    $tariff.InnerText = 0
    $messages.AppendChild($tariff) |Out-Null
    $msg = $xml.CreateElement("MSG")
    $from = $xml.CreateElement("FROM")
    $from.InnerText = $sender
    $msg.AppendChild($from) |Out-Null
    $to = $xml.CreateElement("TO")
    $to.InnerText = $recipient
    $msg.AppendChild($to) |Out-Null
    $body = $xml.CreateElement("BODY")
    $body.SetAttribute("TYPE", "TEXT")
    $body.InnerText = $message
    $msg.AppendChild($body) |Out-Null
    $messages.AppendChild($msg) |Out-Null
    $xml.AppendChild($messages) |Out-Null
    Write-Output $xml.OuterXml
    $webClient = New-Object net.WebClient
    return ($webClient.UploadString($url, $xml.OuterXml))
    # test
    SendSMS -url 'https://website.sms.nl/webservice.ashx' -recipient 0031612345678 -customer 1 -login 1 -password 'password' -sender 'Standby' -message 'Here i want the alert description' -reference '1234'
    </ScriptBody>
    <TimeoutSeconds>60</TimeoutSeconds>
    </WriteAction>
    Kind regards,
    André

    Parameters are defined between ScriptBody and TimeoutSeconds like this:
    <Parameters>
    <Parameter>
    <Name>param1</Name>
    <Value>$Config/param1$</Value>
    </Parameter>
    <Parameter>
    <Name>param2</Name>
    <Value>$Config/param2$</Value>
    </Parameter>
    </Parameters
    This information is available on MSDN.
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • How can I edit the Alert Description for a SQL Agent Job monitor, specifically Job Duration.

    I'm setting up some sql agent job monitoring, I need to monitor for Job Duration. 
    This is easy enough, I just create the overrides and set the parameters and it alerts as expected, however there is no alert text. The alert does me no good with out an alert description. How can I change this?
    Paul Arbogast

    Paul
    It is not an easy way for your just copy that monitor and modify it. If you has interest, you may use MP2XMLDumper tool to export SQL server monitoring MP , modify relate moniotr and import it into SCOM.
    You can download  MP2XMLDumper tool  from
    http://blogs.technet.com/b/cliveeastwood/archive/2007/08/22/mp2xmldumper-version-2-0-export-opsmgr-mp-s-to-xml-using-mp-name-export-criteria.aspx 
    Roger

  • Dynamic group membership Query based on alert description - IS package failed

    Hi there all good people,
    Ive got the following case:
    i need to filter out some of the alerts raised bij the is package failed Alert rule.
    All allerts raised need a override accept two alerts with a specific description. example:
    Alert description: Package "Full Back-Up" failed.  should still raise an alert also the
    Alert description: Package "Full Db Back-Up" failed.
    I.m playing arround with dynamic groups. Can somebody give me some pointers?
    Or do i need to create an new alert rule? en override this one for all objects?
    I hope the question is clear, im no native english speaking

    Hi,
    I would like to suggest you override this one for all objects and then create a new alert rule based on your requirement.
    Regards,
    Yan Li
    Regards, Yan Li

  • Giving alert descriptions for logfile monitoring

    Hi,
    Can somebody please helo me to know this better.
    we would be using xml for creating management packs, while creating a MP for logfile monitoirng how would you give the alert description for multiple errors in single logfile.txt
    Eg:
    Logifle path => E:/temp/test.txt
    i want to monitor 3 strings in the above path (error / duplicate / restart), how would i give the alert description in a sngle monitor
    Alert description == $Data/Context/Params/Param[1]$

    Thanks for the answer Suresh,
    but the above alert description
    $Data/Context/Params/Param[1]$ is working only for simple logfile detection
    <LogFileDirectory>E:\logfiles\Logs\</LogFileDirectory>
    <LogFilePattern>IPCDataService.log</LogFilePattern>
    <LogIsUTF8>false</LogIsUTF8>
    <Expression>
    but it is not working for
    <RepeatedLogFileDirectory>E:\logfiles\Logs\</RepeatedLogFileDirectory>
    <RepeatedLogFilePattern>IPCDataService.log</RepeatedLogFilePattern>
    <RepeatedLogIsUTF8>false</RepeatedLogIsUTF8>
    <RepeatedExpression>

  • Pick up wrong Material description

    Hi all,
    Iu2019m getting wrong Material description in the report output.
    Iu2019m displaying the report based on the sales order numbers.
    But one sales order number doesn't have the material number,
    Its not display the material number
    But its display the Material description for previous material number description
    How can I avoid this description in output?
    Thanks,
    Srini

    Hi ,
    You need to clear the work area after appending into the internal table.
    like:
    append workarea to internal table.
    clear workarea.
    Edited by: Bhavana Amar on Mar 10, 2010 11:02 AM

  • Alert description and short text

    Hi Masters,
    I configured BPM alerts in my scenario with alert category define in ALRTCATDEF and I have selected dynamic test. I am getting the alert and long text as I given in BPM alert message that is good. But in my alert, message description and Short text is displaying as ' Process <xxxxxxx>'.
    So can I get the same message as long text in messsage description and short text and how to change the description.
    Please help me to find out the soultion for this
    Reg,
    Shiv

    Is any other way to get the message description

  • Campaign Planning:  wrong campaign description.

    Dear Experts,
    I am working in a PPDS project for a process industry company, company production highly depends on materials allergens, changeovers between materials with different allergens is very time-costing and moreover company needs to ensure that materials does not get  any others allergens as it could be dangerous for the customer.
    Company wants to visualize allergens for each operation on DSPB and also on order list. Each allergen is a setup group  and I am using Campaign Planning (after Optimizer) to make it more visual, and also take profit of the campaign alerts. Then campaig descriptions should provide information on Order List (I can add a column in the layout cmpgn descript), however campaigns are getting the description from the first material within the campaign and not the campaign description from the campaign profile (customizing).
    -Can anybody help with the description issue? I think it should show the campaign description from the campaign profile, it does take the color from the profile but not the description!
    - Do you think it is a good solution? Suggestions are welcome!
    Thanks in advance!
    Carlos

    Hi Datta Kadam,
    I have been checking the Campaign Badis. It seems that the BADI "Assign Campaign Description after Optimization" -SAPAPO/PCM01_TXTOPT is only intended for when campaigns have been created through Campaign Optimization and it is not my case.
    What about the BADI "Change Respresentation of Campaign Bars" - /SAPAPO/PCM04_PT_PRS?
    In the standard system, the campaign bars displayed in the resource chart of the DSPB are labelled with info: the APO campaign number, short text, and status.
    We can use this BADI tooverride this standard setting and tailor the label for the campaign bar according to our own criteria. Any type of information can be displayed. In addition,we an override the campaign color and status-dependent hatches.
    My requirement is to see in the campaign description, per example on the receipts view transaction or on the DSPB, the setup group as description. So I would be enough with the campaign number and the description (setup group) that I wanna see.
    Thanks a lot!
    Carlos

  • Power-manager applet: wrong alerts

    I have Gnome and I use power-manager-applet in the taskbar to check the life of the battery.
    I noticed this strange problem... When I use the laptop with batteris and I connect the power cable, the applet displays a popup alerting me that the power cable has been disconnected! But the icon shows the right image with the plug over the battery. And if I put the mouse on it, a tooltip says that the battery is charging...
    If I disconnect the cable, the applet doesn't display no alters and an OSD popup with a stylized gear appears in the middle-botton of the monitor....
    Does anybody has experienced something similar?

    I've tried xfce4-power-manager but this program has a bug too.
    Its icon appears in the sys-tray only after about 20 seconds after Gnome's loaded...
    I've tried to load it from ~/.bashrc but it manifest the same problem: it appears only after a while... Could it do this because I use it under Gnome instead of XFCE?
    P.S.:
    I've noticed that it is also slower than gnome-power-manager in refreshing its state: if I disconnect the power cable, it pops up the notification after 5-10 seconds...
    Last edited by leo72 (2009-06-30 20:26:22)

  • Iphone5 plays wrong alert tone for facebook notifications.

    It continues to play the "tri-tone" alert tone, even after I've changed it under Settings<Sounds<Facebook Post.  How do I fix this?

    First, if you want to clean your Mac, get rid of "CleanMyMac."
    I don't know what's causing your problem, so I can only offer an experimental solution. The effects are easily undone if it doesn't work. The real cause may be a bug or something external to your computer.
    Back up all data.
    Close the System Preferences window if it's open.
    Step 1
    Triple-click the line below to select it:
    ~/Library/Social
    Right-click or control-click the highlighted line and select
    Services ▹ Open
    from the contextual menu. A folder named "Social" should open. Move that folder to the Desktop, leaving the window open. Log out, log back in, and test. If there's no change, put the folder you moved back where it was, overwriting the one that may have been created in its place. Go on to the next step. Otherwise, delete the folder you moved.
    Step 2
    Proceed as in step 1, but with this line:
    ~/Library/Internet Accounts
    You'll need to recreate your settings for Facebook, Twitter, and other social networks, as applicable.

  • Iphone 5 plays wrong alert tone for facebook notifications.

    It continues to play the "tri-tone" alert sounds, even after I've changed it under Settings<Sounds<Facebook Post.  How do I fix this?

    I'm sorry to disappoint you, but I have an iPhone 4S with iOS 6.1.3, so it is not just the iPhone 5. It has been this way for over a year, which would include several iOS versions. I can try the vehicle question you have later. I don't have access to the vehicle right now.
    I'm not sure if any of the web based streaming apps will play over Bluetooth in a vehicle. Since this is a sound app, I'm not sure it Bluetooth supports that, but it would take someone other than me to test that, since I don't stream music that way. I do use Bluetooth on occasion to play my iTunes music in the vehicle and that works just fine. The restriction for text tones may be based in the ability of the Bluetooth stack to support it, if the device does not support the texting portion of Bluetooth.
    If you believe this is something Apple needs to be aware of, then you need to let them know this. This can only be done via the feedback page at www.apple.com/feedback and click on the appropriate link.
    EDIT: Here are the appropriate support documents about Bluetooth. One is about what profiles the iPhone supports, and the other is about Bluetooth FAQs. It could be also that the vehicle does not support the latest Bluetooth profiles. http://support.apple.com/kb/HT3647 http://support.apple.com/kb/HT3887
    Message was edited by: ChrisJ4203

  • Wrong text description for exit variable

    Hi,
    I have a problem with descriptions of variables created on 0FISCPER. I created two exit variables 'Z1' and 'Z2' and the related Function module that reading a custom table (I read the last closed period) build a range. For the first variable the range is 001.2006 to the last closed period. For the second variable the range is from (last closed period + 1) to 012.2006.
    The manual layout (dynamic for 0FISCPER) shows for the columns related with the first variable the description of the first period (January), for the other acts the same (May - the first value of second variable)
    Values from infocube are selected correctly so the problem seems to be specific of texts.
    Thank you in advance,
    Andrea

    Hi Andrea,
    first check if fiscal year variant is restricted to a single value. Then look into the customizing for the FYV. It's possible to maintain texts for periods there, so check if those are correct.
    If it still does not work, open a message to SAP support.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Mail showing wrong account descriptions

    This isn't a major breaking feature, it's just me nit picking. In mail it's not updating the account description for my iCloud email but for all my other accounts it allows me to change them. What's weird is that it works just fine on my iPad 2 and it use to work on my iPhone 4. On my iPhone 4 my iCloud email is designated as "Me" which is what I use to have it back when MobileMe was around. I changed it to "iCloud" and it's still showing "Me". My iPad 2 show's this field as "iCloud" and I'm able to change it to whatever I want.
    I've tried some fixes like renaming several times, turning iCloud email on and off, but nothing major. Like I said this is just a nit picking issue since I'd like everything to be unified. It in no way affects my usage of Mail or any other functionality and my iPhone is updated to the latest iOS update.

    Hi all,
    I finally solved my problem and felt like I should share my experience. The idea of changing the sorting/listing settings of Mail.app was indeed a good option. Unfortunately, it doesn't solve the issue on my iPhone or any other device/application accessing my data. Besides that, I didn't feel comfortable with this solution, since it didn't really fix my problem.
    So here is what I did. I downloaded Mozilla's Thunderbird and set up my MobileMe account. After successfully retrieving all IMAP data I saved a copy of my complete IMAP folder structure locally. Afterwards I checked if I really had all messages and folders and deleted my data on MobileMe. Next step was uploading all my local messages/folders back to MobileMe again. I had about 3,5GB to transfer and it took me almost a night to finish this process.
    After successfully transferring the data, I opened Mail.app and my all other devices/applications accessing that particular MobileMe account and had everything re-synchronized and Voilà Thunderbird transferred the messages with the received date correctly and Mail.app and other devices/applications displayed and sorted it accordingly. I deleted Thunderbird's email client and its associated files and folders, but I guess that application should be a keeper anyway.
    So far I had the impression that this was all caused, because I transferred my local saved messages/folders to MobileMe through Microsoft Entourage. That application transmitted the date I transferred the message instead of using the message's header date settings.
    I hope this helped.
    Cheers!

Maybe you are looking for