Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2020-04-17 16:00:51 +0300
committerGitHub <noreply@github.com>2020-04-17 16:00:51 +0300
commit6936b93cba5150e0eaa879aebf3662b3e279d045 (patch)
treec63c93f92bc31479aa70d463939ef144eeb83e66 /plugins/PrivacyManager
parent3c50481031e8b8ad647d8a74802e9558cebe41ce (diff)
New page performance reports (#15736)
* Adds various new performance metrics and dimensions * Adds tracking for new performance values * track performance metrics only for page views * Archive new performance metrics * move everything into a new plugin * fix archiving of overall metrics * Adds new overview reports * show performance metric on some more reports * adds new page performance icon * Adds new row action to view page performance evolution for pages * Adds new stacked bar visualization for page performance evolutions * show total value in stacked bar chart tooltips * [TEMP] use php tracker package branch * Adds some simple System tests * Adds some UI tests * remove performance metrics from action reports that don't support it * move calculation to api * mark as tracker plugin * improve calculation of maximum value in bar evolution chart * enrich existing tests with performance metrics * updates expected test files * send performance metrics with the next request after they are available this might not be the pageview it self but any request after it, like a ping, goal, ... * Adds request processor to process performance metrics not sent directly with the page view * rebuilt js * Add metric decriptions to evolution chart documentation * fix convertion of microseconds part * Ensure average page load time is displayed in evolution graph in scheduled reports * fix some more tests * move page performance overview to visitors overview * Adds new table with performance metrics visualization * Adds some additional information to page performance evolution overlay * update omnifixture * updates expected UI files * Use mediumints for new dimensions * Adds additional permission check * Encode label in page performance overlay title * Improve updating performance metrics in later requests * Adds some integration tests * improves metric documentations * Send already available performance data with page view request * update tests * updates expected UI test screenshots * updates expected test files * improves archiving * show page generation time in performance metrics table if matomo was installed before 4.0 * Hide page generation time in ui reports if Matomo was installed after 4.0 * Fix removal of unavailable columns from being displayed that was done too early in the process causing to be overwritten again by the reports configureView * do not track automatically calculated generation time any more * split latency into network and server time * [TEMP] update php tracker * rebuilt piwik.js * Ensure to count zero values as hits * updates Omnifixture * updates expected test files * remove possibility to set generation time * rebuilt piwik.js * adjust tests * update php tracker * update test logs * submodule * update Omnifixture * show page load time in action tooltip and visitor summary instead of generation time * updates expected ui files * mark page generation time metric as deprecated * fix tests * [TEMP] use submodule branches * ensure lower metric values are shown as better * use 4.x-dev branch of php-tracker * update submodules
Diffstat (limited to 'plugins/PrivacyManager')
-rw-r--r--plugins/PrivacyManager/tests/Fixtures/MultipleSitesMultipleVisitsFixture.php22
-rwxr-xr-xplugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json3048
-rwxr-xr-xplugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json1016
-rwxr-xr-xplugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json3048
-rwxr-xr-xplugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json3048
-rwxr-xr-xplugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json7112
-rwxr-xr-xplugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json96
-rw-r--r--plugins/PrivacyManager/tests/System/expected/test___PrivacyManager.getAvailableLinkVisitActionColumnsToAnonymize.xml24
-rw-r--r--plugins/PrivacyManager/tests/System/expected/test_allSites__Live.getLastVisitsDetails_year.xml1110
-rw-r--r--plugins/PrivacyManager/tests/UI/expected-screenshots/PrivacyManager_gdpr_tools_visits_showprofile.png4
10 files changed, 15173 insertions, 3355 deletions
diff --git a/plugins/PrivacyManager/tests/Fixtures/MultipleSitesMultipleVisitsFixture.php b/plugins/PrivacyManager/tests/Fixtures/MultipleSitesMultipleVisitsFixture.php
index 69252ff65e..bbcfef004e 100644
--- a/plugins/PrivacyManager/tests/Fixtures/MultipleSitesMultipleVisitsFixture.php
+++ b/plugins/PrivacyManager/tests/Fixtures/MultipleSitesMultipleVisitsFixture.php
@@ -148,9 +148,18 @@ class MultipleSitesMultipleVisitsFixture extends Fixture
'CA', 'CN', 'DE', 'ES', 'FR', 'IE', 'IN', 'IT', 'MX', 'PT', 'RU', 'GB', 'US'
);
- private static $generationTime = array(
- false, 1030, 545, 392, 9831, false, 348, 585, 984, 1249, false
- );
+ private static $performanceTimes = [
+ // [$network, $server, $transfer, $domProcessing, $domCompletion, $onload]
+ [26, 235, 36, 199, 155, 90],
+ [null, null, null, null, null, null],
+ [0, 365, 66, 256, 201, 105],
+ [0, 406, 105, 405, 122, 23],
+ [99, 110, 248, 321, 369, 201],
+ [106, 198, 168, 216, 188, 165],
+ [306, 200, 405, 169, 208, 99],
+ [null, null, null, null, null, null],
+ [36, 99, 206, 165, 359, 155],
+ ];
private static $searchKeyword = array('piwik', 'analytics', 'web', 'mobile', 'ecommerce', 'custom');
private static $searchCategory = array('', '', 'video', 'images', 'web', 'web');
@@ -464,9 +473,6 @@ class MultipleSitesMultipleVisitsFixture extends Fixture
$numCountries = count(self::$countryCode);
$this->tracker->setCountry(strtolower(self::$countryCode[$userId % $numCountries]));
-
- $numGenerationTimes = count(self::$generationTime);
- $this->tracker->setGenerationTime(strtolower(self::$generationTime[$userId % $numGenerationTimes]));
}
private function trackVisit($userId, $referrer, $idGoal = null, $hoursAgo = null)
@@ -485,6 +491,10 @@ class MultipleSitesMultipleVisitsFixture extends Fixture
$trackingTime = Date::factory($this->trackingTime)->subHour($hoursAgo)->addHour(0.1)->getDatetime();
$this->tracker->setForceVisitDateTime($trackingTime);
$this->tracker->setUrl('http://www.helloworld.com/hello/world' . $userId . '/' . $j);
+
+ $numPerformanceTimes = count(self::$performanceTimes);
+ call_user_func_array([$this->tracker, 'setPerformanceTimings'], self::$performanceTimes[($userId+$j) % $numPerformanceTimes]);
+
$this->tracker->doTrackPageView('Hello World ' . $j);
}
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json
index 71f53d2307..c8d35a20e9 100755
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json
@@ -5196,7 +5196,7 @@
],
"log_link_visit_action": [
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
"idaction_url_ref": "0",
@@ -5205,10 +5205,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
"idaction_url_ref": "2",
@@ -5217,10 +5223,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
"idaction_url_ref": "4",
@@ -5229,10 +5241,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
"idlink_va": "4",
@@ -5242,7 +5260,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5256,7 +5280,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5270,7 +5300,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5284,7 +5320,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5298,7 +5340,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5311,7 +5359,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5326,7 +5380,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5340,10 +5400,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -5352,7 +5418,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -5365,7 +5437,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -5378,7 +5456,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -5391,7 +5475,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5404,7 +5494,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5417,10 +5513,16 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -5429,10 +5531,16 @@
"idvisit": "3",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5441,10 +5549,16 @@
"idvisit": "4",
"idvisitor": "e3c514844962b92f",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5453,10 +5567,16 @@
"idvisit": "4",
"idvisitor": "e3c514844962b92f",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5465,10 +5585,16 @@
"idvisit": "5",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5477,10 +5603,16 @@
"idvisit": "5",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5489,10 +5621,16 @@
"idvisit": "6",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5501,7 +5639,13 @@
"idvisit": "6",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -5513,7 +5657,13 @@
"idvisit": "7",
"idvisitor": "5be7cae0271f5639",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5525,7 +5675,13 @@
"idvisit": "7",
"idvisitor": "5be7cae0271f5639",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5537,7 +5693,13 @@
"idvisit": "7",
"idvisitor": "5be7cae0271f5639",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5549,7 +5711,13 @@
"idvisit": "8",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5561,7 +5729,13 @@
"idvisit": "8",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5573,7 +5747,13 @@
"idvisit": "8",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5585,7 +5765,13 @@
"idvisit": "9",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5597,7 +5783,13 @@
"idvisit": "9",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5609,7 +5801,13 @@
"idvisit": "9",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5621,7 +5819,13 @@
"idvisit": "10",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5633,7 +5837,13 @@
"idvisit": "10",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5645,7 +5855,13 @@
"idvisit": "10",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5657,7 +5873,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5669,7 +5891,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5681,7 +5909,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5693,7 +5927,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5705,7 +5945,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5717,7 +5963,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5729,7 +5981,13 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5741,7 +5999,13 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5753,10 +6017,16 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
"idaction_url_ref": "0",
@@ -5765,7 +6035,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5780,7 +6056,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5795,7 +6077,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5810,7 +6098,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5825,7 +6119,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5839,7 +6139,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5855,7 +6161,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5870,7 +6182,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -5883,7 +6201,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -5896,7 +6220,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -5909,7 +6239,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5922,7 +6258,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5935,10 +6277,16 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -5947,10 +6295,16 @@
"idvisit": "15",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -5959,10 +6313,16 @@
"idvisit": "15",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
"idlink_va": "61",
@@ -5972,10 +6332,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -5984,10 +6350,16 @@
"idvisit": "16",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -5996,10 +6368,16 @@
"idvisit": "16",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6008,10 +6386,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6020,10 +6404,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6032,10 +6422,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6044,10 +6440,16 @@
"idvisit": "18",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-01 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6056,10 +6458,16 @@
"idvisit": "18",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6068,10 +6476,16 @@
"idvisit": "18",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6080,10 +6494,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6092,10 +6512,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6104,10 +6530,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6116,10 +6548,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6128,10 +6566,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6140,10 +6584,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -6152,7 +6602,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6165,7 +6621,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6178,7 +6640,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6191,7 +6659,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6204,7 +6678,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6217,10 +6697,16 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -6229,7 +6715,13 @@
"idvisit": "22",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6241,7 +6733,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6253,7 +6751,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6268,7 +6772,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6283,7 +6793,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6298,7 +6814,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6313,7 +6835,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6327,7 +6855,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6343,7 +6877,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6358,7 +6898,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6370,7 +6916,13 @@
"idvisit": "24",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6382,7 +6934,13 @@
"idvisit": "24",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6394,7 +6952,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6406,7 +6970,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -6418,7 +6988,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -6430,7 +7006,13 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6442,7 +7024,13 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -6454,10 +7042,16 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
"idaction_url_ref": "0",
@@ -6466,10 +7060,16 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
"idlink_va": "101",
@@ -6479,7 +7079,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6491,7 +7097,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6503,7 +7115,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6515,7 +7133,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6527,7 +7151,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6539,10 +7169,16 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6551,10 +7187,16 @@
"idvisit": "28",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6563,10 +7205,16 @@
"idvisit": "28",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6575,10 +7223,16 @@
"idvisit": "29",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6587,10 +7241,16 @@
"idvisit": "29",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6599,10 +7259,16 @@
"idvisit": "30",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6611,10 +7277,16 @@
"idvisit": "30",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6623,10 +7295,16 @@
"idvisit": "31",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6635,10 +7313,16 @@
"idvisit": "31",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6647,10 +7331,16 @@
"idvisit": "32",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6659,10 +7349,16 @@
"idvisit": "32",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
"idaction_url_ref": "0",
@@ -6671,10 +7367,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
"idaction_url_ref": "2",
@@ -6683,10 +7385,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
"idaction_url_ref": "4",
@@ -6695,10 +7403,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
"idlink_va": "120",
@@ -6708,7 +7422,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6722,7 +7442,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6736,7 +7462,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6750,7 +7482,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6764,7 +7502,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6777,7 +7521,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6792,7 +7542,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6806,10 +7562,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -6818,7 +7580,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6831,7 +7599,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6844,7 +7618,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6857,7 +7637,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6870,7 +7656,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6883,10 +7675,16 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -6895,10 +7693,16 @@
"idvisit": "35",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -6907,10 +7711,16 @@
"idvisit": "36",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -6919,10 +7729,16 @@
"idvisit": "36",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -6931,10 +7747,16 @@
"idvisit": "37",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -6943,10 +7765,16 @@
"idvisit": "37",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -6955,10 +7783,16 @@
"idvisit": "38",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -6967,7 +7801,13 @@
"idvisit": "38",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -6979,7 +7819,13 @@
"idvisit": "39",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6991,7 +7837,13 @@
"idvisit": "39",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7003,7 +7855,13 @@
"idvisit": "39",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7015,7 +7873,13 @@
"idvisit": "40",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7027,7 +7891,13 @@
"idvisit": "40",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7039,7 +7909,13 @@
"idvisit": "40",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7051,7 +7927,13 @@
"idvisit": "41",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7063,7 +7945,13 @@
"idvisit": "41",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7075,7 +7963,13 @@
"idvisit": "41",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7087,7 +7981,13 @@
"idvisit": "42",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7099,7 +7999,13 @@
"idvisit": "42",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7111,7 +8017,13 @@
"idvisit": "42",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7123,7 +8035,13 @@
"idvisit": "43",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7135,7 +8053,13 @@
"idvisit": "43",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7147,7 +8071,13 @@
"idvisit": "43",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7159,7 +8089,13 @@
"idvisit": "44",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7171,7 +8107,13 @@
"idvisit": "44",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7183,7 +8125,13 @@
"idvisit": "44",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7195,7 +8143,13 @@
"idvisit": "45",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7207,7 +8161,13 @@
"idvisit": "45",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7219,10 +8179,16 @@
"idvisit": "45",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
"idaction_url_ref": "0",
@@ -7231,7 +8197,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7246,7 +8218,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7261,7 +8239,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7276,7 +8260,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7291,7 +8281,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7305,7 +8301,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7321,7 +8323,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7336,7 +8344,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7349,7 +8363,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7362,7 +8382,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7375,7 +8401,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7388,7 +8420,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7401,10 +8439,16 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -7413,10 +8457,16 @@
"idvisit": "47",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -7425,10 +8475,16 @@
"idvisit": "47",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
"idlink_va": "177",
@@ -7438,10 +8494,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -7450,10 +8512,16 @@
"idvisit": "48",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -7462,10 +8530,16 @@
"idvisit": "48",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7474,10 +8548,16 @@
"idvisit": "49",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7486,10 +8566,16 @@
"idvisit": "49",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7498,10 +8584,16 @@
"idvisit": "49",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7510,10 +8602,16 @@
"idvisit": "50",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7522,10 +8620,16 @@
"idvisit": "50",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7534,10 +8638,16 @@
"idvisit": "50",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7546,10 +8656,16 @@
"idvisit": "51",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7558,10 +8674,16 @@
"idvisit": "51",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7570,10 +8692,16 @@
"idvisit": "51",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7582,10 +8710,16 @@
"idvisit": "52",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7594,10 +8728,16 @@
"idvisit": "52",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7606,10 +8746,16 @@
"idvisit": "52",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -7618,7 +8764,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7631,7 +8783,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7644,7 +8802,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7657,7 +8821,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7670,7 +8840,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7683,10 +8859,16 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -7695,7 +8877,13 @@
"idvisit": "54",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7707,7 +8895,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7719,7 +8913,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7734,7 +8934,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7749,7 +8955,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7764,7 +8976,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7779,7 +8997,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7793,7 +9017,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7809,7 +9039,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7824,7 +9060,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7836,7 +9078,13 @@
"idvisit": "56",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7848,7 +9096,13 @@
"idvisit": "56",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7860,7 +9114,13 @@
"idvisit": "57",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7872,7 +9132,13 @@
"idvisit": "57",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -7884,7 +9150,13 @@
"idvisit": "57",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -7896,7 +9168,13 @@
"idvisit": "58",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7908,7 +9186,13 @@
"idvisit": "58",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -7920,10 +9204,16 @@
"idvisit": "58",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
"idaction_url_ref": "0",
@@ -7932,10 +9222,16 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
"idlink_va": "217",
@@ -7945,7 +9241,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7957,7 +9259,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7969,7 +9277,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7981,7 +9295,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7993,7 +9313,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8005,10 +9331,16 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8017,10 +9349,16 @@
"idvisit": "60",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8029,10 +9367,16 @@
"idvisit": "60",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8041,10 +9385,16 @@
"idvisit": "61",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8053,10 +9403,16 @@
"idvisit": "61",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8065,10 +9421,16 @@
"idvisit": "62",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8077,10 +9439,16 @@
"idvisit": "62",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8089,10 +9457,16 @@
"idvisit": "63",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8101,10 +9475,16 @@
"idvisit": "63",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8113,10 +9493,16 @@
"idvisit": "64",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8125,10 +9511,16 @@
"idvisit": "64",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
"idaction_url_ref": "0",
@@ -8137,10 +9529,16 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
"idaction_url_ref": "2",
@@ -8149,10 +9547,16 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
"idaction_url_ref": "4",
@@ -8161,10 +9565,16 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
"idlink_va": "236",
@@ -8174,7 +9584,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8188,7 +9604,13 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8202,7 +9624,13 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8216,7 +9644,13 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8230,7 +9664,13 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8243,7 +9683,13 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8258,7 +9704,13 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8272,10 +9724,16 @@
"idvisit": "65",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -8284,7 +9742,13 @@
"idvisit": "66",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -8297,7 +9761,13 @@
"idvisit": "66",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -8310,7 +9780,13 @@
"idvisit": "66",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -8323,7 +9799,13 @@
"idvisit": "66",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8336,7 +9818,13 @@
"idvisit": "66",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8349,10 +9837,16 @@
"idvisit": "66",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -8361,10 +9855,16 @@
"idvisit": "67",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -8373,10 +9873,16 @@
"idvisit": "68",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -8385,10 +9891,16 @@
"idvisit": "68",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -8397,10 +9909,16 @@
"idvisit": "69",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -8409,10 +9927,16 @@
"idvisit": "69",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -8421,10 +9945,16 @@
"idvisit": "70",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -8433,7 +9963,13 @@
"idvisit": "70",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -8445,7 +9981,13 @@
"idvisit": "71",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8457,7 +9999,13 @@
"idvisit": "71",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8469,7 +10017,13 @@
"idvisit": "71",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8481,7 +10035,13 @@
"idvisit": "72",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8493,7 +10053,13 @@
"idvisit": "72",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8505,7 +10071,13 @@
"idvisit": "72",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8517,7 +10089,13 @@
"idvisit": "73",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8529,7 +10107,13 @@
"idvisit": "73",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8541,7 +10125,13 @@
"idvisit": "73",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8553,7 +10143,13 @@
"idvisit": "74",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8565,7 +10161,13 @@
"idvisit": "74",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8577,7 +10179,13 @@
"idvisit": "74",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8589,7 +10197,13 @@
"idvisit": "75",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8601,7 +10215,13 @@
"idvisit": "75",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8613,7 +10233,13 @@
"idvisit": "75",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8625,7 +10251,13 @@
"idvisit": "76",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8637,7 +10269,13 @@
"idvisit": "76",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8649,7 +10287,13 @@
"idvisit": "76",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8661,7 +10305,13 @@
"idvisit": "77",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8673,7 +10323,13 @@
"idvisit": "77",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8685,10 +10341,16 @@
"idvisit": "77",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
"idaction_url_ref": "0",
@@ -8697,7 +10359,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8712,7 +10380,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8727,7 +10401,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8742,7 +10422,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8757,7 +10443,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8771,7 +10463,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8787,7 +10485,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8802,7 +10506,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -8815,7 +10525,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -8828,7 +10544,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -8841,7 +10563,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8854,7 +10582,13 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8867,10 +10601,16 @@
"idvisit": "78",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -8879,10 +10619,16 @@
"idvisit": "79",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -8891,10 +10637,16 @@
"idvisit": "79",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
"idlink_va": "293",
@@ -8904,10 +10656,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -8916,10 +10674,16 @@
"idvisit": "80",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -8928,10 +10692,16 @@
"idvisit": "80",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -8940,10 +10710,16 @@
"idvisit": "81",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -8952,10 +10728,16 @@
"idvisit": "81",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -8964,10 +10746,16 @@
"idvisit": "81",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -8976,10 +10764,16 @@
"idvisit": "82",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -8988,10 +10782,16 @@
"idvisit": "82",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -9000,10 +10800,16 @@
"idvisit": "82",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -9012,10 +10818,16 @@
"idvisit": "83",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -9024,10 +10836,16 @@
"idvisit": "83",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -9036,10 +10854,16 @@
"idvisit": "83",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -9048,10 +10872,16 @@
"idvisit": "84",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -9060,10 +10890,16 @@
"idvisit": "84",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -9072,10 +10908,16 @@
"idvisit": "84",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -9084,7 +10926,13 @@
"idvisit": "85",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -9097,7 +10945,13 @@
"idvisit": "85",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -9110,7 +10964,13 @@
"idvisit": "85",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -9123,7 +10983,13 @@
"idvisit": "85",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9136,7 +11002,13 @@
"idvisit": "85",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9149,10 +11021,16 @@
"idvisit": "85",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -9161,7 +11039,13 @@
"idvisit": "86",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9173,7 +11057,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9185,7 +11075,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9200,7 +11096,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9215,7 +11117,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9230,7 +11138,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9245,7 +11159,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9259,7 +11179,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9275,7 +11201,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9290,7 +11222,13 @@
"idvisit": "87",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9302,7 +11240,13 @@
"idvisit": "88",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9314,7 +11258,13 @@
"idvisit": "88",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9326,7 +11276,13 @@
"idvisit": "89",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9338,7 +11294,13 @@
"idvisit": "89",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -9350,7 +11312,13 @@
"idvisit": "89",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -9362,7 +11330,13 @@
"idvisit": "90",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9374,7 +11348,13 @@
"idvisit": "90",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -9386,10 +11366,16 @@
"idvisit": "90",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
"idaction_url_ref": "0",
@@ -9398,10 +11384,16 @@
"idvisit": "91",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
"idlink_va": "333",
@@ -9411,7 +11403,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -9423,7 +11421,13 @@
"idvisit": "91",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -9435,7 +11439,13 @@
"idvisit": "91",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -9447,7 +11457,13 @@
"idvisit": "91",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9459,7 +11475,13 @@
"idvisit": "91",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9471,10 +11493,16 @@
"idvisit": "91",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -9483,10 +11511,16 @@
"idvisit": "92",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -9495,10 +11529,16 @@
"idvisit": "92",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -9507,10 +11547,16 @@
"idvisit": "93",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -9519,10 +11565,16 @@
"idvisit": "93",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -9531,10 +11583,16 @@
"idvisit": "94",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -9543,10 +11601,16 @@
"idvisit": "94",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -9555,10 +11619,16 @@
"idvisit": "95",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -9567,10 +11637,16 @@
"idvisit": "95",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -9579,10 +11655,16 @@
"idvisit": "96",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -9591,7 +11673,13 @@
"idvisit": "96",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
}
],
"log_foo_bar_baz": [
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json
index dfbe9be9d4..a12a983ffd 100755
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json
@@ -1688,7 +1688,7 @@
],
"log_link_visit_action": [
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -1700,10 +1700,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -1715,10 +1721,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -1730,10 +1742,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -1746,7 +1764,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1762,7 +1786,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1778,7 +1808,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1794,7 +1830,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1810,7 +1852,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1825,7 +1873,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1842,7 +1896,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1858,10 +1918,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -1873,7 +1939,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -1890,7 +1962,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -1907,7 +1985,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -1924,7 +2008,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1941,7 +2031,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -1957,10 +2053,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -1972,10 +2074,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -1987,10 +2095,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -2002,10 +2116,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -2017,10 +2137,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -2032,10 +2158,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -2047,10 +2179,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -2062,7 +2200,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -2077,7 +2221,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2092,7 +2242,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2107,7 +2263,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -2122,7 +2284,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2137,7 +2305,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2152,7 +2326,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -2167,7 +2347,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2182,7 +2368,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2197,7 +2389,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -2212,7 +2410,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2227,7 +2431,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2242,7 +2452,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -2257,7 +2473,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2272,7 +2494,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2287,7 +2515,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -2302,7 +2536,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2317,7 +2557,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2332,7 +2578,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -2347,7 +2599,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2362,7 +2620,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -2377,10 +2641,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -2392,7 +2662,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2409,7 +2685,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2426,7 +2708,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2443,7 +2731,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2460,7 +2754,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2476,7 +2776,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2494,7 +2800,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2511,7 +2823,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -2528,7 +2846,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -2545,7 +2869,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -2562,7 +2892,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2579,7 +2915,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2595,10 +2937,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -2610,10 +2958,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -2625,10 +2979,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -2641,10 +3001,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -2656,10 +3022,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -2671,10 +3043,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -2686,10 +3064,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -2701,10 +3085,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -2716,10 +3106,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -2731,10 +3127,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-01 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -2746,10 +3148,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -2761,10 +3169,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -2776,10 +3190,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -2791,10 +3211,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -2806,10 +3232,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -2821,10 +3253,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -2836,10 +3274,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -2851,10 +3295,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -2866,7 +3316,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -2883,7 +3339,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -2900,7 +3362,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -2917,7 +3385,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2934,7 +3408,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2950,10 +3430,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -2965,7 +3451,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2980,7 +3472,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -2995,7 +3493,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3012,7 +3516,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3029,7 +3539,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3046,7 +3562,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3063,7 +3585,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3079,7 +3607,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3097,7 +3631,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3114,7 +3654,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3129,7 +3675,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3144,7 +3696,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3159,7 +3717,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3174,7 +3738,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -3189,7 +3759,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -3204,7 +3780,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3219,7 +3801,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -3234,10 +3822,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -3249,10 +3843,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -3265,7 +3865,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -3281,7 +3887,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -3297,7 +3909,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -3313,7 +3931,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3329,7 +3953,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -3344,10 +3974,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -3359,10 +3995,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -3374,10 +4016,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -3389,10 +4037,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -3404,10 +4058,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -3419,10 +4079,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -3434,10 +4100,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -3449,10 +4121,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -3464,10 +4142,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -3479,10 +4163,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -3494,7 +4184,13 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
}
],
"log_foo_bar_baz": [
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json
index f56184ab56..22f58001a9 100755
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json
@@ -5086,7 +5086,7 @@
],
"log_link_visit_action": [
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
"idaction_url_ref": "0",
@@ -5095,10 +5095,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
"idaction_url_ref": "2",
@@ -5107,10 +5113,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
"idaction_url_ref": "4",
@@ -5119,10 +5131,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
"idlink_va": "4",
@@ -5132,7 +5150,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5146,7 +5170,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5160,7 +5190,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5174,7 +5210,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5188,7 +5230,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5201,7 +5249,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5216,7 +5270,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5230,10 +5290,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -5242,7 +5308,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -5255,7 +5327,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -5268,7 +5346,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -5281,7 +5365,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5294,7 +5384,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5307,10 +5403,16 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -5319,10 +5421,16 @@
"idvisit": "3",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5334,10 +5442,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5349,10 +5463,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5364,10 +5484,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5379,10 +5505,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5391,10 +5523,16 @@
"idvisit": "6",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5403,7 +5541,13 @@
"idvisit": "6",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -5418,7 +5562,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5433,7 +5583,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5448,7 +5604,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5463,7 +5625,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5478,7 +5646,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5493,7 +5667,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5508,7 +5688,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5523,7 +5709,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5538,7 +5730,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5553,7 +5751,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5568,7 +5772,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5583,7 +5793,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5595,7 +5811,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5607,7 +5829,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5619,7 +5847,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5631,7 +5865,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5643,7 +5883,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5655,7 +5901,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5667,7 +5919,13 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5679,7 +5937,13 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5691,10 +5955,16 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
"idaction_url_ref": "0",
@@ -5703,7 +5973,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5718,7 +5994,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5733,7 +6015,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5748,7 +6036,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5763,7 +6057,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5777,7 +6077,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5793,7 +6099,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5808,7 +6120,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -5821,7 +6139,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -5834,7 +6158,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -5847,7 +6177,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5860,7 +6196,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5873,10 +6215,16 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -5885,10 +6233,16 @@
"idvisit": "15",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -5897,10 +6251,16 @@
"idvisit": "15",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
"idlink_va": "61",
@@ -5910,10 +6270,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -5922,10 +6288,16 @@
"idvisit": "16",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -5934,10 +6306,16 @@
"idvisit": "16",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -5946,10 +6324,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -5958,10 +6342,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -5970,10 +6360,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -5985,10 +6381,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-01 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6000,10 +6402,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6015,10 +6423,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6027,10 +6441,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6039,10 +6459,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6051,10 +6477,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6063,10 +6495,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6075,10 +6513,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6087,10 +6531,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -6099,7 +6549,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6112,7 +6568,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6125,7 +6587,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6138,7 +6606,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6151,7 +6625,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6164,10 +6644,16 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -6176,7 +6662,13 @@
"idvisit": "22",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6191,7 +6683,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6206,7 +6704,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6223,7 +6727,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6240,7 +6750,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6257,7 +6773,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6274,7 +6796,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6290,7 +6818,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6308,7 +6842,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6325,7 +6865,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6337,7 +6883,13 @@
"idvisit": "24",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6349,7 +6901,13 @@
"idvisit": "24",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6361,7 +6919,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6373,7 +6937,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -6385,7 +6955,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -6397,7 +6973,13 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6409,7 +6991,13 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -6421,10 +7009,16 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
"idaction_url_ref": "0",
@@ -6433,10 +7027,16 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
"idlink_va": "101",
@@ -6446,7 +7046,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6458,7 +7064,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6470,7 +7082,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6482,7 +7100,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6494,7 +7118,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6506,10 +7136,16 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6518,10 +7154,16 @@
"idvisit": "28",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6530,10 +7172,16 @@
"idvisit": "28",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -6545,10 +7193,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -6560,10 +7214,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -6575,10 +7235,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -6590,10 +7256,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -6605,10 +7277,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -6620,10 +7298,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6632,10 +7316,16 @@
"idvisit": "32",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6644,10 +7334,16 @@
"idvisit": "32",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -6659,10 +7355,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -6674,10 +7376,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -6689,10 +7397,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -6705,7 +7419,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6721,7 +7441,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6737,7 +7463,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6753,7 +7485,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6769,7 +7507,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6784,7 +7528,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6801,7 +7551,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6817,10 +7573,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -6832,7 +7594,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6849,7 +7617,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6866,7 +7640,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6883,7 +7663,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6900,7 +7686,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6916,10 +7708,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -6931,10 +7729,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -6946,10 +7750,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -6961,10 +7771,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -6976,10 +7792,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -6991,10 +7813,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7006,10 +7834,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7021,7 +7855,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -7036,7 +7876,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7051,7 +7897,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7066,7 +7918,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7081,7 +7939,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7096,7 +7960,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7111,7 +7981,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7126,7 +8002,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7141,7 +8023,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7156,7 +8044,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7171,7 +8065,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7186,7 +8086,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7201,7 +8107,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7216,7 +8128,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7231,7 +8149,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7246,7 +8170,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7261,7 +8191,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7276,7 +8212,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7291,7 +8233,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7306,7 +8254,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7321,7 +8275,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7336,10 +8296,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -7351,7 +8317,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7368,7 +8340,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7385,7 +8363,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7402,7 +8386,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7419,7 +8409,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7435,7 +8431,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7453,7 +8455,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7470,7 +8478,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7487,7 +8501,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7504,7 +8524,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7521,7 +8547,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7538,7 +8570,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7554,10 +8592,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -7569,10 +8613,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -7584,10 +8634,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -7600,10 +8656,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -7615,10 +8677,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -7630,10 +8698,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -7645,10 +8719,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -7660,10 +8740,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -7675,10 +8761,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -7690,10 +8782,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -7705,10 +8803,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -7720,10 +8824,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -7735,10 +8845,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -7750,10 +8866,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -7765,10 +8887,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -7780,10 +8908,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -7795,10 +8929,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -7810,10 +8950,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -7825,7 +8971,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7842,7 +8994,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7859,7 +9017,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7876,7 +9040,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7893,7 +9063,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7909,10 +9085,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -7924,7 +9106,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7939,7 +9127,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7954,7 +9148,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7971,7 +9171,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7988,7 +9194,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8005,7 +9217,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8022,7 +9240,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8038,7 +9262,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8056,7 +9286,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8073,7 +9309,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8088,7 +9330,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8103,7 +9351,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8118,7 +9372,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8133,7 +9393,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -8148,7 +9414,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -8163,7 +9435,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8178,7 +9456,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -8193,10 +9477,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -8208,10 +9498,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -8224,7 +9520,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -8240,7 +9542,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -8256,7 +9564,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -8272,7 +9586,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8288,7 +9608,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8303,10 +9629,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -8318,10 +9650,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -8333,10 +9671,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -8348,10 +9692,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -8363,10 +9713,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -8378,10 +9734,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -8393,10 +9755,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -8408,10 +9776,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -8423,10 +9797,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -8438,10 +9818,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -8453,10 +9839,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -8468,10 +9860,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -8483,10 +9881,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -8498,10 +9902,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -8514,7 +9924,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8530,7 +9946,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8546,7 +9968,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8562,7 +9990,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8578,7 +10012,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8593,7 +10033,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8610,7 +10056,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8626,10 +10078,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -8641,7 +10099,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -8658,7 +10122,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -8675,7 +10145,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -8692,7 +10168,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8709,7 +10191,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8725,10 +10213,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -8740,10 +10234,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -8755,10 +10255,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -8770,10 +10276,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -8785,10 +10297,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -8800,10 +10318,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -8815,10 +10339,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -8830,7 +10360,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -8845,7 +10381,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8860,7 +10402,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8875,7 +10423,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8890,7 +10444,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8905,7 +10465,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8920,7 +10486,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8935,7 +10507,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8950,7 +10528,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8965,7 +10549,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8980,7 +10570,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8995,7 +10591,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -9010,7 +10612,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -9025,7 +10633,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9040,7 +10654,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -9055,7 +10675,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -9070,7 +10696,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9085,7 +10717,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -9100,7 +10738,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -9115,7 +10759,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9130,7 +10780,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -9145,10 +10801,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -9160,7 +10822,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9177,7 +10845,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9194,7 +10868,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9211,7 +10891,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9228,7 +10914,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9244,7 +10936,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9262,7 +10960,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9279,7 +10983,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -9296,7 +11006,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -9313,7 +11029,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -9330,7 +11052,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9347,7 +11075,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9363,10 +11097,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -9378,10 +11118,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -9393,10 +11139,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -9409,10 +11161,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -9424,10 +11182,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -9439,10 +11203,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9454,10 +11224,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9469,10 +11245,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9484,10 +11266,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9499,10 +11287,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9514,10 +11308,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9529,10 +11329,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9544,10 +11350,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9559,10 +11371,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9574,10 +11392,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9589,10 +11413,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9604,10 +11434,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9619,10 +11455,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -9634,7 +11476,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -9651,7 +11499,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -9668,7 +11522,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -9685,7 +11545,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9702,7 +11568,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9718,10 +11590,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -9733,7 +11611,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9748,7 +11632,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9763,7 +11653,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9780,7 +11676,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9797,7 +11699,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9814,7 +11722,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9831,7 +11745,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9847,7 +11767,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9865,7 +11791,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9882,7 +11814,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9897,7 +11835,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9912,7 +11856,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9927,7 +11877,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9942,7 +11898,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -9957,7 +11919,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -9972,7 +11940,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9987,7 +11961,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -10002,10 +11982,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -10017,10 +12003,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -10033,7 +12025,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -10049,7 +12047,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -10065,7 +12069,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -10081,7 +12091,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -10097,7 +12113,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -10112,10 +12134,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -10127,10 +12155,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -10142,10 +12176,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -10157,10 +12197,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -10172,10 +12218,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -10187,10 +12239,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -10202,10 +12260,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -10217,10 +12281,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -10232,10 +12302,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -10247,10 +12323,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -10262,7 +12344,13 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
}
],
"log_foo_bar_baz": [
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json
index fb193b80d3..9f0ecf092c 100755
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json
@@ -5150,7 +5150,7 @@
],
"log_link_visit_action": [
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
"idaction_url_ref": "0",
@@ -5159,10 +5159,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
"idaction_url_ref": "2",
@@ -5171,10 +5177,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
"idaction_url_ref": "4",
@@ -5183,10 +5195,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
"idlink_va": "4",
@@ -5196,7 +5214,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5210,7 +5234,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5224,7 +5254,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5238,7 +5274,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5252,7 +5294,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5265,7 +5313,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5280,7 +5334,13 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5294,10 +5354,16 @@
"idvisit": "1",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -5306,7 +5372,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -5319,7 +5391,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -5332,7 +5410,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -5345,7 +5429,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5358,7 +5448,13 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5371,10 +5467,16 @@
"idvisit": "2",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -5383,10 +5485,16 @@
"idvisit": "3",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5395,10 +5503,16 @@
"idvisit": "4",
"idvisitor": "e3c514844962b92f",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5407,10 +5521,16 @@
"idvisit": "4",
"idvisitor": "e3c514844962b92f",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5419,10 +5539,16 @@
"idvisit": "5",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5431,10 +5557,16 @@
"idvisit": "5",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -5443,10 +5575,16 @@
"idvisit": "6",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -5455,7 +5593,13 @@
"idvisit": "6",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -5467,7 +5611,13 @@
"idvisit": "7",
"idvisitor": "5be7cae0271f5639",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5479,7 +5629,13 @@
"idvisit": "7",
"idvisitor": "5be7cae0271f5639",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5491,7 +5647,13 @@
"idvisit": "7",
"idvisitor": "5be7cae0271f5639",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5503,7 +5665,13 @@
"idvisit": "8",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5515,7 +5683,13 @@
"idvisit": "8",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5527,7 +5701,13 @@
"idvisit": "8",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5539,7 +5719,13 @@
"idvisit": "9",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5551,7 +5737,13 @@
"idvisit": "9",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5563,7 +5755,13 @@
"idvisit": "9",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5575,7 +5773,13 @@
"idvisit": "10",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5587,7 +5791,13 @@
"idvisit": "10",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5599,7 +5809,13 @@
"idvisit": "10",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5611,7 +5827,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5623,7 +5845,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5635,7 +5863,13 @@
"idvisit": "11",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5647,7 +5881,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5659,7 +5899,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5671,7 +5917,13 @@
"idvisit": "12",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -5683,7 +5935,13 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5695,7 +5953,13 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -5707,10 +5971,16 @@
"idvisit": "13",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
"idaction_url_ref": "0",
@@ -5719,7 +5989,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5734,7 +6010,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5749,7 +6031,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5764,7 +6052,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5779,7 +6073,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5793,7 +6093,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5809,7 +6115,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5824,7 +6136,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -5837,7 +6155,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -5850,7 +6174,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -5863,7 +6193,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5876,7 +6212,13 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -5889,10 +6231,16 @@
"idvisit": "14",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -5901,10 +6249,16 @@
"idvisit": "15",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -5913,10 +6267,16 @@
"idvisit": "15",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
"idlink_va": "61",
@@ -5926,10 +6286,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -5938,10 +6304,16 @@
"idvisit": "16",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -5950,10 +6322,16 @@
"idvisit": "16",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -5962,10 +6340,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -5974,10 +6358,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -5986,10 +6376,16 @@
"idvisit": "17",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -5998,10 +6394,16 @@
"idvisit": "18",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-01 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6010,10 +6412,16 @@
"idvisit": "18",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6022,10 +6430,16 @@
"idvisit": "18",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6034,10 +6448,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6046,10 +6466,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6058,10 +6484,16 @@
"idvisit": "19",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -6070,10 +6502,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -6082,10 +6520,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -6094,10 +6538,16 @@
"idvisit": "20",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -6106,7 +6556,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6119,7 +6575,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6132,7 +6594,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6145,7 +6613,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6158,7 +6632,13 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6171,10 +6651,16 @@
"idvisit": "21",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -6183,7 +6669,13 @@
"idvisit": "22",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6195,7 +6687,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6207,7 +6705,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6222,7 +6726,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6237,7 +6747,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6252,7 +6768,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6267,7 +6789,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6281,7 +6809,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6297,7 +6831,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6312,7 +6852,13 @@
"idvisit": "23",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6324,7 +6870,13 @@
"idvisit": "24",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6336,7 +6888,13 @@
"idvisit": "24",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6348,7 +6906,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6360,7 +6924,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -6372,7 +6942,13 @@
"idvisit": "25",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -6384,7 +6960,13 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6396,7 +6978,13 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -6408,10 +6996,16 @@
"idvisit": "26",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
"idaction_url_ref": "0",
@@ -6420,10 +7014,16 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
"idlink_va": "101",
@@ -6433,7 +7033,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6445,7 +7051,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6457,7 +7069,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6469,7 +7087,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6481,7 +7105,13 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6493,10 +7123,16 @@
"idvisit": "27",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6505,10 +7141,16 @@
"idvisit": "28",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6517,10 +7159,16 @@
"idvisit": "28",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6529,10 +7177,16 @@
"idvisit": "29",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6541,10 +7195,16 @@
"idvisit": "29",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6553,10 +7213,16 @@
"idvisit": "30",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6565,10 +7231,16 @@
"idvisit": "30",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6577,10 +7249,16 @@
"idvisit": "31",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6589,10 +7267,16 @@
"idvisit": "31",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -6601,10 +7285,16 @@
"idvisit": "32",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -6613,10 +7303,16 @@
"idvisit": "32",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
"idaction_url_ref": "0",
@@ -6625,10 +7321,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
"idaction_url_ref": "2",
@@ -6637,10 +7339,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
"idaction_url_ref": "4",
@@ -6649,10 +7357,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
"idlink_va": "120",
@@ -6662,7 +7376,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6676,7 +7396,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6690,7 +7416,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6704,7 +7436,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6718,7 +7456,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6731,7 +7475,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6746,7 +7496,13 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6760,10 +7516,16 @@
"idvisit": "33",
"idvisitor": "08aa728aec13d68d",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -6772,7 +7534,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -6785,7 +7553,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -6798,7 +7572,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -6811,7 +7591,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6824,7 +7610,13 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6837,10 +7629,16 @@
"idvisit": "34",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
"idaction_url_ref": "0",
@@ -6849,10 +7647,16 @@
"idvisit": "35",
"idvisitor": "bd9f38e987a2bea6",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -6861,10 +7665,16 @@
"idvisit": "36",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -6873,10 +7683,16 @@
"idvisit": "36",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -6885,10 +7701,16 @@
"idvisit": "37",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -6897,10 +7719,16 @@
"idvisit": "37",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
"idaction_url_ref": "0",
@@ -6909,10 +7737,16 @@
"idvisit": "38",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
"idaction_url_ref": "34",
@@ -6921,7 +7755,13 @@
"idvisit": "38",
"idvisitor": "e3c514844962b92f",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -6933,7 +7773,13 @@
"idvisit": "39",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6945,7 +7791,13 @@
"idvisit": "39",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -6957,7 +7809,13 @@
"idvisit": "39",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -6969,7 +7827,13 @@
"idvisit": "40",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -6981,7 +7845,13 @@
"idvisit": "40",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -6993,7 +7863,13 @@
"idvisit": "40",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7005,7 +7881,13 @@
"idvisit": "41",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7017,7 +7899,13 @@
"idvisit": "41",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7029,7 +7917,13 @@
"idvisit": "41",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7041,7 +7935,13 @@
"idvisit": "42",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7053,7 +7953,13 @@
"idvisit": "42",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7065,7 +7971,13 @@
"idvisit": "42",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7077,7 +7989,13 @@
"idvisit": "43",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7089,7 +8007,13 @@
"idvisit": "43",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7101,7 +8025,13 @@
"idvisit": "43",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7113,7 +8043,13 @@
"idvisit": "44",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7125,7 +8061,13 @@
"idvisit": "44",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7137,7 +8079,13 @@
"idvisit": "44",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -7149,7 +8097,13 @@
"idvisit": "45",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7161,7 +8115,13 @@
"idvisit": "45",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -7173,10 +8133,16 @@
"idvisit": "45",
"idvisitor": "5be7cae0271f5639",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
"idaction_url_ref": "0",
@@ -7185,7 +8151,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7200,7 +8172,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7215,7 +8193,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7230,7 +8214,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7245,7 +8235,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7259,7 +8255,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7275,7 +8277,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7290,7 +8298,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7303,7 +8317,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7316,7 +8336,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7329,7 +8355,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7342,7 +8374,13 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7355,10 +8393,16 @@
"idvisit": "46",
"idvisitor": "72bdb3bd5753b991",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -7367,10 +8411,16 @@
"idvisit": "47",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -7379,10 +8429,16 @@
"idvisit": "47",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
"idlink_va": "177",
@@ -7392,10 +8448,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
"idaction_url_ref": "0",
@@ -7404,10 +8466,16 @@
"idvisit": "48",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
"idaction_url_ref": "46",
@@ -7416,10 +8484,16 @@
"idvisit": "48",
"idvisitor": "0e64dad0a7ea5650",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7428,10 +8502,16 @@
"idvisit": "49",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7440,10 +8520,16 @@
"idvisit": "49",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7452,10 +8538,16 @@
"idvisit": "49",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7464,10 +8556,16 @@
"idvisit": "50",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7476,10 +8574,16 @@
"idvisit": "50",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7488,10 +8592,16 @@
"idvisit": "50",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7500,10 +8610,16 @@
"idvisit": "51",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7512,10 +8628,16 @@
"idvisit": "51",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7524,10 +8646,16 @@
"idvisit": "51",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
"idaction_url_ref": "0",
@@ -7536,10 +8664,16 @@
"idvisit": "52",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
"idaction_url_ref": "51",
@@ -7548,10 +8682,16 @@
"idvisit": "52",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
"idaction_url_ref": "52",
@@ -7560,10 +8700,16 @@
"idvisit": "52",
"idvisitor": "f89db150c0ae0cab",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -7572,7 +8718,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7585,7 +8737,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7598,7 +8756,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7611,7 +8775,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7624,7 +8794,13 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7637,10 +8813,16 @@
"idvisit": "53",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
"idaction_url_ref": "0",
@@ -7649,7 +8831,13 @@
"idvisit": "54",
"idvisitor": "e2cf1a809ad2a194",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7661,7 +8849,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7673,7 +8867,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7688,7 +8888,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7703,7 +8909,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7718,7 +8930,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7733,7 +8951,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7747,7 +8971,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7763,7 +8993,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7778,7 +9014,13 @@
"idvisit": "55",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7790,7 +9032,13 @@
"idvisit": "56",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7802,7 +9050,13 @@
"idvisit": "56",
"idvisitor": "34eba7f94c329bd9",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7814,7 +9068,13 @@
"idvisit": "57",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7826,7 +9086,13 @@
"idvisit": "57",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -7838,7 +9104,13 @@
"idvisit": "57",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -7850,7 +9122,13 @@
"idvisit": "58",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7862,7 +9140,13 @@
"idvisit": "58",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -7874,10 +9158,16 @@
"idvisit": "58",
"idvisitor": "d357803f17701499",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
"idaction_url_ref": "0",
@@ -7886,10 +9176,16 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
"idlink_va": "217",
@@ -7899,7 +9195,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -7911,7 +9213,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -7923,7 +9231,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -7935,7 +9249,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7947,7 +9267,13 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -7959,10 +9285,16 @@
"idvisit": "59",
"idvisitor": "d57f2b2bcf932329",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -7971,10 +9303,16 @@
"idvisit": "60",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -7983,10 +9321,16 @@
"idvisit": "60",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -7995,10 +9339,16 @@
"idvisit": "61",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8007,10 +9357,16 @@
"idvisit": "61",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8019,10 +9375,16 @@
"idvisit": "62",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8031,10 +9393,16 @@
"idvisit": "62",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8043,10 +9411,16 @@
"idvisit": "63",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8055,10 +9429,16 @@
"idvisit": "63",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
"idaction_url_ref": "0",
@@ -8067,10 +9447,16 @@
"idvisit": "64",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
"idaction_url_ref": "68",
@@ -8079,10 +9465,16 @@
"idvisit": "64",
"idvisitor": "61977a16e418646f",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -8094,10 +9486,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -8109,10 +9507,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -8124,10 +9528,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -8140,7 +9550,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8156,7 +9572,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8172,7 +9594,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8188,7 +9616,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8204,7 +9638,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8219,7 +9659,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8236,7 +9682,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8252,10 +9704,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -8267,7 +9725,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -8284,7 +9748,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -8301,7 +9771,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -8318,7 +9794,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8335,7 +9817,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8351,10 +9839,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -8366,10 +9860,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -8381,10 +9881,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -8396,10 +9902,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -8411,10 +9923,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -8426,10 +9944,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -8441,10 +9965,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -8456,7 +9986,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -8471,7 +10007,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8486,7 +10028,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8501,7 +10049,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8516,7 +10070,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8531,7 +10091,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8546,7 +10112,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8561,7 +10133,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8576,7 +10154,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8591,7 +10175,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8606,7 +10196,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8621,7 +10217,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8636,7 +10238,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8651,7 +10259,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8666,7 +10280,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8681,7 +10301,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8696,7 +10322,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8711,7 +10343,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8726,7 +10364,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -8741,7 +10385,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8756,7 +10406,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -8771,10 +10427,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -8786,7 +10448,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8803,7 +10471,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8820,7 +10494,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8837,7 +10517,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8854,7 +10540,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8870,7 +10562,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8888,7 +10586,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8905,7 +10609,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -8922,7 +10632,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -8939,7 +10655,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -8956,7 +10678,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8973,7 +10701,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -8989,10 +10723,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -9004,10 +10744,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -9019,10 +10765,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -9035,10 +10787,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -9050,10 +10808,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -9065,10 +10829,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9080,10 +10850,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9095,10 +10871,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9110,10 +10892,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9125,10 +10913,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9140,10 +10934,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9155,10 +10955,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9170,10 +10976,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9185,10 +10997,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9200,10 +11018,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -9215,10 +11039,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -9230,10 +11060,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -9245,10 +11081,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -9260,7 +11102,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -9277,7 +11125,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -9294,7 +11148,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -9311,7 +11171,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9328,7 +11194,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9344,10 +11216,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -9359,7 +11237,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9374,7 +11258,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9389,7 +11279,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9406,7 +11302,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9423,7 +11325,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9440,7 +11348,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9457,7 +11371,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9473,7 +11393,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9491,7 +11417,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9508,7 +11440,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9523,7 +11461,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9538,7 +11482,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9553,7 +11503,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9568,7 +11524,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -9583,7 +11545,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -9598,7 +11566,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9613,7 +11587,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -9628,10 +11608,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -9643,10 +11629,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -9659,7 +11651,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -9675,7 +11673,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -9691,7 +11695,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -9707,7 +11717,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9723,7 +11739,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -9738,10 +11760,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9753,10 +11781,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9768,10 +11802,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9783,10 +11823,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9798,10 +11844,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9813,10 +11865,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9828,10 +11886,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9843,10 +11907,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9858,10 +11928,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9873,10 +11949,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9888,7 +11970,13 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
}
],
"log_foo_bar_baz": [
diff --git a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json
index 80b29d5d34..f8ef7b3085 100755
--- a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json
+++ b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json
@@ -11798,7 +11798,7 @@
],
"log_link_visit_action": [
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -11810,10 +11810,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -11825,10 +11831,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -11840,10 +11852,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -11856,7 +11874,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11872,7 +11896,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11888,7 +11918,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11904,7 +11940,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11920,7 +11962,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11935,7 +11983,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11952,7 +12006,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -11968,10 +12028,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -11983,7 +12049,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -12000,7 +12072,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -12017,7 +12095,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -12034,7 +12118,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12051,7 +12141,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12067,10 +12163,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -12082,10 +12184,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -12097,10 +12205,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -12112,10 +12226,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -12127,10 +12247,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -12142,10 +12268,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -12157,10 +12289,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -12172,7 +12310,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -12187,7 +12331,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2016-12-31 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12202,7 +12352,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12217,7 +12373,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2016-12-31 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -12232,7 +12394,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12247,7 +12415,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12262,7 +12436,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -12277,7 +12457,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12292,7 +12478,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12307,7 +12499,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -12322,7 +12520,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12337,7 +12541,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12352,7 +12562,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -12367,7 +12583,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12382,7 +12604,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12397,7 +12625,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -12412,7 +12646,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12427,7 +12667,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12442,7 +12688,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -12457,7 +12709,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12472,7 +12730,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -12487,10 +12751,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -12502,7 +12772,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12519,7 +12795,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12536,7 +12818,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12553,7 +12841,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12570,7 +12864,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12586,7 +12886,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12604,7 +12910,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12621,7 +12933,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -12638,7 +12956,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -12655,7 +12979,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -12672,7 +13002,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12689,7 +13025,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -12705,10 +13047,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -12720,10 +13068,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -12735,10 +13089,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -12751,10 +13111,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -12766,10 +13132,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -12781,10 +13153,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -12796,10 +13174,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -12811,10 +13195,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -12826,10 +13216,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -12841,10 +13237,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-01 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -12856,10 +13258,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -12871,10 +13279,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-01 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -12886,10 +13300,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -12901,10 +13321,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -12916,10 +13342,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-02 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -12931,10 +13363,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -12946,10 +13384,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -12961,10 +13405,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -12976,7 +13426,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -12993,7 +13449,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -13010,7 +13472,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -13027,7 +13495,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13044,7 +13518,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13060,10 +13540,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -13075,7 +13561,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13090,7 +13582,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-01 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13105,7 +13603,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13122,7 +13626,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13139,7 +13649,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13156,7 +13672,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13173,7 +13695,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13189,7 +13717,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13207,7 +13741,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13224,7 +13764,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-01 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13239,7 +13785,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13254,7 +13806,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13269,7 +13827,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-02 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13284,7 +13848,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -13299,7 +13869,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-02 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -13314,7 +13890,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13329,7 +13911,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -13344,10 +13932,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -13359,10 +13953,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -13375,7 +13975,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -13391,7 +13997,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -13407,7 +14019,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -13423,7 +14041,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13439,7 +14063,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13454,10 +14084,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -13469,10 +14105,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-02 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -13484,10 +14126,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-02 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -13499,10 +14147,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -13514,10 +14168,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -13529,10 +14189,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -13544,10 +14210,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -13559,10 +14231,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-01 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -13574,10 +14252,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-01 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -13589,10 +14273,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -13604,10 +14294,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -13619,10 +14315,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -13634,10 +14336,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -13649,10 +14357,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -13665,7 +14379,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13681,7 +14401,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13697,7 +14423,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13713,7 +14445,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13729,7 +14467,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13744,7 +14488,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13761,7 +14511,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13777,10 +14533,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -13792,7 +14554,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -13809,7 +14577,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -13826,7 +14600,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -13843,7 +14623,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13860,7 +14646,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -13876,10 +14668,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -13891,10 +14689,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -13906,10 +14710,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -13921,10 +14731,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -13936,10 +14752,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -13951,10 +14773,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -13966,10 +14794,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -13981,7 +14815,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -13996,7 +14836,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14011,7 +14857,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14026,7 +14878,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -14041,7 +14899,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14056,7 +14920,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14071,7 +14941,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -14086,7 +14962,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14101,7 +14983,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14116,7 +15004,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -14131,7 +15025,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14146,7 +15046,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14161,7 +15067,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -14176,7 +15088,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14191,7 +15109,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14206,7 +15130,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -14221,7 +15151,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14236,7 +15172,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14251,7 +15193,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -14266,7 +15214,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14281,7 +15235,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -14296,10 +15256,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -14311,7 +15277,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14328,7 +15300,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14345,7 +15323,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14362,7 +15346,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14379,7 +15369,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14395,7 +15391,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14413,7 +15415,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14430,7 +15438,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -14447,7 +15461,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -14464,7 +15484,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -14481,7 +15507,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14498,7 +15530,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14514,10 +15552,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -14529,10 +15573,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -14544,10 +15594,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -14560,10 +15616,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -14575,10 +15637,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -14590,10 +15658,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -14605,10 +15679,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -14620,10 +15700,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -14635,10 +15721,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -14650,10 +15742,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -14665,10 +15763,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -14680,10 +15784,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -14695,10 +15805,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -14710,10 +15826,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -14725,10 +15847,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -14740,10 +15868,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -14755,10 +15889,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -14770,10 +15910,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -14785,7 +15931,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -14802,7 +15954,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -14819,7 +15977,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -14836,7 +16000,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14853,7 +16023,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14869,10 +16045,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -14884,7 +16066,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14899,7 +16087,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14914,7 +16108,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14931,7 +16131,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14948,7 +16154,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14965,7 +16177,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14982,7 +16200,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -14998,7 +16222,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15016,7 +16246,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15033,7 +16269,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15048,7 +16290,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15063,7 +16311,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15078,7 +16332,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15093,7 +16353,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -15108,7 +16374,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -15123,7 +16395,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15138,7 +16416,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -15153,10 +16437,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -15168,10 +16458,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -15184,7 +16480,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -15200,7 +16502,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -15216,7 +16524,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -15232,7 +16546,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15248,7 +16568,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15263,10 +16589,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -15278,10 +16610,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -15293,10 +16631,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -15308,10 +16652,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -15323,10 +16673,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -15338,10 +16694,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -15353,10 +16715,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -15368,10 +16736,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -15383,10 +16757,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -15398,10 +16778,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -15413,10 +16799,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -15428,10 +16820,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -15443,10 +16841,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -15458,10 +16862,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -15474,7 +16884,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15490,7 +16906,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15506,7 +16928,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15522,7 +16950,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15538,7 +16972,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15553,7 +16993,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15570,7 +17016,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15586,10 +17038,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -15601,7 +17059,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -15618,7 +17082,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -15635,7 +17105,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -15652,7 +17128,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15669,7 +17151,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15685,10 +17173,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -15700,10 +17194,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -15715,10 +17215,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-06 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -15730,10 +17236,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-06 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -15745,10 +17257,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-07 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -15760,10 +17278,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-07 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -15775,10 +17299,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -15790,7 +17320,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -15805,7 +17341,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-06 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15820,7 +17362,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-06 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -15835,7 +17383,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-06 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -15850,7 +17404,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-07 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15865,7 +17425,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-07 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -15880,7 +17446,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-07 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -15895,7 +17467,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-07 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15910,7 +17488,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-07 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -15925,7 +17509,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-07 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -15940,7 +17530,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-07 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -15955,7 +17551,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -15970,7 +17572,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -15985,7 +17593,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16000,7 +17614,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-08 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -16015,7 +17635,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-08 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -16030,7 +17656,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-08 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16045,7 +17677,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-08 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -16060,7 +17698,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-08 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -16075,7 +17719,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16090,7 +17740,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -16105,10 +17761,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -16120,7 +17782,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16137,7 +17805,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16154,7 +17828,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16171,7 +17851,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16188,7 +17874,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16204,7 +17896,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16222,7 +17920,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16239,7 +17943,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -16256,7 +17966,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -16273,7 +17989,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -16290,7 +18012,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16307,7 +18035,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16323,10 +18057,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -16338,10 +18078,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -16353,10 +18099,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-08 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -16369,10 +18121,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-08 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -16384,10 +18142,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -16399,10 +18163,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -16414,10 +18184,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -16429,10 +18205,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-08 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -16444,10 +18226,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-08 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -16459,10 +18247,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-07 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -16474,10 +18268,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-07 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -16489,10 +18289,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-07 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -16504,10 +18310,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -16519,10 +18331,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-08 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -16534,10 +18352,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-08 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -16549,10 +18373,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -16564,10 +18394,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -16579,10 +18415,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -16594,7 +18436,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -16611,7 +18459,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -16628,7 +18482,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -16645,7 +18505,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16662,7 +18528,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16678,10 +18550,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -16693,7 +18571,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16708,7 +18592,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-07 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16723,7 +18613,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16740,7 +18636,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16757,7 +18659,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16774,7 +18682,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16791,7 +18705,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16807,7 +18727,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16825,7 +18751,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16842,7 +18774,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-07 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16857,7 +18795,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16872,7 +18816,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16887,7 +18837,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-08 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16902,7 +18858,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-08 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -16917,7 +18879,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-08 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -16932,7 +18900,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -16947,7 +18921,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -16962,10 +18942,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -16977,10 +18963,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -16993,7 +18985,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -17009,7 +19007,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -17025,7 +19029,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -17041,7 +19051,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17057,7 +19073,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17072,10 +19094,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -17087,10 +19115,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-08 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -17102,10 +19136,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-08 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -17117,10 +19157,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-07 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -17132,10 +19178,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-07 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -17147,10 +19199,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-07 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -17162,10 +19220,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-07 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -17177,10 +19241,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-07 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -17192,10 +19262,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-07 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -17207,10 +19283,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-08 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -17222,10 +19304,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-08 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -17237,10 +19325,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -17252,10 +19346,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -17267,10 +19367,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -17283,7 +19389,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17299,7 +19411,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17315,7 +19433,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17331,7 +19455,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17347,7 +19477,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17362,7 +19498,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17379,7 +19521,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17395,10 +19543,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -17410,7 +19564,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -17427,7 +19587,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -17444,7 +19610,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -17461,7 +19633,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17478,7 +19656,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17494,10 +19678,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -17509,10 +19699,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -17524,10 +19720,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-09 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -17539,10 +19741,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -17554,10 +19762,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-10 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -17569,10 +19783,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-10 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -17584,10 +19804,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -17599,7 +19825,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -17614,7 +19846,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-09 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17629,7 +19867,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17644,7 +19888,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -17659,7 +19909,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17674,7 +19930,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17689,7 +19951,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -17704,7 +19972,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17719,7 +19993,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17734,7 +20014,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -17749,7 +20035,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17764,7 +20056,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17779,7 +20077,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -17794,7 +20098,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17809,7 +20119,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17824,7 +20140,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -17839,7 +20161,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17854,7 +20182,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17869,7 +20203,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -17884,7 +20224,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17899,7 +20245,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -17914,10 +20266,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -17929,7 +20287,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17946,7 +20310,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17963,7 +20333,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17980,7 +20356,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -17997,7 +20379,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18013,7 +20401,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18031,7 +20425,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18048,7 +20448,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -18065,7 +20471,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -18082,7 +20494,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -18099,7 +20517,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18116,7 +20540,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18132,10 +20562,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -18147,10 +20583,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -18162,10 +20604,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -18178,10 +20626,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -18193,10 +20647,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -18208,10 +20668,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -18223,10 +20689,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -18238,10 +20710,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -18253,10 +20731,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -18268,10 +20752,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-10 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -18283,10 +20773,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-10 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -18298,10 +20794,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-10 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -18313,10 +20815,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -18328,10 +20836,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -18343,10 +20857,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -18358,10 +20878,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -18373,10 +20899,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -18388,10 +20920,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -18403,7 +20941,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -18420,7 +20964,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -18437,7 +20987,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -18454,7 +21010,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18471,7 +21033,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18487,10 +21055,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -18502,7 +21076,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18517,7 +21097,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-10 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18532,7 +21118,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18549,7 +21141,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18566,7 +21164,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18583,7 +21187,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18600,7 +21210,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18616,7 +21232,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18634,7 +21256,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18651,7 +21279,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18666,7 +21300,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18681,7 +21321,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18696,7 +21342,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18711,7 +21363,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -18726,7 +21384,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -18741,7 +21405,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18756,7 +21426,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -18771,10 +21447,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -18786,10 +21468,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -18802,7 +21490,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -18818,7 +21512,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -18834,7 +21534,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -18850,7 +21556,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18866,7 +21578,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -18881,10 +21599,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -18896,10 +21620,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-11 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -18911,10 +21641,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -18926,10 +21662,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -18941,10 +21683,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -18956,10 +21704,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -18971,10 +21725,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -18986,10 +21746,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -19001,10 +21767,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -19016,10 +21788,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -19031,10 +21809,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -19046,10 +21830,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -19061,10 +21851,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -19076,10 +21872,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -19092,7 +21894,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19108,7 +21916,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19124,7 +21938,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19140,7 +21960,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19156,7 +21982,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19171,7 +22003,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19188,7 +22026,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19204,10 +22048,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -19219,7 +22069,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -19236,7 +22092,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -19253,7 +22115,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -19270,7 +22138,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19287,7 +22161,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19303,10 +22183,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -19318,10 +22204,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -19333,10 +22225,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-09 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -19348,10 +22246,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -19363,10 +22267,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-10 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -19378,10 +22288,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-10 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -19393,10 +22309,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -19408,7 +22330,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -19423,7 +22351,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-09 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19438,7 +22372,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19453,7 +22393,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -19468,7 +22414,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19483,7 +22435,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19498,7 +22456,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -19513,7 +22477,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19528,7 +22498,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19543,7 +22519,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -19558,7 +22540,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19573,7 +22561,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19588,7 +22582,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -19603,7 +22603,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19618,7 +22624,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19633,7 +22645,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -19648,7 +22666,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19663,7 +22687,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19678,7 +22708,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -19693,7 +22729,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19708,7 +22750,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -19723,10 +22771,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -19738,7 +22792,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19755,7 +22815,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19772,7 +22838,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19789,7 +22861,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19806,7 +22884,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19822,7 +22906,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19840,7 +22930,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19857,7 +22953,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -19874,7 +22976,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -19891,7 +22999,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -19908,7 +23022,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19925,7 +23045,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -19941,10 +23067,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -19956,10 +23088,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -19971,10 +23109,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -19987,10 +23131,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -20002,10 +23152,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -20017,10 +23173,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -20032,10 +23194,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -20047,10 +23215,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -20062,10 +23236,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -20077,10 +23257,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-10 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -20092,10 +23278,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-10 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -20107,10 +23299,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-10 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -20122,10 +23320,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -20137,10 +23341,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -20152,10 +23362,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -20167,10 +23383,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -20182,10 +23404,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -20197,10 +23425,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -20212,7 +23446,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -20229,7 +23469,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -20246,7 +23492,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -20263,7 +23515,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20280,7 +23538,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20296,10 +23560,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -20311,7 +23581,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20326,7 +23602,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-10 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20341,7 +23623,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20358,7 +23646,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20375,7 +23669,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20392,7 +23692,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20409,7 +23715,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20425,7 +23737,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20443,7 +23761,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20460,7 +23784,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20475,7 +23805,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20490,7 +23826,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20505,7 +23847,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20520,7 +23868,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -20535,7 +23889,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -20550,7 +23910,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20565,7 +23931,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -20580,10 +23952,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -20595,10 +23973,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -20611,7 +23995,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -20627,7 +24017,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -20643,7 +24039,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -20659,7 +24061,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20675,7 +24083,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20690,10 +24104,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -20705,10 +24125,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-11 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -20720,10 +24146,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -20735,10 +24167,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -20750,10 +24188,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -20765,10 +24209,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -20780,10 +24230,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -20795,10 +24251,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -20810,10 +24272,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -20825,10 +24293,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -20840,10 +24314,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -20855,10 +24335,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -20870,10 +24356,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -20885,10 +24377,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -20901,7 +24399,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20917,7 +24421,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20933,7 +24443,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20949,7 +24465,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20965,7 +24487,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20980,7 +24508,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -20997,7 +24531,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21013,10 +24553,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -21028,7 +24574,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -21045,7 +24597,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -21062,7 +24620,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -21079,7 +24643,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21096,7 +24666,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21112,10 +24688,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -21127,10 +24709,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -21142,10 +24730,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-09 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -21157,10 +24751,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -21172,10 +24772,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-10 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -21187,10 +24793,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-10 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -21202,10 +24814,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -21217,7 +24835,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -21232,7 +24856,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-09 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21247,7 +24877,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21262,7 +24898,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-09 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -21277,7 +24919,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21292,7 +24940,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21307,7 +24961,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -21322,7 +24982,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21337,7 +25003,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21352,7 +25024,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -21367,7 +25045,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-10 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21382,7 +25066,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21397,7 +25087,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -21412,7 +25108,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21427,7 +25129,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21442,7 +25150,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -21457,7 +25171,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21472,7 +25192,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21487,7 +25213,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -21502,7 +25234,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21517,7 +25255,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -21532,10 +25276,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -21547,7 +25297,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21564,7 +25320,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21581,7 +25343,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21598,7 +25366,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21615,7 +25389,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21631,7 +25411,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21649,7 +25435,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21666,7 +25458,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -21683,7 +25481,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -21700,7 +25504,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -21717,7 +25527,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21734,7 +25550,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -21750,10 +25572,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -21765,10 +25593,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -21780,10 +25614,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -21796,10 +25636,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -21811,10 +25657,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -21826,10 +25678,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -21841,10 +25699,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -21856,10 +25720,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -21871,10 +25741,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -21886,10 +25762,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-10 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -21901,10 +25783,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-10 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -21916,10 +25804,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-10 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -21931,10 +25825,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -21946,10 +25846,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -21961,10 +25867,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -21976,10 +25888,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -21991,10 +25909,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -22006,10 +25930,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -22021,7 +25951,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -22038,7 +25974,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -22055,7 +25997,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -22072,7 +26020,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22089,7 +26043,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22105,10 +26065,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -22120,7 +26086,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22135,7 +26107,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-10 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22150,7 +26128,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22167,7 +26151,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22184,7 +26174,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22201,7 +26197,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22218,7 +26220,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22234,7 +26242,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22252,7 +26266,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22269,7 +26289,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-10 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22284,7 +26310,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22299,7 +26331,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22314,7 +26352,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-11 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22329,7 +26373,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -22344,7 +26394,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-11 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -22359,7 +26415,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22374,7 +26436,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -22389,10 +26457,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -22404,10 +26478,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -22420,7 +26500,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -22436,7 +26522,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -22452,7 +26544,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -22468,7 +26566,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22484,7 +26588,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22499,10 +26609,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -22514,10 +26630,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-11 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -22529,10 +26651,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-11 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -22544,10 +26672,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -22559,10 +26693,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -22574,10 +26714,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -22589,10 +26735,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -22604,10 +26756,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-10 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -22619,10 +26777,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-10 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -22634,10 +26798,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-11 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -22649,10 +26819,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-11 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -22664,10 +26840,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -22679,10 +26861,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -22694,10 +26882,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -22710,7 +26904,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22726,7 +26926,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22742,7 +26948,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22758,7 +26970,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22774,7 +26992,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22789,7 +27013,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22806,7 +27036,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22822,10 +27058,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -22837,7 +27079,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -22854,7 +27102,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -22871,7 +27125,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -22888,7 +27148,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22905,7 +27171,13 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -22921,10 +27193,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "6 min 32s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -22936,10 +27214,16 @@
"idvisitor": "bd9f38e987a2bea6",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -22951,10 +27235,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -22966,10 +27256,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -22981,10 +27277,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -22996,10 +27298,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -23011,10 +27319,16 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "2 hours 43 min",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -23026,7 +27340,13 @@
"idvisitor": "e3c514844962b92f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
"custom_float": "0s",
@@ -23041,7 +27361,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-03 08:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23056,7 +27382,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23071,7 +27403,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-03 08:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -23086,7 +27424,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 09:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23101,7 +27445,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23116,7 +27466,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 09:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -23131,7 +27487,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23146,7 +27508,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23161,7 +27529,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -23176,7 +27550,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23191,7 +27571,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23206,7 +27592,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -23221,7 +27613,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23236,7 +27634,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23251,7 +27655,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -23266,7 +27676,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23281,7 +27697,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23296,7 +27718,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
"custom_float": "0s",
@@ -23311,7 +27739,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23326,7 +27760,13 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 8s",
+ "time_dom_processing": "3 min 36s",
+ "time_network": "1 min 46s",
+ "time_on_load": "2 min 45s",
+ "time_server": "3 min 18s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "2 min 48s"
},
{
"custom_float": "0s",
@@ -23341,10 +27781,16 @@
"idvisitor": "5be7cae0271f5639",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "3 min 28s",
+ "time_dom_processing": "2 min 49s",
+ "time_network": "5 min 6s",
+ "time_on_load": "1 min 39s",
+ "time_server": "3 min 20s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "6 min 45s"
},
{
- "custom_float": "5 min 48s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -23356,7 +27802,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23373,7 +27825,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23390,7 +27848,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23407,7 +27871,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23424,7 +27894,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23440,7 +27916,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23458,7 +27940,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23475,7 +27963,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -23492,7 +27986,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -23509,7 +28009,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -23526,7 +28032,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23543,7 +28055,13 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23559,10 +28077,16 @@
"idvisitor": "72bdb3bd5753b991",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -23574,10 +28098,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -23589,10 +28119,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -23605,10 +28141,16 @@
"search_cat": "web",
"search_count": "205",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -23620,10 +28162,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 45s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -23635,10 +28183,16 @@
"idvisitor": "0e64dad0a7ea5650",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -23650,10 +28204,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -23665,10 +28225,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -23680,10 +28246,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -23695,10 +28267,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-04 22:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -23710,10 +28288,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -23725,10 +28309,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-04 22:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -23740,10 +28330,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -23755,10 +28351,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -23770,10 +28372,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 00:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -23785,10 +28393,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -23800,10 +28414,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "5 min 59s",
+ "time_dom_processing": "2 min 45s",
+ "time_network": "36s",
+ "time_on_load": "2 min 35s",
+ "time_server": "1 min 39s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "3 min 26s"
},
{
- "custom_float": "16 min 24s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -23815,10 +28435,16 @@
"idvisitor": "f89db150c0ae0cab",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 35s",
+ "time_dom_processing": "3 min 19s",
+ "time_network": "26s",
+ "time_on_load": "1 min 30s",
+ "time_server": "3 min 55s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "36s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -23830,7 +28456,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -23847,7 +28479,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -23864,7 +28502,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -23881,7 +28525,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23898,7 +28548,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23914,10 +28570,16 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 00:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "20 min 49s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -23929,7 +28591,13 @@
"idvisitor": "e2cf1a809ad2a194",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23944,7 +28612,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-04 19:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23959,7 +28633,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23976,7 +28656,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -23993,7 +28679,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24010,7 +28702,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24027,7 +28725,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24043,7 +28747,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24061,7 +28771,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24078,7 +28794,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-04 19:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24093,7 +28815,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24108,7 +28836,13 @@
"idvisitor": "34eba7f94c329bd9",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24123,7 +28857,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 01:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24138,7 +28878,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -24153,7 +28899,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 01:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
"custom_float": "0s",
@@ -24168,7 +28920,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24183,7 +28941,13 @@
"idvisitor": "d357803f17701499",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
"custom_float": "0s",
@@ -24198,10 +28962,16 @@
"idvisitor": "d357803f17701499",
"pageview_position": "3",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -24213,10 +28983,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "17 min 10s",
+ "custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -24229,7 +29005,13 @@
"search_cat": "",
"search_count": "210",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "2s",
@@ -24245,7 +29027,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "3s",
@@ -24261,7 +29049,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "1s",
@@ -24277,7 +29071,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24293,7 +29093,13 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -24308,10 +29114,16 @@
"idvisitor": "d57f2b2bcf932329",
"pageview_position": "2",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -24323,10 +29135,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 02:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -24338,10 +29156,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 02:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -24353,10 +29177,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 14:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -24368,10 +29198,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 14:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -24383,10 +29219,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 17:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -24398,10 +29240,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 17:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -24413,10 +29261,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-04 23:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -24428,10 +29282,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-04 23:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -24443,10 +29303,16 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "1",
"server_time": "2017-01-05 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -24458,7 +29324,13 @@
"idvisitor": "61977a16e418646f",
"pageview_position": "2",
"server_time": "2017-01-05 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "6 min 9s",
+ "time_dom_processing": "5 min 21s",
+ "time_network": "1 min 39s",
+ "time_on_load": "3 min 21s",
+ "time_server": "1 min 50s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "4 min 8s"
}
],
"log_foo_bar_baz": [
diff --git a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json
index c20ea621ea..493c37479a 100755
--- a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json
+++ b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json
@@ -55,7 +55,7 @@
],
"log_link_visit_action": [
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -67,10 +67,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "1",
"server_time": "2017-01-02 03:04:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -82,10 +88,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "2",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:06:00"
+ "time_dom_completion": "3 min 21s",
+ "time_dom_processing": "4 min 16s",
+ "time_network": "0s",
+ "time_on_load": "1 min 45s",
+ "time_server": "6 min 5s",
+ "time_spent_ref_action": "00:06:00",
+ "time_transfer": "1 min 6s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -97,10 +109,16 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "3",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "2 min 2s",
+ "time_dom_processing": "6 min 45s",
+ "time_network": "0s",
+ "time_on_load": "23s",
+ "time_server": "6 min 46s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "1 min 45s"
},
{
- "custom_float": "9 min 5s",
+ "custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -113,7 +131,13 @@
"search_cat": "images",
"search_count": "200",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -129,7 +153,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -145,7 +175,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -161,7 +197,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -177,7 +219,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -192,7 +240,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -209,7 +263,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
},
{
"custom_float": "0s",
@@ -225,7 +285,13 @@
"idvisitor": "08aa728aec13d68d",
"pageview_position": "4",
"server_time": "2017-01-02 03:10:05",
- "time_spent_ref_action": "00:00:00"
+ "time_dom_completion": "0s",
+ "time_dom_processing": "0s",
+ "time_network": "0s",
+ "time_on_load": "0s",
+ "time_server": "0s",
+ "time_spent_ref_action": "00:00:00",
+ "time_transfer": "0s"
}
],
"log_foo_bar_baz": [
diff --git a/plugins/PrivacyManager/tests/System/expected/test___PrivacyManager.getAvailableLinkVisitActionColumnsToAnonymize.xml b/plugins/PrivacyManager/tests/System/expected/test___PrivacyManager.getAvailableLinkVisitActionColumnsToAnonymize.xml
index 8db84fac40..0a79714081 100644
--- a/plugins/PrivacyManager/tests/System/expected/test___PrivacyManager.getAvailableLinkVisitActionColumnsToAnonymize.xml
+++ b/plugins/PrivacyManager/tests/System/expected/test___PrivacyManager.getAvailableLinkVisitActionColumnsToAnonymize.xml
@@ -125,6 +125,26 @@
<default_value />
</row>
<row>
+ <column_name>time_dom_completion</column_name>
+ <default_value />
+ </row>
+ <row>
+ <column_name>time_dom_processing</column_name>
+ <default_value />
+ </row>
+ <row>
+ <column_name>time_network</column_name>
+ <default_value />
+ </row>
+ <row>
+ <column_name>time_on_load</column_name>
+ <default_value />
+ </row>
+ <row>
+ <column_name>time_server</column_name>
+ <default_value />
+ </row>
+ <row>
<column_name>time_spent</column_name>
<default_value />
</row>
@@ -132,4 +152,8 @@
<column_name>time_spent_ref_action</column_name>
<default_value />
</row>
+ <row>
+ <column_name>time_transfer</column_name>
+ <default_value />
+ </row>
</result> \ No newline at end of file
diff --git a/plugins/PrivacyManager/tests/System/expected/test_allSites__Live.getLastVisitsDetails_year.xml b/plugins/PrivacyManager/tests/System/expected/test_allSites__Live.getLastVisitsDetails_year.xml
index 35b0fa7022..10d3e5ef11 100644
--- a/plugins/PrivacyManager/tests/System/expected/test_allSites__Live.getLastVisitsDetails_year.xml
+++ b/plugins/PrivacyManager/tests/System/expected/test_allSites__Live.getLastVisitsDetails_year.xml
@@ -33,8 +33,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -51,11 +49,11 @@
<pageId>350</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -72,11 +70,11 @@
<pageId>351</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -96,8 +94,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -395,8 +391,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -413,9 +407,9 @@
<pageId>372</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -575,9 +569,11 @@
<pageId>392</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -594,7 +590,9 @@
<pageId>393</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -738,8 +736,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -757,8 +753,6 @@
<pageId>411</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -902,8 +896,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -920,11 +912,11 @@
<pageId>422</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -941,9 +933,9 @@
<pageId>423</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -1248,9 +1240,11 @@
<pageId>446</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -1267,7 +1261,9 @@
<pageId>447</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -1407,8 +1403,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -1425,9 +1419,9 @@
<pageId>464</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -1571,8 +1565,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -1589,11 +1581,11 @@
<pageId>466</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -1610,11 +1602,11 @@
<pageId>467</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -1634,8 +1626,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -1933,8 +1923,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -1951,9 +1939,9 @@
<pageId>488</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -2113,9 +2101,11 @@
<pageId>508</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -2132,7 +2122,9 @@
<pageId>509</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -2276,8 +2268,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -2295,8 +2285,6 @@
<pageId>527</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -2440,8 +2428,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -2458,11 +2444,11 @@
<pageId>538</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -2479,9 +2465,9 @@
<pageId>539</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -2786,9 +2772,11 @@
<pageId>562</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -2805,7 +2793,9 @@
<pageId>563</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -2945,8 +2935,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -2963,9 +2951,9 @@
<pageId>580</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -3109,8 +3097,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -3127,11 +3113,11 @@
<pageId>582</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -3148,11 +3134,11 @@
<pageId>583</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -3172,8 +3158,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -3471,8 +3455,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -3489,9 +3471,9 @@
<pageId>604</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -3651,9 +3633,11 @@
<pageId>624</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -3670,7 +3654,9 @@
<pageId>625</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -3814,8 +3800,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -3833,8 +3817,6 @@
<pageId>643</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -3978,8 +3960,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -3996,11 +3976,11 @@
<pageId>654</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -4017,9 +3997,9 @@
<pageId>655</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -4324,9 +4304,11 @@
<pageId>678</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -4343,7 +4325,9 @@
<pageId>679</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -4483,8 +4467,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -4501,9 +4483,9 @@
<pageId>696</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -4645,8 +4627,6 @@
<pageId>366</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -4790,8 +4770,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -5177,8 +5155,6 @@
<pageId>430</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -5322,8 +5298,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -5345,8 +5319,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -5593,8 +5565,6 @@
<pageId>482</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -5736,8 +5706,6 @@
<pageId>510</pageId>
<bandwidth />
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -6125,8 +6093,6 @@
<pageId>546</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -6270,8 +6236,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -6293,8 +6257,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -6541,8 +6503,6 @@
<pageId>598</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -6686,8 +6646,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -7073,8 +7031,6 @@
<pageId>662</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -7218,8 +7174,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -7241,8 +7195,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -7492,9 +7444,11 @@
<pageId>389</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -7511,7 +7465,9 @@
<pageId>390</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -7640,8 +7596,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -7658,9 +7612,9 @@
<pageId>456</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -7805,9 +7759,11 @@
<pageId>505</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -7824,7 +7780,9 @@
<pageId>506</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -7953,8 +7911,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -8000,9 +7956,9 @@
<pageId>572</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -8147,9 +8103,11 @@
<pageId>621</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -8166,7 +8124,9 @@
<pageId>622</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -8295,8 +8255,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -8342,9 +8300,9 @@
<pageId>688</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -8473,8 +8431,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -8491,11 +8447,11 @@
<pageId>413</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -8512,9 +8468,9 @@
<pageId>414</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -8659,9 +8615,11 @@
<pageId>443</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -8678,7 +8636,9 @@
<pageId>444</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -8803,8 +8763,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -8821,11 +8779,11 @@
<pageId>529</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -8842,9 +8800,9 @@
<pageId>530</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -8989,9 +8947,11 @@
<pageId>559</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -9008,7 +8968,9 @@
<pageId>560</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -9133,8 +9095,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -9151,11 +9111,11 @@
<pageId>645</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -9172,9 +9132,9 @@
<pageId>646</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -9319,9 +9279,11 @@
<pageId>675</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -9338,7 +9300,9 @@
<pageId>676</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -9463,8 +9427,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -9698,8 +9660,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -9933,8 +9893,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -10184,9 +10142,11 @@
<pageId>386</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -10203,7 +10163,9 @@
<pageId>387</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -10332,8 +10294,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -10353,8 +10313,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -10374,8 +10332,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -10504,8 +10460,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -10522,11 +10476,11 @@
<pageId>419</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -10543,9 +10497,9 @@
<pageId>420</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -10690,9 +10644,11 @@
<pageId>502</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -10709,7 +10665,9 @@
<pageId>503</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -10838,8 +10796,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -10888,8 +10844,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -10909,8 +10863,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -11039,8 +10991,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -11057,11 +11007,11 @@
<pageId>535</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -11078,9 +11028,9 @@
<pageId>536</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -11225,9 +11175,11 @@
<pageId>618</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -11244,7 +11196,9 @@
<pageId>619</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -11373,8 +11327,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -11423,8 +11375,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -11444,8 +11394,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -11574,8 +11522,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -11592,11 +11538,11 @@
<pageId>651</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -11613,9 +11559,9 @@
<pageId>652</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -11744,8 +11690,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -11979,8 +11923,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -12214,8 +12156,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -12449,8 +12389,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -12467,9 +12405,9 @@
<pageId>370</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -12598,8 +12536,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -12616,9 +12552,9 @@
<pageId>462</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -12747,8 +12683,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -12765,9 +12699,9 @@
<pageId>486</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -12896,8 +12830,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -12914,9 +12846,9 @@
<pageId>578</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -13045,8 +12977,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -13063,9 +12993,9 @@
<pageId>602</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -13194,8 +13124,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -13212,9 +13140,9 @@
<pageId>694</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -13343,8 +13271,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -13361,11 +13287,11 @@
<pageId>416</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -13382,9 +13308,9 @@
<pageId>417</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -13513,8 +13439,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -13531,11 +13455,11 @@
<pageId>532</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -13552,9 +13476,9 @@
<pageId>533</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -13683,8 +13607,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -13701,11 +13623,11 @@
<pageId>648</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -13722,9 +13644,9 @@
<pageId>649</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -13869,9 +13791,11 @@
<pageId>383</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -13888,7 +13812,9 @@
<pageId>384</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -14356,9 +14282,11 @@
<pageId>499</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -14375,7 +14303,9 @@
<pageId>500</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -14843,9 +14773,11 @@
<pageId>615</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -14862,7 +14794,9 @@
<pageId>616</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -15329,8 +15263,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -15347,9 +15279,9 @@
<pageId>460</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -15493,8 +15425,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -15511,9 +15441,9 @@
<pageId>576</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -15657,8 +15587,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -15675,9 +15603,9 @@
<pageId>692</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -15822,9 +15750,11 @@
<pageId>380</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -15841,7 +15771,9 @@
<pageId>381</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -15985,8 +15917,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -16003,9 +15933,9 @@
<pageId>458</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -16150,9 +16080,11 @@
<pageId>496</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -16169,7 +16101,9 @@
<pageId>497</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -16313,8 +16247,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -16331,9 +16263,9 @@
<pageId>574</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -16478,9 +16410,11 @@
<pageId>612</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -16497,7 +16431,9 @@
<pageId>613</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -16641,8 +16577,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -16659,9 +16593,9 @@
<pageId>690</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -16806,9 +16740,11 @@
<pageId>377</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -16825,7 +16761,9 @@
<pageId>378</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -16970,9 +16908,11 @@
<pageId>493</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -16989,7 +16929,9 @@
<pageId>494</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -17134,9 +17076,11 @@
<pageId>609</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -17153,7 +17097,9 @@
<pageId>610</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -17282,8 +17228,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -17324,9 +17268,9 @@
<pageId>368</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -17471,9 +17415,11 @@
<pageId>374</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -17490,7 +17436,9 @@
<pageId>375</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -17619,8 +17567,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -17661,9 +17607,9 @@
<pageId>484</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -17808,9 +17754,11 @@
<pageId>490</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -17827,7 +17775,9 @@
<pageId>491</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -17956,8 +17906,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -17998,9 +17946,9 @@
<pageId>600</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -18145,9 +18093,11 @@
<pageId>606</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -18164,7 +18114,9 @@
<pageId>607</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -18308,8 +18260,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -18326,11 +18276,11 @@
<pageId>234</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -18347,11 +18297,11 @@
<pageId>235</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -18371,8 +18321,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -18670,8 +18618,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -18688,9 +18634,9 @@
<pageId>256</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -18850,9 +18796,11 @@
<pageId>276</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -18869,7 +18817,9 @@
<pageId>277</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -19013,8 +18963,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -19032,8 +18980,6 @@
<pageId>295</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -19177,8 +19123,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -19195,11 +19139,11 @@
<pageId>306</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -19216,9 +19160,9 @@
<pageId>307</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -19523,9 +19467,11 @@
<pageId>330</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -19542,7 +19488,9 @@
<pageId>331</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -19682,8 +19630,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -19700,9 +19646,9 @@
<pageId>348</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -19844,8 +19790,6 @@
<pageId>250</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -19989,8 +19933,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -20376,8 +20318,6 @@
<pageId>314</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -20521,8 +20461,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -20544,8 +20482,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -20795,9 +20731,11 @@
<pageId>273</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -20814,7 +20752,9 @@
<pageId>274</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -20943,8 +20883,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -20961,9 +20899,9 @@
<pageId>340</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -21092,8 +21030,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -21110,11 +21046,11 @@
<pageId>297</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -21131,9 +21067,9 @@
<pageId>298</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -21278,9 +21214,11 @@
<pageId>327</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -21297,7 +21235,9 @@
<pageId>328</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -21422,8 +21362,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -21673,9 +21611,11 @@
<pageId>270</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -21692,7 +21632,9 @@
<pageId>271</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -21821,8 +21763,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -21842,8 +21782,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -21863,8 +21801,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -21993,8 +21929,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -22011,11 +21945,11 @@
<pageId>303</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -22032,9 +21966,9 @@
<pageId>304</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -22163,8 +22097,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -22398,8 +22330,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -22416,9 +22346,9 @@
<pageId>254</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -22547,8 +22477,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -22565,9 +22493,9 @@
<pageId>346</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -22696,8 +22624,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -22714,11 +22640,11 @@
<pageId>300</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -22735,9 +22661,9 @@
<pageId>301</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -22882,9 +22808,11 @@
<pageId>267</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -22901,7 +22829,9 @@
<pageId>268</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -23368,8 +23298,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -23386,9 +23314,9 @@
<pageId>344</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -23533,9 +23461,11 @@
<pageId>264</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -23552,7 +23482,9 @@
<pageId>265</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -23696,8 +23628,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -23714,9 +23644,9 @@
<pageId>342</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -23861,9 +23791,11 @@
<pageId>261</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -23880,7 +23812,9 @@
<pageId>262</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -24009,8 +23943,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -24051,9 +23983,9 @@
<pageId>252</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -24198,9 +24130,11 @@
<pageId>258</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -24217,7 +24151,9 @@
<pageId>259</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -24361,8 +24297,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -24379,11 +24313,11 @@
<pageId>118</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -24400,11 +24334,11 @@
<pageId>119</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -24424,8 +24358,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -24723,8 +24655,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -24741,9 +24671,9 @@
<pageId>140</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -24903,9 +24833,11 @@
<pageId>160</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -24922,7 +24854,9 @@
<pageId>161</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -25066,8 +25000,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -25085,8 +25017,6 @@
<pageId>179</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -25230,8 +25160,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -25248,11 +25176,11 @@
<pageId>190</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -25269,9 +25197,9 @@
<pageId>191</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -25576,9 +25504,11 @@
<pageId>214</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -25595,7 +25525,9 @@
<pageId>215</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -25735,8 +25667,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -25753,9 +25683,9 @@
<pageId>232</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -25899,8 +25829,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -25917,11 +25845,11 @@
<pageId>698</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -25938,11 +25866,11 @@
<pageId>699</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -25962,8 +25890,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -26261,8 +26187,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -26279,9 +26203,9 @@
<pageId>720</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -26441,9 +26365,11 @@
<pageId>740</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -26460,7 +26386,9 @@
<pageId>741</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -26604,8 +26532,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -26623,8 +26549,6 @@
<pageId>759</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -26768,8 +26692,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -26786,11 +26708,11 @@
<pageId>770</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -26807,9 +26729,9 @@
<pageId>771</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -27114,9 +27036,11 @@
<pageId>794</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -27133,7 +27057,9 @@
<pageId>795</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -27273,8 +27199,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -27291,9 +27215,9 @@
<pageId>812</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -27435,8 +27359,6 @@
<pageId>134</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -27580,8 +27502,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -27967,8 +27887,6 @@
<pageId>198</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -28112,8 +28030,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -28135,8 +28051,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -28383,8 +28297,6 @@
<pageId>714</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -28528,8 +28440,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -28915,8 +28825,6 @@
<pageId>778</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -29060,8 +28968,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -29083,8 +28989,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -29334,9 +29238,11 @@
<pageId>157</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -29353,7 +29259,9 @@
<pageId>158</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -29482,8 +29390,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -29500,9 +29406,9 @@
<pageId>224</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -29647,9 +29553,11 @@
<pageId>737</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -29666,7 +29574,9 @@
<pageId>738</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -29795,8 +29705,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -29813,9 +29721,9 @@
<pageId>804</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -29944,8 +29852,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -29962,11 +29868,11 @@
<pageId>181</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -29983,9 +29889,9 @@
<pageId>182</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -30130,9 +30036,11 @@
<pageId>211</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -30149,7 +30057,9 @@
<pageId>212</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -30274,8 +30184,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -30292,11 +30200,11 @@
<pageId>761</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -30313,9 +30221,9 @@
<pageId>762</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -30460,9 +30368,11 @@
<pageId>791</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -30479,7 +30389,9 @@
<pageId>792</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -30604,8 +30516,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -30839,8 +30749,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -31090,9 +30998,11 @@
<pageId>154</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -31109,7 +31019,9 @@
<pageId>155</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -31238,8 +31150,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -31259,8 +31169,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -31280,8 +31188,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -31410,8 +31316,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -31428,11 +31332,11 @@
<pageId>187</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -31449,9 +31353,9 @@
<pageId>188</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -31596,9 +31500,11 @@
<pageId>734</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -31615,7 +31521,9 @@
<pageId>735</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -31744,8 +31652,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -31765,8 +31671,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -31786,8 +31690,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -31916,8 +31818,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -31934,9 +31834,9 @@
<pageId>767</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -31953,11 +31853,11 @@
<pageId>768</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -32086,8 +31986,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -32321,8 +32219,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -32556,8 +32452,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -32574,9 +32468,9 @@
<pageId>138</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -32705,8 +32599,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -32723,9 +32615,9 @@
<pageId>230</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -32854,8 +32746,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -32872,9 +32762,9 @@
<pageId>718</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -33003,8 +32893,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -33021,9 +32909,9 @@
<pageId>810</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -33152,8 +33040,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -33170,11 +33056,11 @@
<pageId>184</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -33191,9 +33077,9 @@
<pageId>185</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -33322,8 +33208,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -33340,11 +33224,11 @@
<pageId>764</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -33361,9 +33245,9 @@
<pageId>765</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -33508,9 +33392,11 @@
<pageId>151</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -33527,7 +33413,9 @@
<pageId>152</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -33995,9 +33883,11 @@
<pageId>731</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -34014,7 +33904,9 @@
<pageId>732</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -34481,8 +34373,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -34499,9 +34389,9 @@
<pageId>228</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -34645,8 +34535,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -34663,9 +34551,9 @@
<pageId>808</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -34810,9 +34698,11 @@
<pageId>148</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -34829,7 +34719,9 @@
<pageId>149</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -34973,8 +34865,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -34991,9 +34881,9 @@
<pageId>226</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -35138,9 +35028,11 @@
<pageId>728</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -35157,7 +35049,9 @@
<pageId>729</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -35301,8 +35195,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -35319,9 +35211,9 @@
<pageId>806</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -35466,9 +35358,11 @@
<pageId>145</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -35485,7 +35379,9 @@
<pageId>146</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -35630,9 +35526,11 @@
<pageId>725</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -35649,7 +35547,9 @@
<pageId>726</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -35778,8 +35678,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -35820,9 +35718,9 @@
<pageId>136</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -35967,9 +35865,11 @@
<pageId>142</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -35986,7 +35886,9 @@
<pageId>143</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -36115,8 +36017,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -36157,9 +36057,9 @@
<pageId>716</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -36304,9 +36204,11 @@
<pageId>722</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -36323,7 +36225,9 @@
<pageId>723</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -36467,8 +36371,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world200</subtitle>
@@ -36485,11 +36387,11 @@
<pageId>2</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world200/0</subtitle>
@@ -36506,11 +36408,11 @@
<pageId>3</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world200/1</subtitle>
@@ -36530,8 +36432,6 @@
<siteSearchKeyword>mobile</siteSearchKeyword>
<siteSearchCategory>images</siteSearchCategory>
<siteSearchCount>200</siteSearchCount>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>4</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -36829,8 +36729,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -36847,9 +36745,9 @@
<pageId>24</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -37009,9 +36907,11 @@
<pageId>44</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -37028,7 +36928,9 @@
<pageId>45</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -37172,8 +37074,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -37191,8 +37091,6 @@
<pageId>63</pageId>
<bandwidth />
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -37336,8 +37234,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -37354,11 +37250,11 @@
<pageId>74</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -37375,9 +37271,9 @@
<pageId>75</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -37682,9 +37578,11 @@
<pageId>98</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -37701,7 +37599,9 @@
<pageId>99</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -37841,8 +37741,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -37859,9 +37757,9 @@
<pageId>116</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -38003,8 +37901,6 @@
<pageId>18</pageId>
<bandwidth />
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -38148,8 +38044,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>348</generationTimeMilliseconds>
- <generationTime>0.35s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world204</subtitle>
@@ -38535,8 +38429,6 @@
<pageId>82</pageId>
<bandwidth />
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -38680,8 +38572,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world210</subtitle>
@@ -38703,8 +38593,6 @@
<siteSearchKeyword>analytics</siteSearchKeyword>
<siteSearchCategory />
<siteSearchCount>210</siteSearchCount>
- <generationTimeMilliseconds>1030</generationTimeMilliseconds>
- <generationTime>1.03s</generationTime>
<pageviewPosition>2</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -38954,9 +38842,11 @@
<pageId>41</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -38973,7 +38863,9 @@
<pageId>42</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -39102,8 +38994,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -39149,9 +39039,9 @@
<pageId>108</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -39280,8 +39170,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -39298,11 +39186,11 @@
<pageId>65</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -39319,9 +39207,9 @@
<pageId>66</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -39466,9 +39354,11 @@
<pageId>95</pageId>
+ <pageLoadTime>0.99s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>993</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world209/0</subtitle>
@@ -39485,7 +39375,9 @@
<pageId>96</pageId>
+ <pageLoadTime>1.06s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1061</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world209/1</subtitle>
@@ -39610,8 +39502,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>392</generationTimeMilliseconds>
- <generationTime>0.39s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world201</subtitle>
@@ -39861,9 +39751,11 @@
<pageId>38</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -39880,7 +39772,9 @@
<pageId>39</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -40009,8 +39903,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world205</subtitle>
@@ -40059,8 +39951,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world205/0</subtitle>
@@ -40080,8 +39970,6 @@
<siteSearchKeyword>ecommerce</siteSearchKeyword>
<siteSearchCategory>web</siteSearchCategory>
<siteSearchCount>205</siteSearchCount>
- <generationTimeMilliseconds>585</generationTimeMilliseconds>
- <generationTime>0.59s</generationTime>
<pageviewPosition>3</pageviewPosition>
<icon>plugins/Morpheus/images/search.png</icon>
<iconSVG>plugins/Morpheus/images/search.svg</iconSVG>
@@ -40210,8 +40098,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -40228,11 +40114,11 @@
<pageId>71</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -40249,9 +40135,9 @@
<pageId>72</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -40380,8 +40266,6 @@
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>1249</generationTimeMilliseconds>
- <generationTime>1.25s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world207</subtitle>
@@ -40615,8 +40499,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world202</subtitle>
@@ -40633,9 +40515,9 @@
<pageId>22</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>9831</generationTimeMilliseconds>
- <generationTime>9.83s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world202/0</subtitle>
@@ -40764,8 +40646,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -40782,9 +40662,9 @@
<pageId>114</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -40913,8 +40793,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world206</subtitle>
@@ -40931,11 +40809,11 @@
<pageId>68</pageId>
+ <pageLoadTime>1.02s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>1020</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world206/0</subtitle>
@@ -40952,9 +40830,9 @@
<pageId>69</pageId>
+ <pageLoadTime>0.74s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>984</generationTimeMilliseconds>
- <generationTime>0.98s</generationTime>
+ <pageLoadTimeMilliseconds>741</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world206/1</subtitle>
@@ -41099,9 +40977,11 @@
<pageId>35</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -41118,7 +40998,9 @@
<pageId>36</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -41585,8 +41467,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -41603,9 +41483,9 @@
<pageId>112</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -41750,9 +41630,11 @@
<pageId>32</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -41769,7 +41651,9 @@
<pageId>33</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
@@ -41913,8 +41797,6 @@
<bandwidth />
<timeSpent>360</timeSpent>
<timeSpentPretty>6 min 0s</timeSpentPretty>
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
<pageviewPosition>1</pageviewPosition>
<title>Hello World</title>
<subtitle>http://www.helloworld.com/hello/world211</subtitle>
@@ -41931,9 +41813,9 @@
<pageId>110</pageId>
+ <pageLoadTime>1.35s</pageLoadTime>
<bandwidth />
- <generationTimeMilliseconds>545</generationTimeMilliseconds>
- <generationTime>0.55s</generationTime>
+ <pageLoadTimeMilliseconds>1348</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world211/0</subtitle>
@@ -42078,9 +41960,11 @@
<pageId>29</pageId>
+ <pageLoadTime>1.04s</pageLoadTime>
<bandwidth />
<timeSpent>0</timeSpent>
<timeSpentPretty>0s</timeSpentPretty>
+ <pageLoadTimeMilliseconds>1041</pageLoadTimeMilliseconds>
<pageviewPosition>2</pageviewPosition>
<title>Hello World 0</title>
<subtitle>http://www.helloworld.com/hello/world203/0</subtitle>
@@ -42097,7 +41981,9 @@
<pageId>30</pageId>
+ <pageLoadTime>1.39s</pageLoadTime>
<bandwidth />
+ <pageLoadTimeMilliseconds>1387</pageLoadTimeMilliseconds>
<pageviewPosition>3</pageviewPosition>
<title>Hello World 1</title>
<subtitle>http://www.helloworld.com/hello/world203/1</subtitle>
diff --git a/plugins/PrivacyManager/tests/UI/expected-screenshots/PrivacyManager_gdpr_tools_visits_showprofile.png b/plugins/PrivacyManager/tests/UI/expected-screenshots/PrivacyManager_gdpr_tools_visits_showprofile.png
index 56482809fc..c948051a36 100644
--- a/plugins/PrivacyManager/tests/UI/expected-screenshots/PrivacyManager_gdpr_tools_visits_showprofile.png
+++ b/plugins/PrivacyManager/tests/UI/expected-screenshots/PrivacyManager_gdpr_tools_visits_showprofile.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:49123a9f26e76ecf47d0d2f8e83059a7944b1ebc73d613f83fde8b8c65a07246
-size 327485
+oid sha256:65d262acaa3484c3693ddc7e6653d4d93948bcdb0d4ba0159a7ad8e45e825ae8
+size 331696