/** * Copyright (c) 2011-2014, OpenIoT * * This file is part of OpenIoT. * * OpenIoT is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, version 3 of the License. * * OpenIoT 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with OpenIoT. If not, see <http://www.gnu.org/licenses/>. * * Contact: OpenIoT mailto: info@openiot.eu * @author Ali Salehi * @author Mehdi Riahi */ package org.openiot.gsn.wrappers; import org.openiot.gsn.beans.AddressBean; import org.openiot.gsn.beans.DataField; import org.openiot.gsn.beans.DataTypes; import org.openiot.gsn.beans.StreamElement; import org.openiot.gsn.utils.ParamParser; import java.io.Serializable; import java.lang.management.ManagementFactory; import java.lang.management.MemoryMXBean; import org.apache.log4j.Logger; public class MemoryMonitoringWrapper extends AbstractWrapper { private static final int DEFAULT_SAMPLING_RATE = 1000; private int samplingRate = DEFAULT_SAMPLING_RATE; private final transient Logger logger = Logger.getLogger( MemoryMonitoringWrapper.class ); private static int threadCounter = 0; private transient DataField [ ] outputStructureCache = new DataField [ ] { new DataField( FIELD_NAME_HEAP , "bigint" , "Heap memory usage." ) , new DataField( FIELD_NAME_NON_HEAP , "bigint" , "Nonheap memory usage." ) , new DataField( FIELD_NAME_PENDING_FINALIZATION_COUNT , "int" , "The number of objects with pending finalization." ) }; private static final String FIELD_NAME_HEAP = "HEAP"; private static final String FIELD_NAME_NON_HEAP = "NON_HEAP"; private static final String FIELD_NAME_PENDING_FINALIZATION_COUNT = "PENDING_FINALIZATION_COUNT"; private static final String [ ] FIELD_NAMES = new String [ ] { FIELD_NAME_HEAP , FIELD_NAME_NON_HEAP , FIELD_NAME_PENDING_FINALIZATION_COUNT }; private static final MemoryMXBean mbean = ManagementFactory.getMemoryMXBean( ); public boolean initialize ( ) { setName( "MemoryMonitoringWrapper-Thread" + ( ++threadCounter ) ); AddressBean addressBean = getActiveAddressBean( ); if ( addressBean.getPredicateValue( "sampling-rate" ) != null ) { samplingRate = ParamParser.getInteger( addressBean.getPredicateValue( "sampling-rate" ) , DEFAULT_SAMPLING_RATE ); if ( samplingRate <= 0 ) { logger.warn( "The specified >sampling-rate< parameter for the >MemoryMonitoringWrapper< should be a positive number.\nGSN uses the default rate (" + DEFAULT_SAMPLING_RATE + "ms )." ); samplingRate = DEFAULT_SAMPLING_RATE; } } return true; } public void run ( ) { while ( isActive( ) ) { try { Thread.sleep( samplingRate ); } catch ( InterruptedException e ) { logger.error( e.getMessage( ) , e ); } long heapMemoryUsage = mbean.getHeapMemoryUsage( ).getUsed( ); long nonHeapMemoryUsage = mbean.getNonHeapMemoryUsage( ).getUsed( ); int pendingFinalizationCount = mbean.getObjectPendingFinalizationCount( ); StreamElement streamElement = new StreamElement( FIELD_NAMES , new Byte [ ] { DataTypes.BIGINT , DataTypes.BIGINT , DataTypes.INTEGER } , new Serializable [ ] { heapMemoryUsage , nonHeapMemoryUsage , pendingFinalizationCount } , System.currentTimeMillis( ) ); postStreamElement( streamElement ); } } public void dispose ( ) { threadCounter--; } /** * The output fields exported by this virtual sensor. * * @return The strutcture of the output. */ public final DataField [ ] getOutputFormat ( ) { return outputStructureCache; } public String getWrapperName ( ) { return "System memory consumption usage"; } }