blob: efd5cef83c2c140567b554331ff2a7ceb5d5c367 [file] [log] [blame]
Jake Slack03928ae2014-05-13 18:41:56 -07001Connector: HTTP Connector.
2server: MObject:RO:The server for this connector
3requestHeaderSize: The size of a request header buffer
4requestBufferSize: The size of a request content buffer
5responseHeaderSize: The size of a response header buffer
6responseBufferSize: The size of a response content buffer
7integralPort: Port to use for integral redirections
8integralScheme: Scheme to use for integral redirections
9confidentialPort: Port to use for confidential redirections
10confidentialScheme: Scheme to use for confidential redirections
11host: Host name to accept connections on
12port: TCP/IP port to accept connections on
13maxIdleTime: Maximum time in ms that a connection can be idle before being closed
14statsOn: True if statistics collection is turned on.
15statsOnMs: Time in milliseconds stats have been collected for.
16statsReset(): Reset statistics.
17connections: Number of connections accepted by the server since statsReset() called. Undefined if setStatsOn(false).
18connectionsOpen: Number of connections currently open that were opened since statsReset() called. Undefined if setStatsOn(false).
19connectionsOpenMax: Maximum number of connections opened simultaneously since statsReset() called. Undefined if setStatsOn(false).
20connectionsDurationMean: Mean duration in milliseconds of open connections since statsReset() called. Undefined if setStatsOn(false).
21connectionsDurationStdDev: Standard deviation of duration in milliseconds of an open connection since statsReset() called. Undefined if setStatsOn(false).
22connectionsDurationMax: Maximum duration in milliseconds of an open connection since statsReset() called. Undefined if setStatsOn(false).
23connectionsDurationTotal: Total duration in milliseconds of all open connection since statsReset() called. Undefined if setStatsOn(false).
24connectionsRequestsMean: Mean number of requests per connection since statsReset() called. Undefined if setStatsOn(false).
25connectionsRequestsStdDev: Standard deviation of number of requests per connection since statsReset() called. Undefined if setStatsOn(false).
26connectionsRequestsMax: Maximum number of requests per connection since statsReset() called. Undefined if setStatsOn(false).
27requests: Number of requests since statsReset() called. Undefined if setStatsOn(false).
28open(): Open the listening port
29close(): Close the listening port (but allow existing connections to continue for graceful shutdown)