Skip to content

Commit 5fb143d

Browse files
authored
Add missing get for totalOutboundConnections (#88234)
- Have you signed the [contributor license agreement](https://www.elastic.co/contributor-agreement)? *YES* - Have you followed the [contributor guidelines](https://github.com/elastic/elasticsearch/blob/master/CONTRIBUTING.md)? *YES* - If submitting code, have you built your formula locally prior to submission with `gradle check`? *YES* - If submitting code, is your pull request against master? Unless there is a good reason otherwise, we prefer pull requests against master and will backport as needed. *YES* - If submitting code, have you checked that your submission is for an [OS and architecture that we support](https://www.elastic.co/support/matrix#show_os)? *YES*
1 parent f2dd32e commit 5fb143d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

server/src/main/java/org/elasticsearch/transport/TransportStats.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,14 @@ public long getServerOpen() {
103103
return serverOpen();
104104
}
105105

106+
public long totalOutboundConnections() {
107+
return this.totalOutboundConnections;
108+
}
109+
110+
public long getTotalOutboundConnections() {
111+
return totalOutboundConnections();
112+
}
113+
106114
public long rxCount() {
107115
return rxCount;
108116
}

0 commit comments

Comments
 (0)