Package nz.co.abrahams.asithappens.host

Source Code of nz.co.abrahams.asithappens.host.MemoryUCDCollector

/*
* MemoryUCDCollector.java
*
* Created on 28 February 2006, 05:35
*
* AsItHappens - real-time network monitor
* Copyright (C) 2006  Mark Abrahams
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*/

package nz.co.abrahams.asithappens.host;

import nz.co.abrahams.asithappens.core.DataType;
import nz.co.abrahams.asithappens.storage.DataHeadings;
import nz.co.abrahams.asithappens.storage.DataPoint;
import nz.co.abrahams.asithappens.storage.Device;
import nz.co.abrahams.asithappens.collectors.DataCollectorResponse;
import nz.co.abrahams.asithappens.collectors.DataCollector;
import nz.co.abrahams.asithappens.snmputil.SNMPException;
import nz.co.abrahams.asithappens.core.DBException;
import java.net.*;
import org.apache.log4j.Logger;

/**
* Memory usage collector for Net-SNMP devices.
*
* @author  mark
*/
public class MemoryUCDCollector extends DataCollector {
   
    /** Collector memory pools */
    public static final String[] UCD_MEMORY_TYPES = { "Real", "Swap" };
   
    /** Real memory pool type */
    public static final int UCD_MEMORY_REAL = 0;
   
    /** Swap memory pool type */
    public static final int UCD_MEMORY_SWAP = 1;
   
    /** Logging provider */
    private static Logger logger = Logger.getLogger(MemoryUCDCollector.class);

    /** SNMP interface */
    private MemoryUCDSNMP snmp;

    /** Total memory for device */
    protected int totalMemory;
   
    /** Type of memory */
    protected int memoryType;
   
    /**
     * Creates a new ProcessorCiscoCollector.
     *
     * @param device       the name or IP address of the target device
     * @param pollInterval the polling interval in milliseconds
     */
    public MemoryUCDCollector(MemoryUCDSNMP snmp, long pollInterval, int memoryType) throws SNMPException {
        super(snmp.getDevice(), pollInterval, DataType.STORAGE);

        this.snmp = snmp;
        this.memoryType = memoryType;
       
        if ( memoryType == UCD_MEMORY_REAL )
            totalMemory = snmp.getUCDMemTotalReal();
        else if ( memoryType == UCD_MEMORY_SWAP )
            totalMemory = snmp.getUCDMemTotalSwap();
        snmp.setExpedientCollection();
       
    }
   
    /**
     * Collects inbound and outbound bandwidth statistics for the collection
     * period.
     *
     * @return an array of two data points - one for inbound and outbound
     */
    public DataCollectorResponse getNextValues(DataHeadings headings) {
        long currentTime;
        DataPoint[] point;
       
        point = new DataPoint[1];
        currentTime = System.currentTimeMillis();
       
        try {
            if ( memoryType == UCD_MEMORY_REAL )
                point[0] = new DataPoint(currentTime, (totalMemory - snmp.getUCDMemAvailReal() ) * 1000);
            else if ( memoryType == UCD_MEMORY_SWAP )
                point[0] = new DataPoint(currentTime, (totalMemory - snmp.getUCDMemAvailSwap() ) * 1000);
        } catch (SNMPException e) {
            point[0] = new DataPoint(currentTime);
            logger.warn("Timeout fetching processor load");
        }
       
        return new DataCollectorResponse(point, new String[0], dataType.initialSetCount());
    }
   
    public int getMemoryType() {
        return memoryType;
    }

    /** Empty routine as there are no resources to release. */
    public void releaseCollector() {
    }
}
TOP

Related Classes of nz.co.abrahams.asithappens.host.MemoryUCDCollector

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.