本文整理了Java中org.apache.samza.zk.ZkUtilsMetrics
类的一些代码示例,展示了ZkUtilsMetrics
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZkUtilsMetrics
类的具体详情如下:
包路径:org.apache.samza.zk.ZkUtilsMetrics
类名称:ZkUtilsMetrics
[英]Contains all the metrics published by ZkUtils.
[中]包含ZkUtils发布的所有指标。
代码示例来源:origin: apache/samza
public ZkUtilsMetrics(MetricsRegistry metricsRegistry) {
super(metricsRegistry);
this.reads = newCounter("reads");
this.writes = newCounter("writes");
this.deletions = newCounter("deletions");
this.subscriptions = newCounter("subscriptions");
this.zkConnectionError = newCounter("zk-connection-errors");
}
}
代码示例来源:origin: apache/samza
public ZkUtils(ZkKeyBuilder zkKeyBuilder, ZkClient zkClient, int connectionTimeoutMs, int sessionTimeOutMs, MetricsRegistry metricsRegistry) {
this.keyBuilder = zkKeyBuilder;
this.connectionTimeoutMs = connectionTimeoutMs;
this.zkClient = zkClient;
this.metrics = new ZkUtilsMetrics(metricsRegistry);
this.currentGeneration = new AtomicInteger(0);
this.sessionTimeoutMs = sessionTimeOutMs;
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
public ZkUtils(ZkKeyBuilder zkKeyBuilder, ZkClient zkClient, int connectionTimeoutMs, int sessionTimeOutMs, MetricsRegistry metricsRegistry) {
this.keyBuilder = zkKeyBuilder;
this.connectionTimeoutMs = connectionTimeoutMs;
this.zkClient = zkClient;
this.metrics = new ZkUtilsMetrics(metricsRegistry);
this.currentGeneration = new AtomicInteger(0);
this.sessionTimeoutMs = sessionTimeOutMs;
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
public ZkUtils(ZkKeyBuilder zkKeyBuilder, ZkClient zkClient, int connectionTimeoutMs, int sessionTimeOutMs, MetricsRegistry metricsRegistry) {
this.keyBuilder = zkKeyBuilder;
this.connectionTimeoutMs = connectionTimeoutMs;
this.zkClient = zkClient;
this.metrics = new ZkUtilsMetrics(metricsRegistry);
this.currentGeneration = new AtomicInteger(0);
this.sessionTimeoutMs = sessionTimeOutMs;
}
代码示例来源:origin: org.apache.samza/samza-core_2.11
public ZkUtilsMetrics(MetricsRegistry metricsRegistry) {
super(metricsRegistry);
this.reads = newCounter("reads");
this.writes = newCounter("writes");
this.deletions = newCounter("deletions");
this.subscriptions = newCounter("subscriptions");
this.zkConnectionError = newCounter("zk-connection-errors");
}
}
代码示例来源:origin: org.apache.samza/samza-core
public ZkUtils(ZkKeyBuilder zkKeyBuilder, ZkClient zkClient, int connectionTimeoutMs, int sessionTimeOutMs, MetricsRegistry metricsRegistry) {
this.keyBuilder = zkKeyBuilder;
this.connectionTimeoutMs = connectionTimeoutMs;
this.zkClient = zkClient;
this.metrics = new ZkUtilsMetrics(metricsRegistry);
this.currentGeneration = new AtomicInteger(0);
this.sessionTimeoutMs = sessionTimeOutMs;
}
代码示例来源:origin: org.apache.samza/samza-core_2.12
public ZkUtilsMetrics(MetricsRegistry metricsRegistry) {
super(metricsRegistry);
this.reads = newCounter("reads");
this.writes = newCounter("writes");
this.deletions = newCounter("deletions");
this.subscriptions = newCounter("subscriptions");
this.zkConnectionError = newCounter("zk-connection-errors");
}
}
代码示例来源:origin: org.apache.samza/samza-core_2.11
public ZkUtils(ZkKeyBuilder zkKeyBuilder, ZkClient zkClient, int connectionTimeoutMs, int sessionTimeOutMs, MetricsRegistry metricsRegistry) {
this.keyBuilder = zkKeyBuilder;
this.connectionTimeoutMs = connectionTimeoutMs;
this.zkClient = zkClient;
this.metrics = new ZkUtilsMetrics(metricsRegistry);
this.currentGeneration = new AtomicInteger(0);
this.sessionTimeoutMs = sessionTimeOutMs;
}
代码示例来源:origin: org.apache.samza/samza-core_2.10
public ZkUtilsMetrics(MetricsRegistry metricsRegistry) {
super(metricsRegistry);
this.reads = newCounter("reads");
this.writes = newCounter("writes");
this.deletions = newCounter("deletions");
this.subscriptions = newCounter("subscriptions");
this.zkConnectionError = newCounter("zk-connection-errors");
}
}
代码示例来源:origin: org.apache.samza/samza-core
public ZkUtilsMetrics(MetricsRegistry metricsRegistry) {
super(metricsRegistry);
this.reads = newCounter("reads");
this.writes = newCounter("writes");
this.deletions = newCounter("deletions");
this.subscriptions = newCounter("subscriptions");
this.zkConnectionError = newCounter("zk-connection-errors");
}
}
内容来源于网络,如有侵权,请联系作者删除!