stubs added.

This commit is contained in:
Zhen Tang 2013-07-05 22:07:36 +08:00
parent 4adc8ec00f
commit 5fef611d84
27 changed files with 100 additions and 20 deletions

View File

@ -1,5 +1,5 @@
package org.bench4q.monitor.probe;
public class LinuxNetworkProbe {
public class CpuProbe {
}

View File

@ -1,5 +1,5 @@
package org.bench4q.monitor.probe;
public class LinuxCpuProbeInfo {
public class CpuProbeInfo {
}

View File

@ -1,5 +1,5 @@
package org.bench4q.monitor.probe;
public class LinuxDiskProbeInfo {
public class DiskProbe {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe;
public class DiskProbeInfo {
}

View File

@ -1,5 +0,0 @@
package org.bench4q.monitor.probe;
public class LinuxCpuProbe {
// /proc/stat
}

View File

@ -1,5 +0,0 @@
package org.bench4q.monitor.probe;
public class LinuxMemoryProbeInfo {
}

View File

@ -1,5 +0,0 @@
package org.bench4q.monitor.probe;
public class LinuxNetworkProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe;
public class MemoryProbe {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe;
public class MemoryProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe;
public class NetworkProbe {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe;
public class NetworkProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.linux;
public class LinuxCpuProbe {
// /proc/stat
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.linux;
public class LinuxCpuProbeInfo {
}

View File

@ -1,4 +1,4 @@
package org.bench4q.monitor.probe;
package org.bench4q.monitor.probe.linux;
public class LinuxDiskProbe {
// /proc/diskstats

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.linux;
public class LinuxDiskProbeInfo {
}

View File

@ -1,4 +1,4 @@
package org.bench4q.monitor.probe;
package org.bench4q.monitor.probe.linux;
public class LinuxMemoryProbe {
// /proc/meminfo

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.linux;
public class LinuxMemoryProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.linux;
public class LinuxNetworkProbe {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.linux;
public class LinuxNetworkProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsCpuProbe {
// /proc/stat
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsCpuProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsDiskProbe {
// /proc/diskstats
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsDiskProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsMemoryProbe {
// /proc/meminfo
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsMemoryProbeInfo {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsNetworkProbe {
}

View File

@ -0,0 +1,5 @@
package org.bench4q.monitor.probe.windows;
public class WindowsNetworkProbeInfo {
}