Package net.grinder.engine.communication

Examples of net.grinder.engine.communication.LogReportGrinderMessage


      logFiles = new File[]{logFiles[0]};
    }
    final byte[] compressedLog = LogCompressUtils.compress(logFiles,
        Charset.defaultCharset(), Charset.forName("UTF-8")
    );
    consoleCommunication.sendMessage(new LogReportGrinderMessage(testId, compressedLog, new AgentAddress(m_agentIdentity)));
    // Delete logs to clean up
    if (!agentConfig.getAgentProperties().getPropertyBoolean(PROP_AGENT_KEEP_LOGS)) {
      LOGGER.info("Clean up the perftest logs");
      FileUtils.deleteQuietly(logFolder);
    }
View Full Code Here

TOP

Related Classes of net.grinder.engine.communication.LogReportGrinderMessage

Copyright © 2018 www.massapicom. 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.