本文整理汇总了Java中org.hyperic.sigar.SigarLoader类的典型用法代码示例。如果您正苦于以下问题:Java SigarLoader类的具体用法?Java SigarLoader怎么用?Java SigarLoader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SigarLoader类属于org.hyperic.sigar包,在下文中一共展示了SigarLoader类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: output
import org.hyperic.sigar.SigarLoader; //导入依赖的package包/类
private void output(CpuPerc cpu) {
println("User Time....." + CpuPerc.format(cpu.getUser()));
println("Sys Time......" + CpuPerc.format(cpu.getSys()));
println("Idle Time....." + CpuPerc.format(cpu.getIdle()));
println("Wait Time....." + CpuPerc.format(cpu.getWait()));
println("Nice Time....." + CpuPerc.format(cpu.getNice()));
println("Combined......" + CpuPerc.format(cpu.getCombined()));
println("Irq Time......" + CpuPerc.format(cpu.getIrq()));
if (SigarLoader.IS_LINUX) {
println("SoftIrq Time.." + CpuPerc.format(cpu.getSoftIrq()));
println("Stolen Time...." + CpuPerc.format(cpu.getStolen()));
}
println("");
}
开发者ID:EnFlexIT,项目名称:AgentWorkbench,代码行数:15,代码来源:CpuInfo.java
示例2: main
import org.hyperic.sigar.SigarLoader; //导入依赖的package包/类
public static void main(String[] args) {
Shell shell = new Shell();
try {
if (args.length == 0) {
shell.isInteractive = true;
}
shell.init("sigar", System.out, System.err);
shell.registerCommands();
shell.readCommandFile(System.getProperty("user.home"));
shell.readCommandFile(".");
shell.readCommandFile(SigarLoader.getLocation());
if (shell.isInteractive) {
shell.initHistory();
Getline.setCompleter(shell);
shell.run();
}
else {
shell.handleCommand(null, args);
}
} catch (Exception e) {
System.err.println("Unexpected exception: " + e);
} finally {
shell.shutdown();
}
}
开发者ID:EnFlexIT,项目名称:AgentWorkbench,代码行数:30,代码来源:Shell.java
示例3: loadSigarIfRunningWithOneJar
import org.hyperic.sigar.SigarLoader; //导入依赖的package包/类
private void loadSigarIfRunningWithOneJar() {
if (OneJar.isRunningWithOneJar()) {
String nativeLibraryName = SigarLoader.getNativeLibraryName();
String nativeLibraryNameToLoad = nativeLibraryName.replace(SigarLoader.getLibraryExtension(), "")
.replace(SigarLoader.getLibraryPrefix(), "");
System.loadLibrary(nativeLibraryNameToLoad);
}
}
开发者ID:ow2-proactive,项目名称:scheduling,代码行数:9,代码来源:RMNodeStarter.java
示例4: printNativeInfo
import org.hyperic.sigar.SigarLoader; //导入依赖的package包/类
private static void printNativeInfo(PrintStream os) {
String version =
"java=" + Sigar.VERSION_STRING +
", native=" + Sigar.NATIVE_VERSION_STRING;
String build =
"java=" + Sigar.BUILD_DATE +
", native=" + Sigar.NATIVE_BUILD_DATE;
String scm =
"java=" + Sigar.SCM_REVISION +
", native=" + Sigar.NATIVE_SCM_REVISION;
String archlib =
SigarLoader.getNativeLibraryName();
os.println("Sigar version......." + version);
os.println("Build date.........." + build);
os.println("SCM rev............." + scm);
String host = getHostName();
String fqdn;
Sigar sigar = new Sigar();
try {
File lib = sigar.getNativeLibrary();
if (lib != null) {
archlib = lib.getName();
}
fqdn = sigar.getFQDN();
} catch (SigarException e) {
fqdn = "unknown";
} finally {
sigar.close();
}
os.println("Archlib............." + archlib);
os.println("Current fqdn........" + fqdn);
if (!fqdn.equals(host)) {
os.println("Hostname............" + host);
}
if (SigarLoader.IS_WIN32) {
LocaleInfo info = new LocaleInfo();
os.println("Language............" + info);
os.println("Perflib lang id....." +
info.getPerflibLangId());
}
}
开发者ID:EnFlexIT,项目名称:AgentWorkbench,代码行数:46,代码来源:Version.java
示例5: loadNativeSigarBindings
import org.hyperic.sigar.SigarLoader; //导入依赖的package包/类
/**
* Extracts the native bindings for sigar and tells sigar where to find them.
*
* @param nativeLibDir the directory the native libs should be stored to
* @return the folder that contains the extracted nativeLibs
* @throws Exception
*/
private static void loadNativeSigarBindings(File nativeLibDir) throws Exception {
extractFromJarToTemp(SIGAR_RESOURCE_DIR + new SigarLoader(Sigar.class).getLibraryName(), nativeLibDir);
System.setProperty(SIGAR_PATH, nativeLibDir.getAbsolutePath());
nativeLibDir.getAbsolutePath();
}
开发者ID:stagemonitor,项目名称:stagemonitor,代码行数:14,代码来源:SigarNativeBindingLoader.java
注:本文中的org.hyperic.sigar.SigarLoader类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论