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:

# LoadRunner Telemetry Provider Instance
provider: LoadRunner
config:
 hostname: cifsserver.mycompany.com
 username: akamas
 password: mypassword
 shareName: akamas_lr_results

Then you can create the instance for the system using the Akamas CLI:

akamas create telemetry-instance instance.yml system

Configuration options

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.

Required properties

  • 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 share

  • shareName: The name of the network share as it is exposed by the server

Telemetry instance reference

The following YAML file provides the reference for the definition of a telemetry instance.

provider: LoadRunner # this is an instance of the LoadRunner provider
config:
 hostname: cifsserver.mycompany.com # Share server
 username: user@mycompany
 password: mypassword
 shareName: akamas_lr_results
 pathPrefix: YAML
 resultsFolder: YAML

The following table describes the reference for the config section within the definition of the LoadRunner provider instance:

FieldTypeDescriptionDefault ValueRestrictionsRequired

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:

  • username

  • domain\username

  • username@domain

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

resultFolder

String

The name of the folder where to look for test results. The final path is {pathPrefix}{resultsFolder}.

The default path is

See LoadRunner operator

{studyName}\{experimentId}\{trialId}

A valid Windows path segment, might contain the placeholders: {studyName}, {experimentId}, {trialId}

No

pathPrefix

String

A prefix the for path where to look for test results.

-

A valid Windows path

No

Last updated