AppTelemetryConfiguration
in package
Table of Contents
- $backoffMilliseconds : int|null
- $enabled : bool|null
- $endpoint : string|null
- $pingIntervalMilliseconds : int|null
- $pingTimeoutMilliseconds : int|null
- backoff() : AppTelemetryConfiguration
- Specifies the time to wait before attempting a websocket reconnection, specified in millseconds.
- enabled() : AppTelemetryConfiguration
- Specifies if the application telemetry feature should be enabled or not.
- endpoint() : AppTelemetryConfiguration
- Specifies an endpoint to override the application metrics endpoint discovered during configuration.
- pingInterval() : AppTelemetryConfiguration
- Specifies the time to wait between sending consecutive websocket PING commands to the server, specified in millseconds.
- pingTimeout() : AppTelemetryConfiguration
- Specifies the time allowed for the server to respond to websocket PING command, specified in millseconds.
Properties
$backoffMilliseconds
private
int|null
$backoffMilliseconds
= null
$enabled
private
bool|null
$enabled
= null
$endpoint
private
string|null
$endpoint
= null
$pingIntervalMilliseconds
private
int|null
$pingIntervalMilliseconds
= null
$pingTimeoutMilliseconds
private
int|null
$pingTimeoutMilliseconds
= null
Methods
backoff()
Specifies the time to wait before attempting a websocket reconnection, specified in millseconds.
public
backoff(int $milliseconds) : AppTelemetryConfiguration
Parameters
- $milliseconds : int
Tags
Return values
AppTelemetryConfiguration —enabled()
Specifies if the application telemetry feature should be enabled or not.
public
enabled(bool $enabled) : AppTelemetryConfiguration
Parameters
- $enabled : bool
Tags
Return values
AppTelemetryConfiguration —endpoint()
Specifies an endpoint to override the application metrics endpoint discovered during configuration.
public
endpoint(string $endpoint) : AppTelemetryConfiguration
Parameters
- $endpoint : string
Tags
Return values
AppTelemetryConfiguration —pingInterval()
Specifies the time to wait between sending consecutive websocket PING commands to the server, specified in millseconds.
public
pingInterval(int $milliseconds) : AppTelemetryConfiguration
Parameters
- $milliseconds : int
Tags
Return values
AppTelemetryConfiguration —pingTimeout()
Specifies the time allowed for the server to respond to websocket PING command, specified in millseconds.
public
pingTimeout(int $milliseconds) : AppTelemetryConfiguration
Parameters
- $milliseconds : int