We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check how to get Jetty server metrics to use in the autonomic behavior metrics
The text was updated successfully, but these errors were encountered:
// Add the statistics module to the connector ConnectorStatistics stats = new ConnectorStatistics(); connector.addBean(stats);
// Then access the information. System.out.printf("Connector.getConnections() = %,d%n", stats.getConnections()); System.out.printf("Connector.getConnectionsOpen() = %,d%n", stats.getConnectionsOpen()); System.out.printf("Connector.getConnectionsMax() = %,d%n", stats.getConnectionsMax());
Sorry, something went wrong.
fernandohackbart
No branches or pull requests
Check how to get Jetty server metrics to use in the autonomic behavior metrics
The text was updated successfully, but these errors were encountered: