
stream.monitor.VmStats Maven / Gradle / Ivy
The newest version!
/*
* streams library
*
* Copyright (C) 2011-2014 by Christian Bockermann, Hendrik Blom
*
* streams is a library, API and runtime environment for processing high
* volume data streams. It is composed of three submodules "stream-api",
* "stream-core" and "stream-runtime".
*
* The streams library (and its submodules) is free software: you can
* redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* The stream.ai library (and its submodules) 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
package stream.monitor;
import java.io.BufferedReader;
import java.io.File;
import java.io.InputStreamReader;
import java.io.Serializable;
import java.util.ArrayList;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import stream.Data;
import stream.data.DataFactory;
import stream.io.AbstractStream;
import stream.util.Time;
/**
* @author Christian Bockermann
*
*/
public class VmStats extends AbstractStream {
static Logger log = LoggerFactory.getLogger(VmStats.class);
String[] paths = new String[] { "/usr/bin", "/usr/sbin", "/usr/local/bin",
"/usr/local/sbin" };
String[] vmStats = new String[] { "vmstat", "vm_stat" };
File vmstat = null;
Process process;
BufferedReader reader;
Time interval = new Time(5000L);
final ArrayList keys = new ArrayList();
/**
* @see stream.io.AbstractStream#init()
*/
@Override
public void init() throws Exception {
super.init();
for (String path : paths) {
for (String probe : vmStats) {
File f = new File(path + File.separator + probe);
if (f.canExecute()) {
vmstat = f;
break;
}
}
if (vmstat != null)
break;
}
if (vmstat == null) {
throw new Exception("Failed to locate vm_stat/vmstat utility!");
}
String cmd = vmstat.getAbsolutePath();
Integer time = Math.max(1, interval.asSeconds().intValue());
process = Runtime.getRuntime().exec(
new String[] { cmd, time.toString() });
reader = new BufferedReader(new InputStreamReader(
process.getInputStream()));
}
/**
* @see stream.io.AbstractStream#readNext()
*/
@Override
public Data readNext() throws Exception {
String line = reader.readLine();
if (line == null)
return null;
if (line.trim().startsWith("Mach") || line.trim().startsWith("proc")) {
line = reader.readLine(); // the headers
String[] headers = line.trim().split("\\s+");
keys.clear();
for (String header : headers) {
if (header.trim().isEmpty())
continue;
keys.add(header.trim());
}
line = reader.readLine();
}
String[] vals = line.trim().split("\\s+");
Data item = DataFactory.create();
item.put("@timestamp", System.currentTimeMillis());
for (int i = 0; i < keys.size() && i < vals.length; i++) {
String key = keys.get(i);
String val = vals[i];
Serializable value = val;
try {
if (val.toLowerCase().endsWith("k")) {
value = new Double(val.substring(0, val.length() - 1));
} else {
value = new Double(val);
}
} catch (Exception e) {
value = vals[i];
}
item.put("vmstats:" + key, value);
}
return item;
}
/**
* @see stream.io.AbstractStream#close()
*/
@Override
public void close() throws Exception {
super.close();
process.destroy();
}
/**
* @return the interval
*/
public Time getInterval() {
return interval;
}
/**
* @param interval
* the interval to set
*/
public void setInterval(Time interval) {
this.interval = interval;
}
public static void main(String[] args) throws Exception {
VmStats vmstats = new VmStats();
vmstats.setLimit(100L);
vmstats.init();
Data item = vmstats.read();
while (item != null) {
log.info("item: {}", item);
item = vmstats.read();
}
vmstats.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy