All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.api.telemetry.TelemetryService Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.api.telemetry;

import org.openstack4j.common.RestService;

/**
 * Telemetry allows collection of Alarms and Measurements. 
 * 
 * @author Jeremy Unruh
 */
public interface TelemetryService extends RestService {
	
	 /**
	  * Access to Metering (Measurements) API
	  * 
	  * @return the Meter Service API
	  */
   MeterService meters();
   
	 /**
	  * Access to Alarms API
	  *
	  * @return the Alarm Service API
	  */
   AlarmService alarms();

     /**
      * Access to Events API
      *
      * @return the Event Service API
      */
    EventService events();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy