• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Counter类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中sun.management.counter.Counter的典型用法代码示例。如果您正苦于以下问题:Java Counter类的具体用法?Java Counter怎么用?Java Counter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Counter类属于sun.management.counter包,在下文中一共展示了Counter类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: importFrom

import sun.management.counter.Counter; //导入依赖的package包/类
/**
 * Imports the connector address from the instrument buffer
 * of the specified Java virtual machine.
 *
 * @param vmid an identifier that uniquely identifies a local Java virtual
 * machine, or <code>0</code> to indicate the current Java virtual machine.
 *
 * @return the value of the connector address, or <code>null</code> if the
 * target VM has not exported a connector address.
 *
 * @throws IOException An I/O error occurred while trying to acquire the
 * instrumentation buffer.
 */
public static String importFrom(int vmid) throws IOException {
    Perf perf = Perf.getPerf();
    ByteBuffer bb;
    try {
        bb = perf.attach(vmid, "r");
    } catch (IllegalArgumentException iae) {
        throw new IOException(iae.getMessage());
    }
    List<Counter> counters =
            new PerfInstrumentation(bb).findByPattern(CONNECTOR_ADDRESS_COUNTER);
    Iterator<Counter> i = counters.iterator();
    if (i.hasNext()) {
        Counter c = i.next();
        return (String) c.getValue();
    } else {
        return null;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:32,代码来源:ConnectorAddressLink.java


示例2: importRemoteFrom

import sun.management.counter.Counter; //导入依赖的package包/类
/**
 * Imports the remote connector address and associated
 * configuration properties from the instrument buffer
 * of the specified Java virtual machine.
 *
 * @param vmid an identifier that uniquely identifies a local Java virtual
 * machine, or <code>0</code> to indicate the current Java virtual machine.
 *
 * @return a map containing the remote connector's properties, or an empty
 * map if the target VM has not exported the remote connector's properties.
 *
 * @throws IOException An I/O error occurred while trying to acquire the
 * instrumentation buffer.
 */
public static Map<String, String> importRemoteFrom(int vmid) throws IOException {
    Perf perf = Perf.getPerf();
    ByteBuffer bb;
    try {
        bb = perf.attach(vmid, "r");
    } catch (IllegalArgumentException iae) {
        throw new IOException(iae.getMessage());
    }
    List<Counter> counters = new PerfInstrumentation(bb).getAllCounters();
    Map<String, String> properties = new HashMap<>();
    for (Counter c : counters) {
        String name =  c.getName();
        if (name.startsWith(REMOTE_CONNECTOR_COUNTER_PREFIX) &&
                !name.equals(CONNECTOR_ADDRESS_COUNTER)) {
            properties.put(name, c.getValue().toString());
        }
    }
    return properties;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:34,代码来源:ConnectorAddressLink.java


示例3: importFrom

import sun.management.counter.Counter; //导入依赖的package包/类
/**
 * Imports the connector address from the instrument buffer
 * of the specified Java virtual machine.
 *
 * @param vmid an identifier that uniquely identifies a local Java virtual
 * machine, or <code>0</code> to indicate the current Java virtual machine.
 *
 * @return the value of the connector address, or <code>null</code> if the
 * target VM has not exported a connector address.
 *
 * @throws IOException An I/O error occurred while trying to acquire the
 * instrumentation buffer.
 */
public static String importFrom(int vmid) throws IOException {
    Perf perf = Perf.getPerf();
    ByteBuffer bb;
    try {
        bb = perf.attach(vmid, "r");
    } catch (IllegalArgumentException iae) {
        throw new IOException(iae.getMessage());
    }
    List counters =
            new PerfInstrumentation(bb).findByPattern(CONNECTOR_ADDRESS_COUNTER);
    Iterator i = counters.iterator();
    if (i.hasNext()) {
        Counter c = (Counter) i.next();
        return (String) c.getValue();
    } else {
        return null;
    }
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:32,代码来源:ConnectorAddressLink.java


示例4: importRemoteFrom

import sun.management.counter.Counter; //导入依赖的package包/类
/**
 * Imports the remote connector address and associated
 * configuration properties from the instrument buffer
 * of the specified Java virtual machine.
 *
 * @param vmid an identifier that uniquely identifies a local Java virtual
 * machine, or <code>0</code> to indicate the current Java virtual machine.
 *
 * @return a map containing the remote connector's properties, or an empty
 * map if the target VM has not exported the remote connector's properties.
 *
 * @throws IOException An I/O error occurred while trying to acquire the
 * instrumentation buffer.
 */
public static Map<String, String> importRemoteFrom(int vmid) throws IOException {
    Perf perf = Perf.getPerf();
    ByteBuffer bb;
    try {
        bb = perf.attach(vmid, "r");
    } catch (IllegalArgumentException iae) {
        throw new IOException(iae.getMessage());
    }
    List counters = new PerfInstrumentation(bb).getAllCounters();
    Map<String, String> properties = new HashMap<String, String>();
    for (Object c : counters) {
        String name = ((Counter) c).getName();
        if (name.startsWith(REMOTE_CONNECTOR_COUNTER_PREFIX) &&
                !name.equals(CONNECTOR_ADDRESS_COUNTER)) {
            properties.put(name, ((Counter) c).getValue().toString());
        }
    }
    return properties;
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:34,代码来源:ConnectorAddressLink.java


示例5: beforeIteration

import sun.management.counter.Counter; //导入依赖的package包/类
@Override
public void beforeIteration(BenchmarkParams benchmarkParams, IterationParams iterationParams) {
    prevs = new HashMap<String, Long>();
    for (Counter counter : getCounters()) {
        prevs.put(counter.getName(), convert(counter.getValue()));
    }
}
 
开发者ID:msteindorfer,项目名称:jmh,代码行数:8,代码来源:AbstractHotspotProfiler.java


示例6: counters

import sun.management.counter.Counter; //导入依赖的package包/类
protected HotspotInternalResult counters() {
    Map<String, Long> difference = new TreeMap<String, Long>();
    Map<String, Long> current = new TreeMap<String, Long>();
    for (Counter counter : getCounters()) {
        Long prev = prevs.get(counter.getName());
        if (prev != null) {
            long diff = convert(counter.getValue()) - prev;
            difference.put(counter.getName(), diff);
            current.put(counter.getName(), convert(counter.getValue()));
        }
    }

    return new HotspotInternalResult(current, difference);
}
 
开发者ID:msteindorfer,项目名称:jmh,代码行数:15,代码来源:AbstractHotspotProfiler.java


示例7: getInternalRuntimeCounters

import sun.management.counter.Counter; //导入依赖的package包/类
public java.util.List<Counter> getInternalRuntimeCounters() {
    return jvm.getInternalCounters(RT_COUNTER_NAME_PATTERN);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:HotspotRuntime.java


示例8: getInternalThreadingCounters

import sun.management.counter.Counter; //导入依赖的package包/类
public java.util.List<Counter> getInternalThreadingCounters() {
    return jvm.getInternalCounters(THREADS_COUNTER_NAME_PATTERN);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:HotspotThread.java



注:本文中的sun.management.counter.Counter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java CursorRequestMessage类代码示例发布时间:2022-05-21
下一篇:
Java ITopologyService类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap