Appian API

Hello, does anyone know how to make a service monitoring API? To notify when Appian it's under maintenance for example.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to romiev8844
    1. Develop scripts or configurations to periodically check the status of the Appian service based on the defined criteria. This might involve sending HTTP requests to specific endpoints or using other monitoring techniques.

    2. Configure the monitoring tools to send notifications when the service is detected as under maintenance or unavailable. Notifications can be sent via email, SMS, Slack messages, or other communication channels.

    3. Implement logic to handle planned maintenance windows. During maintenance windows, notifications may not be necessary, or different notification recipients may be specified.

      Create script which periodically sends an HTTP GET request to the specified Appian URL and checks the response status code. If the status code indicates an error or if the connection cannot be established, it prints a message indicating the status and can trigger notification logic.

Children