Comment on page
Create LoadRunner Professional telemetry instances
To create an instance of the LoadRunner provider, build a YAML file (
instance.yml
in this example) with the definition of the instance:1
# LoadRunner Telemetry Provider Instance
2
provider: LoadRunner
3
config:
4
hostname: cifsserver.mycompany.com
5
username: akamas
6
password: mypassword
7
shareName: akamas_lr_results
Then you can create the instance for the
system
using the Akamas CLI:akamas create telemetry-instance instance.yml system
When you create an instance of the LoadRunner provider, you should specify some configuration information to allow the provider to correctly extract and process metrics from LoadRunner.
You can specify configuration information within the
config
part of the YAML of the instance definition.hostname
: The hostname or IP of the server that hosts the CIFS share where the LoadRunner results have been exported. See LoadRunner operator.username
: The username and the domain required to access the network share. Supported formats are:- username
- domain\username
- username@domain
password
: The password required to access the network shareshareName
: The name of the network share as it is exposed by the server
The following YAML file provides the reference for the definition of a telemetry instance.
1
provider: LoadRunner # this is an instance of the LoadRunner provider
2
config:
3
hostname: cifsserver.mycompany.com # Share server
4
username: user@mycompany
5
password: mypassword
6
shareName: akamas_lr_results
7
pathPrefix:YAML
The following table describes the reference for the
config
section within the definition of the LoadRunner provider instance:Field | Type | Description | Default Value | Restrictions | Required |
---|---|---|---|---|---|
hostname | String | the hostname or IP of the server that hosts the CIFS share where the LoadRunner results have been exported. See LoadRunner operator | - | IP address or FQDN | Yes |
username | String | The username and the domain required to access the share | - | Supported formats:
| Yes |
password | String | The password required to access the share | - | - | Yes |
shareName | String | The name of the share as it is exposed by the server | - | - | Yes |
pathPrefix | String | A prefix for the default path where the provider looks for the data. The default path is {studyName}{experimentId}{trialId} | - | A valid Windows path | No |
Last modified 4mo ago