Package nz.co.abrahams.asithappens.host

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

/*
* MemoryHRCollector.java
*
* Created on 28 February 2006, 22:34
*
* 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.DataCollector;
import nz.co.abrahams.asithappens.collectors.DataCollectorResponse;
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 MemoryHRCollector extends DataCollector {
   
    /** Logging provider */
    private static Logger logger = Logger.getLogger(MemoryHRCollector.class);

    /** SNMP interface */
    private MemoryHRSNMP snmp;

    /** Allocation unit for storage object */
    protected int allocationUnits;
   
    /** Index of object in storage table */
    protected int storageIndex;
   
    /**
     * Creates a new ProcessorCiscoCollector.
     *
     * @param device       the name or IP address of the target device
     * @param pollInterval the polling interval in milliseconds
     */
    public MemoryHRCollector(MemoryHRSNMP snmp, long pollInterval, int storageIndex) throws SNMPException {
        super(snmp.getDevice(), pollInterval, DataType.STORAGE);

        this.snmp = snmp;
        this.storageIndex = storageIndex;
        allocationUnits = snmp.getStorageAllocationUnits(storageIndex);
        snmp.setExpedientCollection();
        logger.debug("Starting HR memory collector: storageIndex=" + storageIndex + ",allocationUnits=" + allocationUnits);
    }
   
    /**
     * 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;
        double storageUsed;
       
        point = new DataPoint[1];
        currentTime = System.currentTimeMillis();
       
        try {
            storageUsed = (double)snmp.getStorageUsed(storageIndex) * allocationUnits;
            point[0] = new DataPoint(currentTime, storageUsed);
            logger.debug("Adding value: " + storageUsed);
        } catch (SNMPException e) {
            point[0] = new DataPoint(currentTime);
            logger.warn("Timeout fetching storage used");
        }
       
        return new DataCollectorResponse(point, new String[0], dataType.initialSetCount());
    }
   
    public int getIndex() {
        return storageIndex;
    }

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

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

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.