Add meter for GCM challenge transmissions
This commit is contained in:
parent
ebd79d388b
commit
e57f78cf90
|
@ -41,6 +41,7 @@ public class GCMSender implements Managed {
|
||||||
private final Map<String, Meter> outboundMeters = new HashMap<>() {{
|
private final Map<String, Meter> outboundMeters = new HashMap<>() {{
|
||||||
put("receipt", metricRegistry.meter(name(getClass(), "outbound", "receipt")));
|
put("receipt", metricRegistry.meter(name(getClass(), "outbound", "receipt")));
|
||||||
put("notification", metricRegistry.meter(name(getClass(), "outbound", "notification")));
|
put("notification", metricRegistry.meter(name(getClass(), "outbound", "notification")));
|
||||||
|
put("challenge", metricRegistry.meter(name(getClass(), "outbound", "challenge")));
|
||||||
}};
|
}};
|
||||||
|
|
||||||
private final AccountsManager accountsManager;
|
private final AccountsManager accountsManager;
|
||||||
|
|
Loading…
Reference in New Issue