IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  Set alert for critical Environment

    Posted Thu April 13, 2017 01:02 PM

    Hi There;

    Are there any way to set alert emails to administrator for critical environment flag in Command central?
    Thanks!!


    #webMethods-General
    #Integration-Server-and-ESB
    #webMethods
    #Command-Central


  • 2.  RE: Set alert for critical Environment

    Posted Fri April 14, 2017 05:07 PM

    Command Central basic monitoring does not directly support sending email or other types of actions on alerts.

    Alerts are exposed via REST API (sagcc get monitoring alerts -d -f json) and can be processed by a polling REST client, for example implemented on Integration Server, that can send emails or perform any other type of action.

    Thanks
    Sergei


    #Command-Central
    #webMethods-General
    #Integration-Server-and-ESB
    #webMethods


  • 3.  RE: Set alert for critical Environment

    Posted Mon April 17, 2017 09:47 AM

    I think Optimize for platform will be suitable for your requirement.

    Regards,
    Syed Faraz Ahmed


    #Integration-Server-and-ESB
    #webMethods
    #Command-Central
    #webMethods-General


  • 4.  RE: Set alert for critical Environment

    Posted Mon April 17, 2017 09:55 AM

    Hi
    It is possible via optimize for infrastructure.
    Once configured it loads with predefined KPIs which can be configured to send alerts with the defined threshold.


    #Integration-Server-and-ESB
    #Command-Central
    #webMethods
    #webMethods-General


  • 5.  RE: Set alert for critical Environment

    Posted Mon April 17, 2017 11:36 AM


  • 6.  RE: Set alert for critical Environment

    Posted Mon April 17, 2017 02:15 PM

    Hi Sergei; I tried to use REST API approach get alerts and its returning into encoding format(Not sure which encoding type - result looks like NAK ETX ETX after converting byte to string), but same request I have executed for landscape/nodes its returning proper result via “pub.client:http” service in IS. Could you please help me for encoding type?

    for landscape/nodes : http://:/cce/landscape/nodes

    for Monitoring/alerts: http://:/cce/Monitoring/alerts

    Thanks,
    Santosh


    #Integration-Server-and-ESB
    #webMethods
    #Command-Central
    #webMethods-General


  • 7.  RE: Set alert for critical Environment

    Posted Mon April 24, 2017 09:04 PM

    The content type should be either application/xml or application/json, depending which one you prefer.
    It is the same for all CCE REST API’s, there is nothing special with /monitoring resource.

    You can try it with curl:

    $ curl -uAdministrator:manage -H “Accept: application/json” http://localhost:8090/cce/monitoring/alerts

    $ curl -uAdministrator:manage -H “Accept: application/xml” http://localhost:8090/cce/monitoring/alerts

    Thanks
    Sergei


    #webMethods-General
    #Command-Central
    #webMethods
    #Integration-Server-and-ESB


  • 8.  RE: Set alert for critical Environment

    Posted Tue April 25, 2017 05:03 PM