Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a226207
WIP, driver can register GRACEFUL_DISCONNECT event but cannot receive…
SiyaoIsHiding Feb 26, 2026
45c5f95
WIP
SiyaoIsHiding Feb 27, 2026
8c5139e
works. Got Connection reset by peers
SiyaoIsHiding Mar 12, 2026
0a95963
docker compose
SiyaoIsHiding Mar 18, 2026
1de60ae
channel.close();
SiyaoIsHiding Mar 20, 2026
3927a33
java 11
SiyaoIsHiding Apr 2, 2026
32fcb1b
CASSJAVA-124: Add GRACEFUL_DISCONNECT support (CEP-59)
Shanzita May 28, 2026
85e7c25
CASSJAVA-124: Revert logback-test.xml to trunk
Shanzita Aug 26, 2026
442561d
CASSJAVA-124: Track graceful-disconnect capability per connection
Shanzita Aug 26, 2026
23835de
CASSJAVA-124: Remove unneeded config stubs from event-processing tests
Shanzita Aug 26, 2026
618a7f8
CASSJAVA-124: Initialize GRACEFUL_DISCONNECTS metrics in all backends
Shanzita Aug 26, 2026
c146d19
CASSJAVA-124: Real integration test for graceful disconnect
Shanzita Aug 26, 2026
402d1bf
CASSJAVA-124: Install native-protocol snapshot from the cep-59 branch
Shanzita Aug 26, 2026
6de6523
CASSJAVA-124: Install snapshot dependencies in CI before building
Shanzita Aug 26, 2026
4885827
CASSJAVA-124: Install native-protocol snapshot from the PR #61 branch
Shanzita Aug 26, 2026
6b9ac8f
CASSJAVA-124: Harden snapshot install for CI
Shanzita Aug 26, 2026
3234760
CASSJAVA-124: Revert CI and snapshot-install changes
Shanzita Aug 28, 2026
2ae468b
CASSJAVA-124: Simplify GRACEFUL_DISCONNECT registration
Shanzita Aug 28, 2026
86d0fad
CASSJAVA-124: Move GracefulDisconnectEvent to the metadata package
Shanzita Aug 28, 2026
9e1437e
CASSJAVA-124: Ensure the IT load thread terminates deterministically
Shanzita Aug 28, 2026
ef912d2
CASSJAVA-124: Update registration tests for the simplified handling
Shanzita Aug 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>com.datastax.oss</groupId>
<artifactId>native-protocol</artifactId>
<version>1.5.2</version>
<version>1.5.3-SNAPSHOT</version>
Comment thread
Shanzita marked this conversation as resolved.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to remember to change it to 1.5.3 after the release of the native protocol

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed — I'll bump this to 1.5.3 as soon as native-protocol releases (tracking it in my native-protocol PR, datastax/native-protocol#61).

Related finding while fixing CI: the build had never actually resolved this snapshot — ci/run-tests.sh wasn't running install-snapshots.sh at all, so every CI run failed at dependency resolution. That's fixed now (402d1bf, 4885827, 6b9ac8f) and CI installs the snapshot from the PR #61 branch. One heads-up: I initially pointed it at your fork's cep-59 branch (which the PR description referenced), but that copy has Frame.forResponse stubbed out with UnsupportedOperationException, which failed the graph unit tests — you may want to update or remove that branch so nothing else picks it up.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't worry about CI or install-snapshots.sh. You can revert these changes

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverted the CI changes in 3234760.

