Interface MonitoringConfigurationMBean

All Known Subinterfaces:
BusinessServiceConfigurationMBean, CommonServiceConfigurationMBean, FlowServiceConfigurationMBean, PipelineServiceConfigurationMBean, ProxyServiceConfigurationMBean

public interface MonitoringConfigurationMBean
Provides API to enable/disable monitoring.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    disableMonitoring(Ref serviceRef)
    Disables monitoring for this service.
    void
    disableSLAAlerting(Ref serviceRef)
    Disables SLA alerts for this service.
    void
    enableMonitoring(Ref serviceRef)
    Enables monitoring for this service.
    void
    enableSLAAlerting(Ref serviceRef)
    Enables the SLA alerts flag for this service.
    boolean
    Returns true if the monitoring for this service is enabled
    boolean
    Returns true if the SLA alert flag for this service is enabled.
  • Method Details

    • isMonitoringEnabled

      boolean isMonitoringEnabled(Ref serviceRef) throws Exception
      Returns true if the monitoring for this service is enabled
      Parameters:
      serviceRef - the reference to the service
      Throws:
      Exception
    • enableMonitoring

      void enableMonitoring(Ref serviceRef) throws Exception
      Enables monitoring for this service.
      Parameters:
      serviceRef - the reference to the service
      Throws:
      Exception
    • disableMonitoring

      void disableMonitoring(Ref serviceRef) throws Exception
      Disables monitoring for this service.
      Parameters:
      serviceRef - the reference to the service
      Throws:
      Exception
    • isSLAAlertingEnabled

      boolean isSLAAlertingEnabled(Ref serviceRef) throws Exception
      Returns true if the SLA alert flag for this service is enabled.
      Parameters:
      serviceRef - the reference to the service
      Throws:
      Exception
    • enableSLAAlerting

      void enableSLAAlerting(Ref serviceRef) throws Exception
      Enables the SLA alerts flag for this service. If this is first time the SLA alert flag is being enabled for this service, the severity level is set to "Normal". If the SLA alert flag was enabled for this service at any point in the past, it is now re-enabled at the most recent level of severity.
      Parameters:
      serviceRef - the reference to the service
      Throws:
      Exception
    • disableSLAAlerting

      void disableSLAAlerting(Ref serviceRef) throws Exception
      Disables SLA alerts for this service.
      Parameters:
      serviceRef - the reference to the service
      Throws:
      Exception