Quantcast
Channel:
Viewing all articles
Browse latest Browse all 44024

Wiki Page: How to enable Raw Measure Data Capturing for particular measure types or single measures.

$
0
0
Raw Measure Data Capturing was introduced in Silk Performer 15.0 and can be enabled for all measures by checking the "Collect raw measure data" check box at, "settings | active profile | replay | results | time series". To enable Raw Measure Data Capturing for specific measure names and measure types, the MeasureCollectRawData function can be used. The syntax and usage of this function are described in Silk Performer Help and some examples are provided below. To enable generation of raw data for all default measures, omit both of the optional paramaters: MeasureCollectRawData(true); WebPageUrl("http://www.website1.com/", "Timer1"); // raw data will be collected WebPageUrl("http://www.website2.com/", "Timer2"); // raw data will be collected To enable generation of raw data for measures with a specific name use the "sName" parameter to specify the measure name: MeasureCollectRawData(true, "Timer1") WebPageUrl("http://www.website1.com/", "Timer1"); // raw data will be collected WebPageUrl("http://www.website2.com/", "Timer2"); // raw data will not be collected To enable generation of raw data for a specific type of measure use the "eType" parameter to specify the measure type: MeasureCollectRawData(true, "", MEASURE_PAGE_EMBEDDEDBYTES); WebPageUrl("http://www.website1.com/", "Timer1"); // only raw data of type MEASURE_PAGE_EMBEDDEDBYTES will be collected WebPageUrl("http://www.website2.com/", "Timer2"); // only raw data of type MEASURE_PAGE_EMBEDDEDBYTES will be collected To enable generation of raw data for measures with a specific name and a specific type use both the "sName" and "eType" parameters: MeasureCollectRawData(true, "Timer1", MEASURE_PAGE_EMBEDDEDBYTES); WebPageUrl("http://www.website1.com/", "Timer1"); // only raw data of type MEASURE_PAGE_EMBEDDEDBYTES will be collected WebPageUrl("http://www.website2.com/", "Timer2"); // raw data will not be collected To enable generation of raw data for a single Web page call, enable and then disable Raw Measure Data Capturing: MeasureCollectRawData(true); WebPageUrl("http://www.website1.com/", "Timer1"); // raw data will be collected MeasureCollectRawData(false); WebPageUrl("http://www.website2.com/", "Timer2"); // raw data will not be collected Some of the default measures that are generated for Web based testing are as follows: Response time Trans. ok Trans. failed Request data sent Response data received Hits Round trip time  Server busy time Page time Document download time Server busy time Page data Embedded objects data Trans.(busy) ok Trans.(busy) failed Action time (for Browser Driven Load Testing)

Viewing all articles
Browse latest Browse all 44024

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>