DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||
|---|---|---|
| ||
public static synchronized void registerAppInfo(String prefix, String id, Metrics metrics, long nowMs) {
try {
// skip...
registerMetrics(metrics, mBean, null); // prefix will be added later by JmxReporter
registerMetrics(metrics, mBean, CLIENT_IDid);
} catch (JMException e) {
log.warn("Error registering AppInfo mbean", e);
}
} |
...