javeme commented on PR #1844:
URL:
https://github.com/apache/incubator-hugegraph/pull/1844#issuecomment-1107714579
CassandraMetrics.newNodeProbe():
```java
private NodeProbe newNodeProbe(String host) throws IOException {
LOG.info("Probe to cassandra node: '{}:{}'", host, this.port);
return this.username.isEmpty() ?
new NodeProbe(host, this.port) :
new NodeProbe(host, this.port, this.username, this.password);
}
```
```java
// log output
2022-04-24 04:45:07 [grizzly-http-server-2] [INFO]
c.b.h.b.s.c.CassandraMetrics - Probe to cassandra node: '127.0.0.1:7199'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]