|
|
|
|
|
TelemetryConfigure (Function) In french: TélémétrieParamètre Gets and sets the telemetry settings.
TelemetryConfigure(tcMaximumPeriodCollection, 1800)
Syntax
Getting the telemetry settings Hide the details
<Result> = TelemetryConfigure(<Parameter>)
<Result>: Integer Value of the specified parameter. <Parameter>: Integer constant Parameter to retrieve. This parameter corresponds to one of the following constants: | | tcEnableLog | Telemetry log settings. Can correspond to a combination of the following constants: - tpLogFichier: Telemetry uses a log file. The corresponding file is saved in the "<user>\AppData\Roaming\<company>\<application>" directory.
- tpLogMemory: Telemetry uses a memory log.
| tcGetMemoryLog | Returns the contents of the memory log. | tcIdleTimeout | Used to count activity time on a window: the countdown timer is automatically stopped after this period of inactivity.. This timeout is set to 1 minute by default. | tcMaximumPeriodCollection | Maximum telemetry data collection interval (in seconds). The data will be sent at the end of this period, regardless of the size of the data collected. This period is set to 1 hour by default. | tcMinimumPeriodCollection | Minimum telemetry data collection interval (in seconds). The data can be sent at the end of this period if the minimum size is reached. This period is set to 5 minutes by default. | tcMinimumSizeCollection | Minimum amount of data collected for the minimum collection interval (expressed in kilobytes). This size is set to 5 MB by default. | tcNumberSendAttempts | Maximum number of attempts to send telemetry data in online mode: - 0. Attempts are not counted. Data is sent every time, even if the server does not respond.
- 1. Data is sent only once when the application is started. If the server does not respond, there will be no more attempts.
- other value (3 by default). Allows you to set a total number of attempts within a given period to send data.
By default, tcNumberSendAttempts = 3 and tcMaximumPeriodCollection = 1 so there are 3 hours of attempts. | tcOfflineMode | Telemetry operating mode: - True (default value). Telemetry works in offline mode.
- False. Telemetry works in online mode (default behavior before version 25)..
| tcStatus | Current telemetry status. This status can correspond to one of the following constants: - teAbandon: telemetry abandoned after too many sending errors.
- teCollection: telemetry is active and being collected.
- teEnAttente: telemetry is active but sending information to the server has failed. Data is waiting to be sent at a later date.
- teEnvoi: telemetry is active and has successfully sent information.
- teError: telemetry is active but sending information to the server has failed.
- teInactive: telemetry is inactive.
|
Setting the telemetry settings Hide the details
<Result> = TelemetryConfigure(<Parameter> , <New value>)
<Result>: Integer Former value of specified parameter. <Parameter>: Integer constant Parameter to modify. This parameter corresponds to one of the following constants: | | tcEnableLog | Telemetry log settings. Can correspond to a combination of the following constants: - tpLogFichier: Telemetry uses a log file. The corresponding file is saved in the "<user>\AppData\Roaming\<company>\<application>" directory.
- tpLogMemory: Telemetry uses a memory log.
| tcIdleTimeout | Used to count activity time on a window: the countdown timer is automatically stopped after this period of inactivity.. This timeout is set to 1 minute by default. | tcMaximumPeriodCollection | Maximum telemetry data collection interval (in seconds). The data will be sent at the end of this period, regardless of the size of the data collected. This period is set to 1 hour by default. | tcMinimumPeriodCollection | Minimum telemetry data collection interval (in seconds). The data can be sent at the end of this period if the minimum size is reached. This period is set to 5 minutes by default. | tcMinimumSizeCollection | Minimum amount of data collected for the minimum collection interval (expressed in kilobytes). This size is set to 5 MB by default. | tcNumberSendAttempts | Maximum number of attempts to send telemetry data in online mode: - 0. Attempts are not counted. Data is sent every time, even if the server does not respond.
- 1. Data is sent only once when the application is started. If the server does not respond, there will be no more attempts.
- other value (3 by default). Allows you to set a total number of attempts within a given period to send data.
By default, tcNumberSendAttempts = 3 and tcMaximumPeriodCollection = 1 so there are 3 hours of attempts. | tcOfflineMode | Telemetry operating mode: - True (default value). Telemetry works in offline mode.
- False. Telemetry works in online mode (default behavior before version 25)..
|
<New value>: Integer New value for the parameter. Remarks TelemetryConfigure can be called before TelemetryEnable. If TelemetryConfigure is called after TelemetryEnable, the new parameters will be taken into account after a timeout not corresponding to the previous minimum collection time. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|