integrates well with load testing and monitoring products, especially on the transactional / request level.
automatically starts a PurePath on a servlet, ASP.NET or web service when the
HTTP trace tag is present.
The Dynatrace Community Webinars show how to use in load testing and also show how it uses tagged web requests to integrate with any HTTP-based load testing solution.
Web Load Testing is integrated directly with . For details, see Web Load Testing Integration.
To use other load testing and monitoring tools for diagnosing web services in , add the following information to the HTTP headers generated by the load testing tool:
x-dynaTrace: VU=1;PC=.1;ID=4;NA=SearchPage |
Below is a sample HTTP header. The final line of the example shows the added code.
POST /onca/soap?Service=AWSECommerceService HTTP/1.1 Content-Type: text/xml; charset=utf-8 Host: soap.amazon.com Content-Length: 2566 Connection: Keep-Alive Accept: */* User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT) x-dynaTrace: VU=1;PC=.1;ID=4;NA=ListResults |
The following table describes the HTTP header string for diagnostics.
Key | Description | APMaaS Name | Usage |
---|---|---|---|
ID | The unique request ID (serial number). This string should be unique for one web request or a set of web requests that together make up a step/transaction execution.
| Transaction GUID | optional |
PC | The Page Context contains information about what document in the currently processed page is loaded. The following syntax is recommended, though not required:
|
| optional |
VU | The unique number of the Virtual User that sends the request.
| Virtual User ID | optional |
NA | The timer NAme of the request. This can be the timer or transaction name used in the load test script to identify the response time measure, or the document/page title, or any other human-readable URL encoded identifier for that document.
| Transaction Name (SYM), | required |
SI | The Source ID can be used to identify the product that triggered the request: For example WLT (Web Load Testing), SYM ( | Source ID | optional |
GR | Geographic Region, useful only for the Synthetic Monitoring solution. This contains arbitrary text. | Location | optional |
AN | Agent Name: the logical name of the Agent from which the request originated. This information is used by Synthetic Monitoring. | Agent Name | optional |
SN | Script Name. This groups a set of requests that make up a multi-step transaction, for example making an online purchase. | Script Name | optional |
TE | TEst Name is the name of the entire load test. It uniquely identifies a test run. | Test Name | optional |
HTTP/1.1 200 OK x-dynaTrace: RS=session20060620091846;PT=31;PA=1;PS=76562898 Content-Type: text/html Transfer-Encoding: chunked Date: Tue, 20 Jun 2006 07:19:16 GMT Server: Apache-Coyote/1.1 |
All the attributes together uniquely define a single object request, i.e. a single PurePath.
Key | Description | Usage |
---|---|---|
RS | Name of the | only set when session recording is active |
PT | PurePath identifier – The Trace number. | required |
PA | PurePath identifier – The entry point Agent number. | required |
PS | PurePath Server identifier – The | required |
SP | System Profile – Set to the active System Profile if manual session recording is not active; i.e., if either continuous session recording or no session recording is active. | available |
groups the resulting web page requests specifically for load tests. See Tagged Web Requests for details.
Tagged Web Requests
offers both a web service and RESTful service API that can be used to record a
session for the time of the load test run.
In earlier versions of the command line interface could be used via the
dtcmd
utility. You can still use this command line utility, but we recommend using the web-based APIs.
To get a list of all web-based APIs, browse to the web frontend, which by default is http://dtservername:8020.
From there, you have the option to obtain the SOAP/HTTP web service WSDL (http://dtservername:8020/wsdl/ManagementServerService.wsdl) or interact with the RESTful interface via an HTML interface (http://dtservername:8020/rest/html/management/server) or via an XML-based interface (http://dtservername:8020/rest/management/server).
The HTML interface enables you to explore all options the RESTful interface offers. Clicking the XML link on each HTML page shows you the links to the RESTful service that should be used when accessing the service from an external tool. The response of the XML-based interface is also XML, which is easier to parse and analyze.
The RESTful interface makes it easy to interact with the . For synchronizing session recording with load test runs, you can use the RESTful calls to start and stop session recording for a specific System Profile. If your load testing tool offers a way to execute web requests at the beginning and at the end of the load test run, you can add the necessary web request calls to the
.
See Start Session Recording and Stop Session Recording for details on how to start and stop session recording using the REST Interfaces.