</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,15 @@ public enum DefaultDriverOption implements DriverOption {
*
* <p>Value-Type: boolean
*/
ADDRESS_TRANSLATOR_RESOLVE_ADDRESSES("advanced.address-translator.resolve-addresses");
ADDRESS_TRANSLATOR_RESOLVE_ADDRESSES("advanced.address-translator.resolve-addresses"),
/**
* Whether to register for GRACEFUL_DISCONNECT events from the server (CEP-59). When enabled and
* the server advertises support, the driver will gracefully drain connections when a node shuts
* down.
*
* <p>Value-type: boolean
*/
GRACEFUL_DISCONNECT_ENABLED("advanced.connection.graceful-disconnect-enabled");

private final String path;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ protected static void fillWithDriverDefaults(OptionsMap map) {
map.put(TypedDriverOption.CONNECTION_MAX_REQUESTS, 1024);
map.put(TypedDriverOption.CONNECTION_MAX_ORPHAN_REQUESTS, 256);
map.put(TypedDriverOption.CONNECTION_WARN_INIT_ERROR, true);
map.put(TypedDriverOption.GRACEFUL_DISCONNECT_ENABLED, true);
map.put(TypedDriverOption.RECONNECT_ON_INIT, false);
map.put(TypedDriverOption.RECONNECTION_POLICY_CLASS, "ExponentialReconnectionPolicy");
map.put(TypedDriverOption.RECONNECTION_BASE_DELAY, Duration.ofSeconds(1));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,9 @@ public String toString() {
new TypedDriverOption<>(
DefaultDriverOption.ADDRESS_TRANSLATOR_RESOLVE_ADDRESSES, GenericType.BOOLEAN);

public static final TypedDriverOption<Boolean> GRACEFUL_DISCONNECT_ENABLED =
new TypedDriverOption<>(DefaultDriverOption.GRACEFUL_DISCONNECT_ENABLED, GenericType.BOOLEAN);

/**
* Ordered preference list of remote dcs optionally supplied for automatic failover and included
* in query plan. This feature is enabled only when max-nodes-per-remote-dc is greater than 0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public enum DefaultNodeMetric implements NodeMetric {
SPECULATIVE_EXECUTIONS("speculative-executions"),
CONNECTION_INIT_ERRORS("errors.connection.init"),
AUTHENTICATION_ERRORS("errors.connection.auth"),
GRACEFUL_DISCONNECTS("pool.graceful-disconnects"),

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done; the counter is now initialized in all three backends (DropwizardNodeMetricUpdater, MicrometerNodeMetricUpdater, MicroProfileNodeMetricUpdater) in 618a7f8, and incremented when a GRACEFUL_DISCONNECT event is received on one of the node's pooled connections (ChannelPool query-connection callback, 442561d). It's documented in reference.conf, covered by the zero-value assertions in the three metrics ITs and by ChannelPoolGracefulDisconnectTest, and the new GracefulDisconnectIT exercises the session-level counter end to end against a real drain. I also verified both counters increment during manual drain runs on 2- and 3-node ccm clusters.

;

private static final Map<String, DefaultNodeMetric> BY_PATH = sortByPath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public enum DefaultSessionMetric implements SessionMetric {
THROTTLING_QUEUE_SIZE("throttling.queue-size"),
THROTTLING_ERRORS("throttling.errors"),
CQL_PREPARED_CACHE_SIZE("cql-prepared-cache-size"),
GRACEFUL_DISCONNECTS("graceful-disconnects"),
Comment thread
Shanzita marked this conversation as resolved.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need integration tests and manual testing for metrics

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and the actual implementation of incrementing the metric

@Shanzita Shanzita Aug 26, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All three parts are done now:

  • Incrementing (442561d): the session counter increments wherever a GRACEFUL_DISCONNECT event is received — the pool's query-connection callback and the control connection. The node counter (pool.graceful-disconnects) increments for events on that node's pooled connections.
  • Initialization (618a7f8): both counters are initialized in all three backends (Dropwizard, Micrometer, MicroProfile) and documented in reference.conf; the three metrics ITs assert they exist as zero-valued counters, and ControlConnectionEventsTest / ChannelPoolGracefulDisconnectTest verify the increments at the unit level.
  • Integration + manual testing: the new GracefulDisconnectIT (c146d19) asserts this counter goes above zero during a real nodetool drain under load. I also verified both counters manually against a CASSANDRA-21191 server build on 2-node and 3-node ccm clusters — the drain runs finished with the event observed, counters incremented, and 0 disruptive exceptions.

;

private static final Map<String, DefaultSessionMetric> BY_PATH = sortByPath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import com.datastax.oss.driver.shaded.guava.common.annotations.VisibleForTesting;
import com.datastax.oss.driver.shaded.guava.common.base.Preconditions;
import com.datastax.oss.driver.shaded.guava.common.collect.ImmutableMap;
import com.datastax.oss.protocol.internal.ProtocolConstants;
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.Channel;
import io.netty.channel.ChannelFuture;
Expand Down Expand Up @@ -339,6 +340,11 @@ protected void initChannel(Channel channel) {
options.eventCallback,
options.ownerLogPrefix);
HeartbeatHandler heartbeatHandler = new HeartbeatHandler(defaultConfig);
// Channels that register for GRACEFUL_DISCONNECT always query OPTIONS, so that support
// can be checked against this channel's own SUPPORTED response.
boolean querySupportedOptions =
productType == null
|| options.eventTypes.contains(ProtocolConstants.EventType.GRACEFUL_DISCONNECT);
ProtocolInitHandler initHandler =
new ProtocolInitHandler(
context,
Expand All @@ -347,7 +353,7 @@ protected void initChannel(Channel channel) {
endPoint,
options,
heartbeatHandler,
productType == null);
querySupportedOptions);

ChannelPipeline pipeline = channel.pipeline();
context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
import com.datastax.oss.driver.shaded.guava.common.collect.ImmutableSet;
import com.datastax.oss.protocol.internal.Frame;
import com.datastax.oss.protocol.internal.Message;
import com.datastax.oss.protocol.internal.ProtocolConstants;
import com.datastax.oss.protocol.internal.request.Query;
import com.datastax.oss.protocol.internal.response.Event;
import com.datastax.oss.protocol.internal.response.result.SetKeyspace;
import io.netty.channel.ChannelDuplexHandler;
import io.netty.channel.ChannelFuture;
Expand Down Expand Up @@ -218,6 +220,12 @@ public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception

if (streamId < 0) {
Message event = responseFrame.message;
if (event instanceof Event
&& ProtocolConstants.EventType.GRACEFUL_DISCONNECT.equals(((Event) event).type)) {
// Start draining this channel first, so that the drain is not compromised if the
// callback below misbehaves.
startGracefulShutdown(ctx);
}
if (eventCallback == null) {
LOG.debug("[{}] Received event {} but no callback was registered", logPrefix, event);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import com.datastax.oss.driver.internal.core.protocol.SegmentToFrameDecoder;
import com.datastax.oss.driver.internal.core.util.ProtocolUtils;
import com.datastax.oss.driver.internal.core.util.concurrent.UncaughtExceptions;
import com.datastax.oss.driver.shaded.guava.common.annotations.VisibleForTesting;
import com.datastax.oss.protocol.internal.Message;
import com.datastax.oss.protocol.internal.ProtocolConstants;
import com.datastax.oss.protocol.internal.ProtocolConstants.ErrorCode;
Expand All @@ -55,7 +56,9 @@
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelPipeline;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import net.jcip.annotations.NotThreadSafe;
import org.slf4j.Logger;
Expand Down Expand Up @@ -140,6 +143,27 @@ protected boolean setConnectSuccess() {
return result;
}

/**
* Whether a SUPPORTED response advertises the CEP-59 graceful disconnect capability. The server
* may send the key with an explicit {@code "false"} value when the feature is disabled.
*/
@VisibleForTesting
static boolean supportsGracefulDisconnect(Map<String, List<String>> supportedOptions) {
if (supportedOptions == null) {
return false;
}
List<String> values = supportedOptions.get(ProtocolConstants.EventType.GRACEFUL_DISCONNECT);
if (values == null) {
return false;
}
for (String value : values) {
if ("false".equalsIgnoreCase(value)) {
return false;
}
}
return true;
}

private enum Step {
OPTIONS,
STARTUP,
Expand All @@ -157,10 +181,14 @@ private class InitRequest extends ChannelHandlerRequest {
private Message request;
private Authenticator authenticator;
private ByteBuffer authResponseToken;
// The event types to register for; GRACEFUL_DISCONNECT is removed if this channel's SUPPORTED
// response does not advertise it (capability is negotiated per connection).
private List<String> eventTypes;

InitRequest(ChannelHandlerContext ctx) {
super(ctx, timeoutMillis);
this.step = querySupportedOptions ? Step.OPTIONS : Step.STARTUP;
this.eventTypes = options.eventTypes;
}

@Override
Expand All @@ -183,7 +211,7 @@ Message getRequest() {
case AUTH_RESPONSE:
return request = new AuthResponse(authResponseToken);
case REGISTER:
return request = new Register(options.eventTypes);
return request = new Register(eventTypes);
default:
throw new AssertionError("unhandled step: " + step);
}
Expand All @@ -204,7 +232,13 @@ void onResponse(Message response) {
ProtocolUtils.opcodeString(response.opcode));
try {
if (step == Step.OPTIONS && response instanceof Supported) {
channel.attr(DriverChannel.OPTIONS_KEY).set(((Supported) response).options);
Map<String, List<String>> supportedOptions = ((Supported) response).options;
channel.attr(DriverChannel.OPTIONS_KEY).set(supportedOptions);
if (eventTypes.contains(ProtocolConstants.EventType.GRACEFUL_DISCONNECT)
&& !supportsGracefulDisconnect(supportedOptions)) {
eventTypes = new ArrayList<>(eventTypes);
eventTypes.remove(ProtocolConstants.EventType.GRACEFUL_DISCONNECT);
}
step = Step.STARTUP;
send();
} else if (step == Step.STARTUP && response instanceof Ready) {
Expand Down Expand Up @@ -303,15 +337,15 @@ void onResponse(Message response) {
if (options.keyspace != null) {
step = Step.SET_KEYSPACE;
send();
} else if (!options.eventTypes.isEmpty()) {
} else if (!eventTypes.isEmpty()) {
step = Step.REGISTER;
send();
} else {
setConnectSuccess();
}
}
} else if (step == Step.SET_KEYSPACE && response instanceof SetKeyspace) {
if (!options.eventTypes.isEmpty()) {
if (!eventTypes.isEmpty()) {
step = Step.REGISTER;
send();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,17 @@
import com.datastax.oss.driver.api.core.loadbalancing.NodeDistance;
import com.datastax.oss.driver.api.core.metadata.Node;
import com.datastax.oss.driver.api.core.metadata.NodeState;
import com.datastax.oss.driver.api.core.metrics.DefaultNodeMetric;
import com.datastax.oss.driver.api.core.metrics.DefaultSessionMetric;
import com.datastax.oss.driver.internal.core.channel.ChannelEvent;
import com.datastax.oss.driver.internal.core.channel.DriverChannel;
import com.datastax.oss.driver.internal.core.channel.DriverChannelOptions;
import com.datastax.oss.driver.internal.core.channel.EventCallback;
import com.datastax.oss.driver.internal.core.context.InternalDriverContext;
import com.datastax.oss.driver.internal.core.metadata.DefaultNode;
import com.datastax.oss.driver.internal.core.metadata.DefaultTopologyMonitor;
import com.datastax.oss.driver.internal.core.metadata.DistanceEvent;
import com.datastax.oss.driver.internal.core.metadata.GracefulDisconnectEvent;
import com.datastax.oss.driver.internal.core.metadata.MetadataManager;
import com.datastax.oss.driver.internal.core.metadata.NodeStateEvent;
import com.datastax.oss.driver.internal.core.metadata.TopologyEvent;
Expand Down Expand Up @@ -190,6 +194,9 @@ public void onEvent(Message eventMessage) {
case ProtocolConstants.EventType.SCHEMA_CHANGE:
processSchemaChange(event);
break;
case ProtocolConstants.EventType.GRACEFUL_DISCONNECT:
processGracefulDisconnect();
break;
default:
LOG.warn("[{}] Unsupported event type: {}", logPrefix, event.type);
}
Expand Down Expand Up @@ -242,6 +249,34 @@ private void processSchemaChange(Event event) {
});
}

private void processGracefulDisconnect() {
LOG.info(
"[{}] Received GRACEFUL_DISCONNECT event on control connection, "
+ "the server is shutting down gracefully",
logPrefix);
context
.getMetricsFactory()
.getSessionUpdater()
.incrementCounter(DefaultSessionMetric.GRACEFUL_DISCONNECTS, null);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not increment DefaultNodeMetric.GRACEFUL_DISCONNECTS?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, added in 86d0fad along with a unit test asserting both counters increment.

// Fire an internal event to notify other components (particularly the ChannelPool)
DriverChannel currentChannel = channel;
if (currentChannel != null) {
context
.getMetadataManager()
.getMetadata()
.findNode(currentChannel.getEndPoint())
.ifPresent(
node -> {
if (node instanceof DefaultNode) {
((DefaultNode) node)
.getMetricUpdater()
.incrementCounter(DefaultNodeMetric.GRACEFUL_DISCONNECTS, null);
}
context.getEventBus().fire(new GracefulDisconnectEvent(node));
});
}
}

private class SingleThreaded {
private final InternalDriverContext context;
private final DriverConfig config;
Expand Down Expand Up @@ -292,7 +327,13 @@ private void init(
}
initWasCalled = true;
try {
ImmutableList<String> eventTypes = buildEventTypes(listenToClusterEvents);
boolean gracefulDisconnectEnabled =
context
.getConfig()
.getDefaultProfile()
.getBoolean(DefaultDriverOption.GRACEFUL_DISCONNECT_ENABLED, true);
ImmutableList<String> eventTypes =
buildEventTypes(listenToClusterEvents, gracefulDisconnectEnabled);
LOG.debug("[{}] Initializing with event types {}", logPrefix, eventTypes);
channelOptions =
DriverChannelOptions.builder()
Expand Down Expand Up @@ -606,14 +647,18 @@ private boolean isAuthFailure(Throwable error) {
return true;
}

private static ImmutableList<String> buildEventTypes(boolean listenClusterEvents) {
private static ImmutableList<String> buildEventTypes(
boolean listenClusterEvents, boolean gracefulDisconnectEnabled) {
ImmutableList.Builder<String> builder = ImmutableList.builder();
builder.add(ProtocolConstants.EventType.SCHEMA_CHANGE);
if (listenClusterEvents) {
builder
.add(ProtocolConstants.EventType.STATUS_CHANGE)
.add(ProtocolConstants.EventType.TOPOLOGY_CHANGE);
}
if (gracefulDisconnectEnabled) {
builder.add(ProtocolConstants.EventType.GRACEFUL_DISCONNECT);
}
return builder.build();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.oss.driver.internal.core.metadata;

import com.datastax.oss.driver.api.core.metadata.Node;
import java.util.Objects;
import net.jcip.annotations.Immutable;

/**
* Indicates that a node announced a graceful shutdown (CEP-59): a {@code GRACEFUL_DISCONNECT}
* protocol event was received on one of its connections.
*/
@Immutable

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pls refer to TopologyEvent, refactor this class to under the package com.datastax.oss.driver.internal.core.metadata, and remove GracefulDisconnectEvent.EVENT_TYPE, and change all usages of GracefulDisconnectEvent.EVENT_TYPE to ProtocolConstants.EventType.GRACEFUL_DISCONNECT.
Graceful disconnect is just another event just like topology event and status change event.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 86d0fad: the class now lives in internal.core.metadata, EVENT_TYPE is removed, and all usages go through ProtocolConstants.EventType.GRACEFUL_DISCONNECT.

public class GracefulDisconnectEvent {

/** The node that is shutting down. */
public final Node node;

public GracefulDisconnectEvent(Node node) {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO for myself:
check memory leak possibilities.

this.node = node;
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Refer to TopologyEvent add

  @Override
  public int hashCode() {
    return Objects.hash(this.node);
  }

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added equals and hashCode modeled on TopologyEvent in 86d0fad.

@Override
public boolean equals(Object other) {
if (other == this) {
return true;
} else if (other instanceof GracefulDisconnectEvent) {
GracefulDisconnectEvent that = (GracefulDisconnectEvent) other;
return Objects.equals(this.node, that.node);
} else {
return false;
}
}

@Override
public int hashCode() {
return Objects.hash(this.node);
}

@Override
public String toString() {
return "GracefulDisconnectEvent(" + node + ")";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public DropwizardNodeMetricUpdater(
initializeCounter(DefaultNodeMetric.SPECULATIVE_EXECUTIONS, profile);
initializeCounter(DefaultNodeMetric.CONNECTION_INIT_ERRORS, profile);
initializeCounter(DefaultNodeMetric.AUTHENTICATION_ERRORS, profile);
initializeCounter(DefaultNodeMetric.GRACEFUL_DISCONNECTS, profile);

initializeHdrTimer(
DefaultNodeMetric.CQL_MESSAGES,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public DropwizardSessionMetricUpdater(

initializeCounter(DefaultSessionMetric.CQL_CLIENT_TIMEOUTS, profile);
initializeCounter(DefaultSessionMetric.THROTTLING_ERRORS, profile);
initializeCounter(DefaultSessionMetric.GRACEFUL_DISCONNECTS, profile);
initializeCounter(DseSessionMetric.GRAPH_CLIENT_TIMEOUTS, profile);

initializeHdrTimer(
Expand Down
Loading