Search in sources :

Example 1 with DeviceSystemStats

use of org.onosproject.net.behaviour.DeviceSystemStats in project onos by opennetworkinglab.

the class PicaOvsdbSystemStatsQuery method getDeviceSystemStats.

/**
 * Get system stats (cpu/mmeory usage) of device.
 *
 * @return deviceSystemStats, system stats (cpu/memory usage) of device if available
 */
@Override
public Optional<DeviceSystemStats> getDeviceSystemStats() {
    Optional<DeviceCpuStats> cpuStats = getCpuUsage();
    Optional<DeviceMemoryStats> memoryStats = getMemoryUsage();
    if (cpuStats.isPresent() && memoryStats.isPresent()) {
        DeviceSystemStats systemStats = new DeviceSystemStats(memoryStats.get(), cpuStats.get());
        return Optional.of(systemStats);
    } else {
        return Optional.empty();
    }
}
Also used : DeviceMemoryStats(org.onosproject.net.behaviour.DeviceMemoryStats) DeviceCpuStats(org.onosproject.net.behaviour.DeviceCpuStats) DeviceSystemStats(org.onosproject.net.behaviour.DeviceSystemStats)

Example 2 with DeviceSystemStats

use of org.onosproject.net.behaviour.DeviceSystemStats in project onos by opennetworkinglab.

the class ServerDevicesDiscovery method getDeviceSystemStats.

/**
 * Implements DeviceSystemStatisticsQuery behaviour.
 */
@Override
public Optional<DeviceSystemStats> getDeviceSystemStats() {
    // Retrieve the device ID from the handler
    DeviceId deviceId = getDeviceId();
    checkNotNull(deviceId, MSG_DEVICE_ID_NULL);
    // ....to retrieve monitoring statistics
    MonitoringStatistics monStats = getGlobalMonitoringStatistics(deviceId);
    Optional<DeviceCpuStats> cpuStats = getOverallCpuUsage(monStats);
    Optional<DeviceMemoryStats> memoryStats = getOverallMemoryUsage(monStats);
    if (cpuStats.isPresent() && memoryStats.isPresent()) {
        return Optional.of(new DeviceSystemStats(memoryStats.get(), cpuStats.get()));
    } else {
        return Optional.empty();
    }
}
Also used : DeviceMemoryStats(org.onosproject.net.behaviour.DeviceMemoryStats) DeviceCpuStats(org.onosproject.net.behaviour.DeviceCpuStats) DeviceId(org.onosproject.net.DeviceId) DefaultMonitoringStatistics(org.onosproject.drivers.server.impl.stats.DefaultMonitoringStatistics) MonitoringStatistics(org.onosproject.drivers.server.stats.MonitoringStatistics) DeviceSystemStats(org.onosproject.net.behaviour.DeviceSystemStats)

Aggregations

DeviceCpuStats (org.onosproject.net.behaviour.DeviceCpuStats)2 DeviceMemoryStats (org.onosproject.net.behaviour.DeviceMemoryStats)2 DeviceSystemStats (org.onosproject.net.behaviour.DeviceSystemStats)2 DefaultMonitoringStatistics (org.onosproject.drivers.server.impl.stats.DefaultMonitoringStatistics)1 MonitoringStatistics (org.onosproject.drivers.server.stats.MonitoringStatistics)1 DeviceId (org.onosproject.net.DeviceId)1