Quantcast
Channel: Silk Performer
Viewing all articles
Browse latest Browse all 4084

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

Viewing all articles
Browse latest Browse all 4084

Trending Articles



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