Create groups and send a notification email to specific groups

Hi all

I'm quite new to foglight. In our environment, we monitor DB ORACLE using foglight. My requirement is that I have to create 3 groups (Production stage & development). I need to issue alerts that are created for the Production environment for SCOM and for other groups, I need to send these as email notification. Can someone help me how to create groups and email notification separately.

Thank you very much.

NGO

According to me, the simplest will be to do it in the DB administration dashboard.

Golan

Tags: Dell Tech

Similar Questions

  • Why isn't my journal suggests matching and send me an email?

    I am creating a journal watch, so I can be notified when appear specific reasons of the journal entries. Model appeared in the log file and I see some of the wldf debugging messages I have activated, showing that he is at least trying to do something, but the expression does not match, and I get no email.

    An example short of I want to check for the message is the following:

    # < Sep 8, 2011 12:44:38 PM PDT > < opinion > < Stdout > < myhost > < AdminServer > < ExecuteThread [ASSET]: '3' for queue: '(self-adjusting) weblogic.kernel.Default' > < < WLS Kernel > > <><>< 1315511078074 > < BEA-000000 > < [ExecuteThread [ASSET]: '3' for queue: "(self-adjusting) weblogic.kernel.Default"] WARN mypackage - no service set to Manager 'stuff '. >

    I want to check for the string "no service defined for Manager." This message is issued by Log4J in my application, and I'm filtering stdout and stderr in the server log (via the settings in the logging of the server definition area).

    I configured a mail session to go to our SMTP host.

    I've created a new module of diagnosis with a notification using this mail session and just goes to my e-mail address. I created a "Server Log" type shows and I put it to "Enabled". I aimed the module to my server admin. I put the 'Gravity' and 'Log Watch gravity' to 'Info '. My watch rule is simply this:

    (MESSAGE LIKE "no service defined for Manager")

    I don't use an alarm, and I updated the notification for the watch that I just created.

    I also activated the debug indicator "DebugDiagnosticWatch".

    I see the log messages like this that shows doing this correspondence:

    # < Sep 8, 2011 12:44:38 PM PDT > < Debug > < DiagnosticWatch > < myhost > < AdminServer > < ExecuteThread [pending]: '4' for queue: '(self-adjusting) weblogic.kernel.Default' > < < WLS Kernel > > <><>< 1315511078074 > < BEA-000000 > < Evaluating shows Watch: unmatched Manager rule: (MESSAGE LIKE "no service defined for Manager") ruleType : severity 1: 64 alarmType: alarmReset 0: 60000 status: notifications 0: me >
    # < Sep 8, 2011 12:44:38 PM PDT > < Debug > < DiagnosticWatch > < myhost > < AdminServer > < ExecuteThread [pending]: '4' for queue: '(self-adjusting) weblogic.kernel.Default' > < < WLS Kernel > > <><>< 1315511078074 > < BEA-000000 > < evaluated Manager unmatched watch to false to LogEntry [ExecuteThread [ASSET]: '3' for queue] [: "(self-adjusting) weblogic.kernel.Default"] WARN com.att.sunlight.service - no service set to Manager "tricks". >

    I don't see a log message that clearly states that it will send a notification, so I think that there can be no match for a reason any.

    I also enabled 'mail.debug' flag in the mail session properties, so I see if he tried to send email.

    Maybe you can try to write the query in the form

    MESSAGE LIKE 'no service defined % '.

    in the case of MESSAGE LIKE "no service defined for Manager" the LIKE operator acts more like a MATCHES and tries to search for the exact string

    http://download.Oracle.com/docs/CD/E12840_01/WLS/docs103/wldf_configuring/appendix_query.html

  • Table of audit and send me an email

    Hi all

    11 GR 2

    I have a table T1 with 100 + columns (c1, c2... C999), with PK t1_pk1.
    All columns are mandatory fields, but the value of the entry may be delayed depending on the availability of info, but must be filled-up during the day.
    So I can not put a constraint on them as 'not null '.
    And 12midnight dailyt, a script will be executed and check if any 1 column in each line was not being filled.
    If there is at least 1, the script will send me the primary key in the affected rows.

    How can I do this? I have a simple script for this? Is there a default messaging system in 11 GR 2?


    Thank you very much

    If your definition of the table is static I recommend you to write the sql query static with clause or to verify the columns with null values. Alternatively, you can the pl/sql user to dynamically build the query sql and execute it and then send the result by e-mail using the UTL_SMTP package example:

    ------------------

    CREATE OR REPLACE PROCEDURE SEN_NULL_ROWS_PK
    IS
    CURSOR find_null_row
    IS
    SELECT primary_key_column
    Of your_big_table
    WHERE column1 IS NULL or column2 IS NULL or column999 IS NULL
    ;

    mail_body VARCHAR2 (32000);
    mailhost VARCHAR2 (50): = "your_smtp_ip_address";
    mail_conn UTL_SMTP.connection;
    sender VARCHAR2 (50): = "[email protected]";
    recipient VARCHAR2 (50): = "[email protected]";
    subject to VARCHAR2 (50): = 'null row id ';
    content in VARCHAR2 (32000);
    BEGIN
    OPEN find_null_row.

    LOOP
    SEEK find_null_row INTO mail_body;

    EXIT WHEN find_null_row % NOTFOUND;
    content: content = | mail_body;
    END LOOP;

    IF find_null_row % ROWCOUNT = 0
    THEN
    RETURN;
    END IF;

    CLOSE Find_null_row;

    content: = content;

    mail_conn: = UTL_SMTP.open_connection (mailhost, 25);
    UTL_SMTP. HELO (mail_conn, mailhost);
    UTL_SMTP.mail (mail_conn, sender);
    UTL_SMTP. RCPT (recipient, mail_conn);

    UTL_SMTP.open_data (mail_conn);
    () UTL_SMTP.write_raw_data
    mail_conn,
    UTL_RAW.cast_to_raw ('From' |) ': ' || the sender | UTL_TCP. CRLF));
    UTL_SMTP.write_data (mail_conn, ' from: ' | recipient |) UTL_TCP. CRLF);

    () UTL_SMTP.write_raw_data
    mail_conn,
    UTL_RAW.cast_to_raw ("Subject" |) ': ' || topic | UTL_TCP. CRLF));
    () UTL_SMTP.write_raw_data
    mail_conn,
    UTL_RAW.cast_to_raw ("MIME-Version" |) ': ' || «1.0 "|"» UTL_TCP. CRLF));
    () UTL_SMTP.write_raw_data
    mail_conn,
    () UTL_RAW.cast_to_raw
    "Content-Type".
    || ': '
    || ' text/html; charset = "CP1252" '
    || UTL_TCP. CRLF));

    UTL_SMTP. WRITE_DATA (mail_conn, UTL_TCP. CRLF. content);

    UTL_SMTP.close_data (mail_conn);
    UTL_SMTP. Quit (mail_conn);
    EXCEPTION
    WHEN UTL_SMTP.transient_error OR UTL_SMTP.permanent_error
    THEN
    UTL_SMTP. Quit (mail_conn);
    raise_application_error (-20000, 'impossible to email' |) SQLERRM);
    END;
    /

    Best regards

    Javid Hasanov

    Published by: 845702 on 04.07.2012 01:06

    Published by: 845702 on 04.07.2012 01:27

    Published by: 845702 on 04.07.2012 01:28

  • WhatsApp messages and send me an email with a big delay on the 4 g and WiFi help!

    I get my WhatsApp messages and emails with large arrears, does anyone else have this problem happens on the 4g and WiFi its really irritating me

    You have activated the endurance.

  • Can I send a notification e-mail to a certain group of people based on the transmitter?

    I have a form that we use for internal queries. We have a team of 4 set up to work on applications, they need to receive the notification, we want to send a copy of the email to its creator, which could be 1 of 4 different people. Right now, we use the form processing stage, send a Notification email, Setup with the container Email address is always the same, with the e-mail addresses of the 4 team receives notification by e-mail. What I want to know, is there a way to conditionally send people the team and its creator, so that everyone gets the same email?

    Thank you

    GWin

    gwinhfaction E10 in the form of steps, that you will see options for always, conditionally or never treatment.  IF you use the conditional you can set up the terms based on the form submit data or the contact data.  Then you just create 4 steps in processing form, who says always send the same to the person, puts conditional based on the needs of A person, then the next stage of treatment of form still the same E-mail of person B, but make it conditional on the needs of the person of B and so on.

    The conditional processing steps you give as much flexibility and can be used in many different ways.

    I hope this has been helpful!

    Leigh

  • Design and send an e-newsletter in Adobe Muse

    I decided to design an e-newsletter in adobe muse instead of indesign that I found easier installation and simple tutorials to follow. Now I'm almost done I tried for this email as an e-newsletter. I tried many solutions like exporting as html file, but I can't seem to make it work. I also tried to look in and understand the adobe business catalyst. I am struggling to figure out and could use some advice and assistance. I don't know anything about coding or how to extract the code of the muse of adobe. Is there someone who can help me understand this and send it as an e-newsletter or how I can save at least some of my work, rather than start over completely?

    Thank you @.

    Starting over is pretty much your best option. You can't do it the way you are trying, even if it worked, the code creates Muse would probably kill someone customer e-mail (OK maybe it's a little much, but it's not ideal anyway).

    You need to understand some basics of html email, the first being, you can attach or include images in the email real herself, at all. Images must be hosted somewhere online and referenced using absolute links in the code of the email.

    Sending a lot of e-mails from your personal account (whether commercial or private) is a sure way to get blacklisted by the corporate e-mail filters. Do not make if you wish that the people actually get your newsletters.

    Here is a very good article by one of the contributors here (Nancy O): Alt-Web, HTML emails and newsletters Articles

    Since a long time and too late, for the moment, until you understand what is happening in the code, use a service that provides models like Mailchimp, iContact, ConstantContact or to create and send your html email.

  • Chromebook and .emls of sent emails

    (Since it was not a set "Chromebook" that appeared when he was asked to choose a Board I stuck in Android tablets since it's sorta a 'Android' mobile so if is not where it needs to go, feel free to move it where it should go and perhaps you should consider a Chromebook Council or at least one that appears when you are asked "to choose the card that best fits your question to product questions or advice" )

    Hi, I have about 20 emails that I have sent from my account on my desk to my Chromebook.  However, instead of waiting for each other to convey, I forwarded these all at the same time which, of course, I had 20 files .eml should be 'extracted' (for lack of a better job) and there is nothing for me to read, which means I have to go back to my office and send each one email at a time so I can read them.

    Is there an app or extension available that I missed or maybe in the making that will handle this problem?  When they are out there, I would like to know could not find the name of it, so I can find it - look under the forwarded e-mail messages or .eml extensions or apps.

    If not, would you consider either a creation so that when we have these issues, we should not monkey with 1 email at a time.  I have this happen a lot and I can't leave my email on the server to do it when I get on my Chromebook, because I can not connect to the server with my email on this subject with my Chromebook - it specific hardware.

    Thank you.

    Jodi

    Hi @Dojers. I understand that you want to display on your Chromebook *.eml files. I don't know of a specific tool that you can use to do this on a Chromebook, but this site allows you to view them. I don't know if it will work on ChromeOS: Welcome to from Encryptomatic free Email Viewer online. I've never used, so I don't know if it's safe, or even that it will work for you.

    In addition, you will probably find a site online that lets you display the *.eml files. I think that there is webmail sites that can do as well. You will need to research further if that link above does not help.

    Good luck

  • How can I attach and send photos in Hotmail?

    known using hotmail

    How to attach photo and and send it by email

    Hello

    "How to send an attachment with Windows Live Hotmail"

    http://email.about.com/od/windowslivehotmailtips/Qt/How_to_Send_a_File_Attachment_with_Windows_Live_Hotmail.htm

    For any other questions about Hotmail, please repost in the Hotmail Forums:

    http://windowslivehelp.com/product.aspx?ProductID=1

    See you soon.

  • I do my job to the computer on a MAC computer. I want to create a document using Pages and then convert the document to PDF and send a group email. I want to send the PDF using the pdf for each receiver icon must click the icon to open t

    I do my job to the computer on a MAC book PRO. I want to create a document using Pages and then convert the document to PDF and send a group email. I want to send the PDF using the pdf for each receiver icon must click the icon to open the document. My problem is the document does not show the icon, but rather the document is already open. I spoke with 2 Apple. 'Experts' care and can help me. Can someone tell me what to do?

    It's a question of how the recipients e-mail programs deal with attachments. Many e-mail programs will open all the files they can handle, including files jpg and PDF, by default, and if the recipient has not changed that there is nothing you can do about it. The only solution is to the compress first, then it will be delivered as an attachment, allowing the recipient to decompress and open it.

  • How to create a group to send the notification by email of Apps R12


    Hi team,

    Sys Admin Audit reports need must be sent to my team, I use notify option people in program application at the same time to send the URL to the team.

    Notify people that I have to enter each and every name of the person in the team to receive URL, is possible to create group to our team to mention warn people?

    Help, please.

    Thank you

    Anmisha.

    Hello

    I opened a SR.

    Using the delivery Options, even if the extension is attached .out is in PDF format. Thanks for your help.

    Thank you

    Anmisha.

  • I get Windows Live Mail error ID: 0x800CCC6E when I try and send an email to a group of 100 or more. How can I fix it?

    I get Windows Live Mail error ID: 0x800CCC6E when I try and send an email to a group of 100 or more. How can I fix it?

    Hello

    When you use Windows live mail and the question you have posted is related to Windows Live, so it would be better suited in the Windows Live community. Please visit the link below to find a community that will provide the best support.

    Windows Live Mail Forum

    http://www.windowslivehelp.com/forums.aspx?ProductID=15

  • How can I create group email addresses, for example a category with this group addresses.

    Just installed Thunderbird and it copied to my places, but lost my group list. I need this facility to the need to send emails from my role as a volunteer group in the Chiltern U3A. I need to create groups of 3 120 names in each group.
    Hope you can help.

    Opens the address book and press the button on the new list. Then follow these instructions.
    _ http://KB.mozillazine.org/Thunderbird: _FAQs_:_Create_Mailing_List

  • Send a notification message (Email) every time the form is submitted

    Hi all
    Their is a new requirement in our application, send a notification message (email) whenever the form is sent (such as create or apply).
    Please somebody guide me the steps to be taken.
    Do we need to configure all the settings?
    What are the things we need?

    Thank you and best regards,
    Robet

    Hello

    You must give all the parameters for APEX_MAIL. Procedure PUSH_QUEUE
    http://docs.Oracle.com/CD/E14373_01/apirefs.32/e13369/apex_mail.htm#CHDJGGHG

    Note that these parameter values are provided for backward compatibility, but their respective values are ignored. The host name of the SMTP gateway and the SMTP gateway port number come exclusively from values listed on the manage environment settings when sending e-mail.

    I posted link to the Administrator's guide in the proceedings where is instructions how to set up Email.

    Kind regards
    Jari

    http://dbswh.webhop.NET/dbswh/f?p=blog:Home:0

  • Emails received in a single account shows no object and sender in the Inbox list.

    Hello

    I have a weird problem with my Thunderbird. I have two accounts in use. One of them, from Sept. 16., 2015, no longer displays the subject and sender to the Inbox list. However, the emails are perfectly fine when open. What bothers me because I can no longer search and sort the list. Help, please. Thank you.

    Looks like your mail files are corrupt.

    Try to rebuild the troubled folder index file.
    Right click on the file - properties - file Repair

    Note: according to corruption it may delete the affected folder messages that cannot be recovered more.
    In this case, you need to restore from a recent backup.

    Corruption is often caused by anti-virus software to play with the Thunderbird e-mail files. Therefore, it is recommended to create an exception for the Thunderbird profile folder, so that the real-time scanner tries to analyze the profile with your mail.

    For more information on localization, see profile
    http://KB.mozillazine.org/Profile_folder_-_Thunderbird

  • How can I reset my laptop to Nov.2010 - I have problems opening and send emails after January 2011

    I had problems opening and sending emails after January 2011 so I wanted to turn my back on Nov.2010

    Hello

    You cannot use the system back restore more than you have Restore Points. The only one
    Another option would be to return the system to its out of the box, as it was when
    you received. So, it would be better reset your e-mail settings and check with
    the support of your email provider.

    How to create a System Restore Point in Windows 7
    http://www.SevenForums.com/tutorials/697-system-restore-point-create.html

    How to do a system restore in Windows 7
    http://www.SevenForums.com/tutorials/700-system-restore.html

    ============================================================

    These can help with system related issues:

    Follow these steps to remove corruption and missing/damaged file system repair or replacement.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to fix the system files of Windows 7 with the System File Checker
    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

    Then run checkdisk (chkdsk).

    How to run check disk in Windows 7
    http://www.SevenForums.com/tutorials/433-disk-check.html

    =============================================================

    This is Hotmail:

    Windows Live Solution Center - HotMail - HotMail Forums Solutions
    http://windowslivehelp.com/

    Hotmail - Forums
    http://windowslivehelp.com/forums.aspx?ProductID=1

    Hotmail - Solutions
    http://windowslivehelp.com/solutions.aspx?ProductID=1

    How to contact Windows Live Hotmail Support
    http://email.about.com/od/hotmailtips/Qt/et_hotmail_supp.htm

    -------------------------

    And Windows Mail

    Windows Live Mail - Forums
    http://windowslivehelp.com/forums.aspx?ProductID=15

    Windows Live Solution Center - Solutions mail - Mail Forums
    http://windowslivehelp.com/

    Windows Live Mail - mail Solutions
    http://windowslivehelp.com/solutions.aspx?ProductID=15

    I hope this helps.

Maybe you are looking for