diff --git a/packages/spacecat-shared-data-access/CHANGELOG.md b/packages/spacecat-shared-data-access/CHANGELOG.md index fc9dcea97..d04442c70 100644 --- a/packages/spacecat-shared-data-access/CHANGELOG.md +++ b/packages/spacecat-shared-data-access/CHANGELOG.md @@ -1,3 +1,17 @@ +# [@adobe/spacecat-shared-data-access-v1.35.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.35.0...@adobe/spacecat-shared-data-access-v1.35.1) (2024-07-12) + + +### Bug Fixes + +* Fix the getFailedCount function in importJob interface ([#290](https://github.com/adobe/spacecat-shared/issues/290)) ([db4d0cc](https://github.com/adobe/spacecat-shared/commit/db4d0cc754d77d6a32780c48ca45e4b86712bb01)), closes [/github.com/adobe/spacecat-shared/blob/main/packages/spacecat-shared-data-access/src/dto/import-job.js#L39](https://github.com//github.com/adobe/spacecat-shared/blob/main/packages/spacecat-shared-data-access/src/dto/import-job.js/issues/L39) + +# [@adobe/spacecat-shared-data-access-v1.35.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.34.2...@adobe/spacecat-shared-data-access-v1.35.0) (2024-07-11) + + +### Features + +* Add urlCount attribute to import-jobs data model ([#287](https://github.com/adobe/spacecat-shared/issues/287)) ([4fecc4c](https://github.com/adobe/spacecat-shared/commit/4fecc4cb5f31fa0a62cf22ff0ae9e98d4c12b399)) + # [@adobe/spacecat-shared-data-access-v1.34.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.34.1...@adobe/spacecat-shared-data-access-v1.34.2) (2024-07-08) diff --git a/packages/spacecat-shared-data-access/package.json b/packages/spacecat-shared-data-access/package.json index deb45c2ff..529ab14df 100644 --- a/packages/spacecat-shared-data-access/package.json +++ b/packages/spacecat-shared-data-access/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-data-access", - "version": "1.34.2", + "version": "1.35.1", "description": "Shared modules of the Spacecat Services - Data Access", "type": "module", "main": "src/index.js", diff --git a/packages/spacecat-shared-data-access/src/dto/import-job.js b/packages/spacecat-shared-data-access/src/dto/import-job.js index fd8f2f62b..f0883864a 100644 --- a/packages/spacecat-shared-data-access/src/dto/import-job.js +++ b/packages/spacecat-shared-data-access/src/dto/import-job.js @@ -34,6 +34,7 @@ export const ImportJobDto = { endTime: importJob.getEndTime(), duration: importJob.getDuration(), status: importJob.getStatus(), + urlCount: importJob.getUrlCount(), successCount: importJob.getSuccessCount(), failedCount: importJob.getFailedCount(), importQueueId: importJob.getImportQueueId(), @@ -53,6 +54,7 @@ export const ImportJobDto = { endTime: dynamoItem.endTime, duration: dynamoItem.duration, status: dynamoItem.status, + urlCount: dynamoItem.urlCount, successCount: dynamoItem.successCount, failedCount: dynamoItem.failedCount, importQueueId: dynamoItem.importQueueId, diff --git a/packages/spacecat-shared-data-access/src/index.d.ts b/packages/spacecat-shared-data-access/src/index.d.ts index 1350f1ae9..8ee7fab96 100644 --- a/packages/spacecat-shared-data-access/src/index.d.ts +++ b/packages/spacecat-shared-data-access/src/index.d.ts @@ -478,6 +478,11 @@ export interface ImportJob { */ getDuration: () => number; + /** + * Retrieves the url count of the import job. + */ + getUrlCount: () => number; + /** * Retrieves the success count of the import job. */ @@ -486,7 +491,7 @@ export interface ImportJob { /** * Retrieves the failure count of the import job. */ - getFailureCount: () => number; + getFailedCount: () => number; /** * Retrieves the importQueueId of the import job. diff --git a/packages/spacecat-shared-data-access/src/models/importer/import-job.js b/packages/spacecat-shared-data-access/src/models/importer/import-job.js index c461c8386..9520da20b 100644 --- a/packages/spacecat-shared-data-access/src/models/importer/import-job.js +++ b/packages/spacecat-shared-data-access/src/models/importer/import-job.js @@ -11,7 +11,7 @@ */ import { - hasText, isIsoDate, isValidUrl, isObject, isString, isNumber, + hasText, isIsoDate, isValidUrl, isObject, isString, isNumber, isInteger, } from '@adobe/spacecat-shared-utils'; import { Base } from '../base.js'; @@ -37,6 +37,7 @@ const ImportJob = (data) => { self.getEndTime = () => self.state.endTime; self.getDuration = () => self.state.duration; self.getStatus = () => self.state.status; + self.getUrlCount = () => self.state.urlCount; self.getSuccessCount = () => self.state.successCount; self.getFailedCount = () => self.state.failedCount; self.getImportQueueId = () => self.state.importQueueId; @@ -89,13 +90,29 @@ const ImportJob = (data) => { return self; }; + /** + * Updates the Url count of the ImportJob + * @param {number} urlCount - The new url count. + * @returns {ImportJob} The updated ImportJob object. + */ + self.updateUrlCount = (urlCount) => { + if (!isInteger(urlCount)) { + throw new Error(`Invalid url count during update: ${urlCount}`); + } + + self.state.urlCount = urlCount; + self.touch(); + + return self; + }; + /** * Updates the success count of the ImportJob. * @param {number} successCount - The new success count. * @returns {ImportJob} The updated ImportJob object. */ self.updateSuccessCount = (successCount) => { - if (!isNumber(successCount)) { + if (!isInteger(successCount)) { throw new Error(`Invalid success count during update: ${successCount}`); } @@ -111,7 +128,7 @@ const ImportJob = (data) => { * @returns {ImportJob} The updated ImportJob object. */ self.updateFailedCount = (failedCount) => { - if (!isNumber(failedCount)) { + if (!isInteger(failedCount)) { throw new Error(`Invalid failed count during update: ${failedCount}`); } diff --git a/packages/spacecat-shared-data-access/test/unit/models/importer/import-job.test.js b/packages/spacecat-shared-data-access/test/unit/models/importer/import-job.test.js index 41ca1fb03..7c9a08d67 100644 --- a/packages/spacecat-shared-data-access/test/unit/models/importer/import-job.test.js +++ b/packages/spacecat-shared-data-access/test/unit/models/importer/import-job.test.js @@ -76,6 +76,11 @@ describe('ImportJob Model tests', () => { expect(importJob.getDuration()).to.equal(1000); }); + it('updates url count of import job', () => { + importJob.updateUrlCount(10); + expect(importJob.getUrlCount()).to.equal(10); + }); + it('updates success count of import job', () => { importJob.updateSuccessCount(10); expect(importJob.getSuccessCount()).to.equal(10); @@ -111,6 +116,10 @@ describe('ImportJob Model tests', () => { expect(() => importJob.updateFailedCount('invalid-count')).to.throw('Invalid failed count during update: invalid-count'); }); + it('throws an error if url count is not a valid number during an update', () => { + expect(() => importJob.updateUrlCount('invalid-count')).to.throw('Invalid url count during update: invalid-count'); + }); + it('throws an error if import queue id is not a valid string during an update', () => { expect(() => importJob.updateImportQueueId(123)).to.throw('Invalid import queue id during update: 123'); }); diff --git a/packages/spacecat-shared-rum-api-client/CHANGELOG.md b/packages/spacecat-shared-rum-api-client/CHANGELOG.md index a4614a604..9a720f70f 100644 --- a/packages/spacecat-shared-rum-api-client/CHANGELOG.md +++ b/packages/spacecat-shared-rum-api-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-rum-api-client-v2.3.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.2.1...@adobe/spacecat-shared-rum-api-client-v2.3.0) (2024-07-12) + + +### Features + +* audit top pages for language mismatch (SITES-22690) ([#289](https://github.com/adobe/spacecat-shared/issues/289)) ([ec9d83a](https://github.com/adobe/spacecat-shared/commit/ec9d83a9f59ba7c88b2be3181c60290eae132219)) + # [@adobe/spacecat-shared-rum-api-client-v2.2.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.2.0...@adobe/spacecat-shared-rum-api-client-v2.2.1) (2024-07-08) diff --git a/packages/spacecat-shared-rum-api-client/package.json b/packages/spacecat-shared-rum-api-client/package.json index c0871edde..2cc45ad7d 100644 --- a/packages/spacecat-shared-rum-api-client/package.json +++ b/packages/spacecat-shared-rum-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-rum-api-client", - "version": "2.2.1", + "version": "2.3.0", "description": "Shared modules of the Spacecat Services - Rum API client", "type": "module", "main": "src/index.js", diff --git a/packages/spacecat-shared-rum-api-client/src/functions/variant.js b/packages/spacecat-shared-rum-api-client/src/functions/variant.js new file mode 100644 index 000000000..f9fa96a70 --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/src/functions/variant.js @@ -0,0 +1,121 @@ +/* + * Copyright 2024 Adobe. All rights reserved. + * This file is licensed to you under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. You may obtain a copy + * of the License at http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under + * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS + * OF ANY KIND, either express or implied. See the License for the specific language + * governing permissions and limitations under the License. + */ + +import { isObject } from '@adobe/spacecat-shared-utils'; + +const VARIANT_CHECKPOINT = 'variant'; + +function getOrCreateLanguageObject(languageInsights, language) { + let languageObject = languageInsights.find((l) => l.language === language); + + if (isObject(languageObject)) { + return languageObject; + } + + languageObject = { + language, + count: 0, + mismatches: { + type1: { preferredLanguages: {} }, // Type 1 mismatches + type2: { preferredLanguages: {} }, // Type 2 mismatches + type3: { preferredLanguages: {} }, // Type 3 mismatches + }, + regions: {}, // Tracks the count of events for each region + }; + + languageInsights.push(languageObject); + return languageObject; +} + +function handler(bundles) { + const languageInsights = []; + + for (const bundle of bundles) { + let preferredLanguages = []; + let pageLanguage = null; + let userRegion = null; + + for (const event of bundle.events) { + if (event.checkpoint === VARIANT_CHECKPOINT) { + const { target, source } = event; + + if (source === 'preferred-languages') { + preferredLanguages = target.split(',').map((lang) => lang.trim()); + } else if (source === 'page-language') { + pageLanguage = target; + } else if (source === 'user-region') { + userRegion = target; + } + } + } + + if (pageLanguage) { + const languageObject = getOrCreateLanguageObject(languageInsights, pageLanguage); + languageObject.count += 1; // Increment the total count for this page language + + // Type 1 Mismatch: List out each mismatch if the preferred language list + // does not contain the page language + const isType1Mismatch = !preferredLanguages.includes(pageLanguage); + if (isType1Mismatch) { + preferredLanguages.forEach((preferredLanguage) => { + if (!languageObject.mismatches.type1.preferredLanguages[preferredLanguage]) { + languageObject.mismatches.type1.preferredLanguages[preferredLanguage] = 1; + } else { + languageObject.mismatches.type1.preferredLanguages[preferredLanguage] += 1; + } + }); + } + + // Type 2 Mismatch: Count as one mismatch if any preferred language + // is different from page language + const isType2Mismatch = preferredLanguages.some( + (preferredLanguage) => preferredLanguage !== pageLanguage, + ); + if (isType2Mismatch) { + const preferredLanguage = preferredLanguages.join(','); + if (!languageObject.mismatches.type2.preferredLanguages[preferredLanguage]) { + languageObject.mismatches.type2.preferredLanguages[preferredLanguage] = 1; + } else { + languageObject.mismatches.type2.preferredLanguages[preferredLanguage] += 1; + } + } + + // Type 3 Mismatch: Compare each language in preferred language list to page language, + // and count each mismatch + preferredLanguages.forEach((preferredLanguage) => { + if (preferredLanguage !== pageLanguage) { + if (!languageObject.mismatches.type3.preferredLanguages[preferredLanguage]) { + languageObject.mismatches.type3.preferredLanguages[preferredLanguage] = 1; + } else { + languageObject.mismatches.type3.preferredLanguages[preferredLanguage] += 1; + } + } + }); + + // Track regions + if (userRegion) { + if (!languageObject.regions[userRegion]) { + languageObject.regions[userRegion] = 1; + } else { + languageObject.regions[userRegion] += 1; + } + } + } + } + + return languageInsights; +} + +export default { + handler, + checkpoints: VARIANT_CHECKPOINT, +}; diff --git a/packages/spacecat-shared-rum-api-client/src/index.js b/packages/spacecat-shared-rum-api-client/src/index.js index c394c3ceb..9722dec60 100644 --- a/packages/spacecat-shared-rum-api-client/src/index.js +++ b/packages/spacecat-shared-rum-api-client/src/index.js @@ -13,11 +13,13 @@ import { fetchBundles } from './common/rum-bundler-client.js'; import notfound from './functions/404.js'; import cwv from './functions/cwv.js'; import experiment from './functions/experiment.js'; +import variant from './functions/variant.js'; const HANDLERS = { 404: notfound, cwv, experiment, + variant, }; export default class RUMAPIClient { diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json b/packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json new file mode 100644 index 000000000..27df1676b --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/bundles_for_variant.json @@ -0,0 +1,9175 @@ +{ + "rumBundles": [ + { + "id": "NPRrw", + "host": "rum.hlx.page", + "time": "2024-07-08T01:00:23.322Z", + "timeSlot": "2024-07-08T01:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/dog-health/what-does-a-black-lump-on-a-dogs-skin-mean", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 23322 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1794 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1785 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/media_19fe63dcc2ea2fe707004b07ea3623bcc03b4197a.jpeg", + "source": ".hero", + "timeDelta": 1795 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 2009 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12139 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1785 + }, + { + "checkpoint": "loadresource", + "target": 56, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1786 + }, + { + "checkpoint": "loadresource", + "target": 54, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1785 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 1795 + }, + { + "checkpoint": "loadresource", + "target": 40, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1786 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1738 + }, + { + "checkpoint": "leave", + "timeDelta": 32610 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1786 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1783 + }, + { + "checkpoint": "cwv-ttfb", + "value": 193, + "timeDelta": 5278 + }, + { + "checkpoint": "lazy", + "timeDelta": 1737 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2083 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1789 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1785 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1786 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1794 + }, + { + "checkpoint": "cwv", + "timeDelta": 5189 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 400 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1738 + } + ] + }, + { + "id": "Lo", + "host": "rum.hlx.page", + "time": "2024-07-08T01:00:00.574Z", + "timeSlot": "2024-07-08T01:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/acetaminophen-tylenol-for-dogs", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 574 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 3496 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 3489 + }, + { + "checkpoint": "loadresource", + "target": 104, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 3493 + }, + { + "checkpoint": "viewblock", + "source": ".toc", + "timeDelta": 3496 + }, + { + "checkpoint": "error", + "timeDelta": 4189 + }, + { + "checkpoint": "loadresource", + "target": 52, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 4225 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 16688 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/dog-medications-vaccinations/3-medications-you-should-never-give-your-dog", + "source": "#main", + "timeDelta": 110186 + }, + { + "checkpoint": "cwv", + "timeDelta": 7320 + }, + { + "checkpoint": "pagesviewed", + "source": -1, + "timeDelta": 1731 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 3493 + }, + { + "checkpoint": "cwv-ttfb", + "value": 50, + "timeDelta": 7381 + }, + { + "checkpoint": "load", + "timeDelta": 1731 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 17663 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 3418 + }, + { + "checkpoint": "cwv-lcp", + "value": 732, + "timeDelta": 7381, + "source": ".hero", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_1549fc75dd3ac0b8d3780463066ae8c15121786a7.jpeg" + }, + { + "checkpoint": "loadresource", + "target": 87, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3494 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3617 + }, + { + "checkpoint": "lazy", + "timeDelta": 3417 + }, + { + "checkpoint": "loadresource", + "target": 84, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3492 + }, + { + "checkpoint": "loadresource", + "target": 87, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3493 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3496 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 3495 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 14275 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3418 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3494 + }, + { + "checkpoint": "leave", + "timeDelta": 110506 + }, + { + "checkpoint": "cwv-fid", + "value": 20, + "timeDelta": 16595 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3494 + } + ] + }, + { + "id": "DZckmnr", + "host": "rum.hlx.page", + "time": "2024-07-08T02:00:01.200Z", + "timeSlot": "2024-07-08T02:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-care/pit-bull-dog-names", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1200 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1227 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1206 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1207 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1414 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1229 + }, + { + "checkpoint": "pagesviewed", + "source": -1, + "timeDelta": 162 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1219 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1228 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1223 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1224 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1225 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1197 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1203 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1204 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1204 + }, + { + "checkpoint": "loadresource", + "target": 45, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1205 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1206 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1208 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1203 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1225 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1207 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1210 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1219 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1219 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1220 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1221 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1220 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1221 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1223 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1227 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_11297ec1ceb0ec2461e3af69140bf7b3d72763e97.jpeg", + "source": ".hero", + "timeDelta": 1235 + }, + { + "checkpoint": "lazy", + "timeDelta": 1131 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1224 + }, + { + "checkpoint": "error", + "timeDelta": 1426 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1204 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1224 + }, + { + "checkpoint": "top", + "timeDelta": 139 + }, + { + "checkpoint": "load", + "timeDelta": 161 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1234 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1226 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1227 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1228 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1205 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1220 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1228 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1222 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 1235 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1221 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1222 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1202 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1132 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1234 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1229 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1229 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1233 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1132 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1223 + } + ] + }, + { + "id": "KLachn", + "host": "rum.hlx.page", + "time": "2024-07-08T02:00:00.354Z", + "timeSlot": "2024-07-08T02:00:00.000Z", + "url": "https://www.petplace.com/article/cats/breeds/choosing-a-manx", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 356 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 94 + }, + { + "checkpoint": "leave", + "timeDelta": 134643 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "cwv-ttfb", + "value": 49, + "timeDelta": 3422 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 356 + }, + { + "checkpoint": "cwv", + "timeDelta": 3328 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 9694 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 352 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 351 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 353 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 354 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 353 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 357 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 356 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 356 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 356 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/breeds/media_1718b4bb024a278304e6d67a7fd8226482a0ac7eb.jpeg", + "source": ".hero", + "timeDelta": 357 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 329 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 280 + }, + { + "checkpoint": "lazy", + "timeDelta": 279 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 280 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 6967 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 355 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 353 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 353 + } + ] + }, + { + "id": "HIQZp", + "host": "rum.hlx.page", + "time": "2024-07-08T02:00:01.893Z", + "timeSlot": "2024-07-08T02:00:00.000Z", + "url": "https://www.petplace.com/article/birds/general/10-most-common-budgie-diseases", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "enter", + "target": "visible", + "source": "https://duckduckgo.com/", + "timeDelta": 1893 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1898 + }, + { + "checkpoint": "loadresource", + "target": 235, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1903 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1897 + }, + { + "checkpoint": "loadresource", + "target": 71, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1899 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1901 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1902 + }, + { + "checkpoint": "loadresource", + "target": 50, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1900 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1910 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1911 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 3494 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2060 + }, + { + "checkpoint": "error", + "timeDelta": 344 + }, + { + "checkpoint": "leave", + "timeDelta": 70987 + }, + { + "checkpoint": "lazy", + "timeDelta": 1827 + }, + { + "checkpoint": "loadresource", + "target": 73, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1898 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1829 + }, + { + "checkpoint": "error", + "timeDelta": 5117 + }, + { + "checkpoint": "cwv", + "timeDelta": 5137 + }, + { + "checkpoint": "cwv-ttfb", + "value": 97, + "timeDelta": 5180 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12106 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/reptiles/general/media_19e91b84b41025de0c014165fc390a98c1c8cbc19.jpeg", + "source": ".article-navigation", + "timeDelta": 67475 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1864 + }, + { + "checkpoint": "loadresource", + "target": 49, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1900 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/birds/general/media_1ff48f1eaa43170d43f9ce967bf8496a51458e04c.jpeg", + "source": ".hero", + "timeDelta": 1912 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 67425 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 67194 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 13774 + }, + { + "checkpoint": "error", + "target": 113, + "source": "https://www.petplace.com/scripts/adsense.js", + "timeDelta": 5116 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 3309 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 337 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1901 + }, + { + "checkpoint": "error", + "timeDelta": 5118 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1897 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1830 + }, + { + "checkpoint": "loadresource", + "target": 63, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1899 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1902 + }, + { + "checkpoint": "loadresource", + "target": 33, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1896 + } + ] + }, + { + "id": "68z", + "host": "rum.hlx.page", + "time": "2024-07-08T03:00:04.254Z", + "timeSlot": "2024-07-08T03:00:00.000Z", + "url": "https://www.petplace.com/article/category/breeds/cat-breeds", + "userAgent": "desktop:chromeos", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4254 + }, + { + "checkpoint": "cwv", + "timeDelta": 4612 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4972 + }, + { + "checkpoint": "leave", + "timeDelta": 19645 + }, + { + "checkpoint": "cwv-inp", + "value": 8, + "timeDelta": 19652 + }, + { + "checkpoint": "viewblock", + "source": ".popular-tags", + "timeDelta": 1484 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1480 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3113 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1462 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1478 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1464 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1471 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1479 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1466 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1464 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1474 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1479 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1472 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1480 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1481 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1469 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1476 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1478 + }, + { + "checkpoint": "loadresource", + "target": 85, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1646 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1479 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2096 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1472 + }, + { + "checkpoint": "cwv-ttfb", + "value": 252, + "timeDelta": 4673 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1470 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4660 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4623 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 541 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1459 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3004 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3568 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2268 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2764 + }, + { + "checkpoint": "loadresource", + "target": 55, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2831 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1461 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1463 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1460 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1463 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1467 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1468 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1472 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2660 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2712 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1223 + }, + { + "checkpoint": "loadresource", + "target": 33, + "source": "https://www.petplace.com/fragments/popular-tags.plain.html", + "timeDelta": 1461 + }, + { + "checkpoint": "loadresource", + "target": 57, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2898 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/article/cats/breeds/media_14728ff37f996eb6604e8884eb1ed76121d1a2824.jpeg", + "source": ".cards", + "timeDelta": 19577 + }, + { + "checkpoint": "cwv-fid", + "value": 3.7000000029802322, + "timeDelta": 19581 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4543 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2150 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4361 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4878 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1222 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1480 + }, + { + "checkpoint": "lazy", + "timeDelta": 1219 + }, + { + "checkpoint": "cwv-lcp", + "value": 1047.2999999970198, + "timeDelta": 4671, + "source": ".newsletter-signup #sign-up-for-the-petplace-newsletter--get-a-free-month-of-dogtv" + }, + { + "checkpoint": "loadresource", + "target": 31, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2616 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3517 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3161 + }, + { + "checkpoint": "cwv-cls", + "value": 0.923399196523613, + "timeDelta": 4673 + }, + { + "checkpoint": "cwv-lcp", + "value": 1580.5, + "timeDelta": 4672, + "source": ".cards", + "target": "https://www.petplace.com/article/cats/breeds/media_1ed8127404234bf3c1991061cbbcf6177f98c327b.jpeg" + }, + { + "checkpoint": "cwv-lcp", + "value": 597.3999999985099, + "timeDelta": 4670, + "source": "#cat-breeds" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1469 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1471 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 193294 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2214 + }, + { + "checkpoint": "error", + "target": 96, + "source": "https://www.petplace.com/blocks/article-pagination/article-pagination.js", + "timeDelta": 582 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1473 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1466 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3059 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3416 + }, + { + "checkpoint": "loadresource", + "target": 45, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3629 + }, + { + "checkpoint": "cwv-cls", + "value": 0.08692920931661012, + "timeDelta": 193916 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4760 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4710 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1348 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/checklist", + "timeDelta": 1457 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1467 + }, + { + "checkpoint": "loadresource", + "target": 47, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4813 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/", + "source": ".header #nav", + "timeDelta": 221984 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1465 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1476 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1462 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2954 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1475 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1462 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2310 + }, + { + "checkpoint": "loadresource", + "target": 45, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4308 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1481 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1687 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3465 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1474 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1477 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1477 + }, + { + "checkpoint": "loadresource", + "target": 89, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1540 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1475 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4409 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 193412 + }, + { + "checkpoint": "cwv-cls", + "value": 0.04346460465830506, + "timeDelta": 193857 + }, + { + "checkpoint": "cwv-lcp", + "value": 125.79999999701977, + "timeDelta": 193411 + }, + { + "checkpoint": "cwv-fid", + "value": 4.899999998509884, + "timeDelta": 221442 + } + ] + }, + { + "id": "8BC", + "host": "rum.hlx.page", + "time": "2024-07-08T04:00:01.032Z", + "timeSlot": "2024-07-08T04:00:00.000Z", + "url": "https://www.petplace.com/article/horses/general/vaccination-of-horses", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1032 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1031 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1030 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1032 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1033 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1034 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1034 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1046 + }, + { + "checkpoint": "top", + "timeDelta": 97 + }, + { + "checkpoint": "load", + "timeDelta": 144 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1037 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1031 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1038 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1024 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/horses/general/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 1045 + }, + { + "checkpoint": "lazy", + "timeDelta": 995 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 996 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 996 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1041 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1032 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1036 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1046 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1026 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1037 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1038 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1038 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1037 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1040 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1041 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1042 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1027 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1030 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1021 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1023 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1025 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1025 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1027 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1027 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1028 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1028 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1029 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1036 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1026 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1033 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1030 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1039 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1029 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1042 + }, + { + "checkpoint": "pagesviewed", + "source": -4, + "timeDelta": 145 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1041 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1040 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1034 + }, + { + "checkpoint": "error", + "timeDelta": 1156 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1035 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1146 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1033 + } + ] + }, + { + "id": "R", + "host": "rum.hlx.page", + "time": "2024-07-08T04:00:02.671Z", + "timeSlot": "2024-07-08T04:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 2671 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2555 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 2556 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 2692 + }, + { + "checkpoint": "lazy", + "timeDelta": 2552 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 2668 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 2674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 2673 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 2674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 2672 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 2671 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 2671 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 2675 + }, + { + "checkpoint": "viewblock", + "source": ".columns", + "timeDelta": 2677 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 2691 + }, + { + "checkpoint": "top", + "timeDelta": 494 + }, + { + "checkpoint": "load", + "timeDelta": 525 + }, + { + "checkpoint": "pagesviewed", + "source": -7, + "timeDelta": 526 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 2672 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 2672 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 2665 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/blocks/adoptable-pets/adoptable-pets.js", + "timeDelta": 2663 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 2668 + }, + { + "checkpoint": "loadresource", + "target": 51, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2770 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2662 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 2666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 2673 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 2676 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2606 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://24petconnect.com/", + "timeDelta": 2658 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2661 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 2669 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 2675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 2670 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 2667 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2662 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 2664 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/blocks/adoptable-pets/adoptable-pets.css", + "timeDelta": 2663 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 2667 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2661 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 2664 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 2666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 2666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 2670 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 2669 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 2667 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 2669 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 2665 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_1740aa105bbc41052f254093d1112ead04d221c37.jpeg", + "source": ".columns", + "timeDelta": 2679 + }, + { + "checkpoint": "leave", + "timeDelta": 2873 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 2674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 2664 + } + ] + }, + { + "id": "QUWXcn", + "host": "rum.hlx.page", + "time": "2024-07-08T05:00:01.673Z", + "timeSlot": "2024-07-08T05:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_18a976fc2997c2168a9c239c55bb2e8e3494085d3.png", + "source": ".home-banner", + "timeDelta": 1673 + }, + { + "checkpoint": "enter", + "target": "hidden", + "source": "", + "timeDelta": 1168 + }, + { + "checkpoint": "viewblock", + "source": ".home-banner", + "timeDelta": 1672 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1170 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 667 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1169 + }, + { + "checkpoint": "cwv", + "timeDelta": 4224 + }, + { + "checkpoint": "lazy", + "timeDelta": 1124 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1170 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1171 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1125 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1142 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1170 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 1126 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1170 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1170 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1169 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1170 + } + ] + }, + { + "id": "SXfhx", + "host": "rum.hlx.page", + "time": "2024-07-08T05:00:02.839Z", + "timeSlot": "2024-07-08T05:00:00.000Z", + "url": "https://www.petplace.com/search", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 311, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 2839 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 2842 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 2849 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 2844 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 2842 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 2849 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 2848 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2840 + }, + { + "checkpoint": "cwv-fid", + "value": 11.100000001490116, + "timeDelta": 8948 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 8963 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 2841 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "viewblock", + "source": ".search", + "timeDelta": 2879 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 2844 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "loadresource", + "target": 55, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2881 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 2846 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/search", + "timeDelta": 2838 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 2762 + }, + { + "checkpoint": "viewblock", + "source": ".cards", + "timeDelta": 2942 + }, + { + "checkpoint": "cwv-ttfb", + "value": 546.8000000044703, + "timeDelta": 6258 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 2848 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 2847 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 818 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2760 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_19b03997f517db477a2a43e7f3f10a7008c354080.png", + "source": "#main", + "timeDelta": 2880 + }, + { + "checkpoint": "cwv-cls", + "value": 0.21185558014871103, + "timeDelta": 6260 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 2842 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2839 + }, + { + "checkpoint": "loadresource", + "target": 301, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2840 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 2841 + }, + { + "checkpoint": "loadresource", + "target": 124, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2840 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 2844 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 2846 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2831 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 2850 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/", + "source": ".header #nav", + "timeDelta": 11219 + }, + { + "checkpoint": "leave", + "timeDelta": 11258 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 26602 + }, + { + "checkpoint": "cwv-lcp", + "value": 89.69999999552965, + "timeDelta": 26672 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 26673 + }, + { + "checkpoint": "cwv-lcp", + "value": 1268.6000000014901, + "timeDelta": 6256, + "source": "#main", + "target": "https://www.petplace.com/media_19b03997f517db477a2a43e7f3f10a7008c354080.png" + }, + { + "checkpoint": "cwv-inp", + "value": 80, + "timeDelta": 11261 + }, + { + "checkpoint": "nullsearch", + "target": "GROMIT - ID#A586724", + "source": ".search-input", + "timeDelta": 2825 + }, + { + "checkpoint": "lazy", + "timeDelta": 2757 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 2849 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 2841 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 2845 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 2848 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 2843 + }, + { + "checkpoint": "cwv", + "timeDelta": 6159 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 2846 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 2851 + } + ] + }, + { + "id": "Ghj", + "host": "rum.hlx.page", + "time": "2024-07-08T05:00:00.528Z", + "timeSlot": "2024-07-08T05:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/cat-behavior-training/all-about-the-russian-blue-personality", + "userAgent": "mobile:ipados", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 528 + } + ] + }, + { + "id": "6Ugh", + "host": "rum.hlx.page", + "time": "2024-07-08T06:00:07.609Z", + "timeSlot": "2024-07-08T06:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/cat-behavior-training/normal-cat-behavior/perfect-cat-day-whats-ideal-cat-schedule", + "userAgent": "desktop:mac", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 437, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7609 + }, + { + "checkpoint": "acquisition", + "target": "push_traffic", + "source": "owned:push", + "timeDelta": 7586 + }, + { + "checkpoint": "loadresource", + "target": 398, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7604 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 7612 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 7610 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7607 + }, + { + "checkpoint": "loadresource", + "target": 89, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 7593 + }, + { + "checkpoint": "cwv-lcp", + "value": 1368, + "timeDelta": 12185, + "source": ".hero", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/cat-behavior-training/normal-cat-behavior/media_12ff8df21ed52cf2d40df4d6f54ceec3a23af4dbf.jpeg" + }, + { + "checkpoint": "cwv", + "timeDelta": 11925 + }, + { + "checkpoint": "acquisition", + "target": "pushly", + "source": "owned:push", + "timeDelta": 7587 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 7596 + }, + { + "checkpoint": "loadresource", + "target": 400, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7608 + }, + { + "checkpoint": "loadresource", + "target": 531, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7605 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 7603 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 7588 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 7601 + }, + { + "checkpoint": "loadresource", + "target": 259, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 7610 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 7611 + }, + { + "checkpoint": "leave", + "timeDelta": 26982 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 7383 + }, + { + "checkpoint": "lazy", + "timeDelta": 7250 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 7251 + }, + { + "checkpoint": "loadresource", + "target": 238, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 8726 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 877 + }, + { + "checkpoint": "load", + "timeDelta": 3085 + }, + { + "checkpoint": "error", + "timeDelta": 11906 + }, + { + "checkpoint": "cwv-ttfb", + "value": 436, + "timeDelta": 12185 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 7251 + }, + { + "checkpoint": "pagesviewed", + "source": 5, + "timeDelta": 3086 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1094532 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 1098579 + } + ] + }, + { + "id": "KMW", + "host": "rum.hlx.page", + "time": "2024-07-08T06:00:01.128Z", + "timeSlot": "2024-07-08T06:00:00.000Z", + "url": "https://www.petplace.com/article/small-mammals/general/making-a-great-bed-for-your-gerbil", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1128 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1128 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1129 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1117 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1117 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1119 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1122 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1120 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1119 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1113 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1116 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1125 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1127 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1128 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1130 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1133 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/small-mammals/general/media_14ae44a47188ac7a0ff78dc95d2e3e34e3198a48e.jpeg", + "source": ".hero", + "timeDelta": 1132 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1129 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1130 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1123 + }, + { + "checkpoint": "lazy", + "timeDelta": 1046 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1047 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1047 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1132 + }, + { + "checkpoint": "load", + "timeDelta": 232 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1127 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1124 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1130 + }, + { + "checkpoint": "top", + "timeDelta": 205 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1120 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1118 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1119 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1120 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1122 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1124 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1123 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1122 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1115 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1125 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1131 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1124 + }, + { + "checkpoint": "pagesviewed", + "source": 8, + "timeDelta": 233 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1079 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1114 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1115 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1116 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1117 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1237 + }, + { + "checkpoint": "error", + "timeDelta": 1245 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1118 + } + ] + }, + { + "id": "Zt", + "host": "rum.hlx.page", + "time": "2024-07-08T06:00:01.820Z", + "timeSlot": "2024-07-08T06:00:00.000Z", + "url": "https://www.petplace.com/article/cats/just-for-fun/dont-use-sparkys-flea-drops-on-fluffy", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1820 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1819 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1809 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1816 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1742 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1818 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1828 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1825 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1818 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1829 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1811 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1826 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1817 + }, + { + "checkpoint": "lazy", + "timeDelta": 1742 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1808 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1782 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1812 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1824 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1825 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1813 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1830 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1743 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 1806 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1808 + }, + { + "checkpoint": "load", + "timeDelta": 469 + }, + { + "checkpoint": "top", + "timeDelta": 451 + }, + { + "checkpoint": "pagesviewed", + "source": -1, + "timeDelta": 470 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1827 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1821 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1828 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1812 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1813 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1814 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1809 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1811 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1815 + }, + { + "checkpoint": "loadresource", + "target": 5, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1812 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1824 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1821 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1821 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1819 + }, + { + "checkpoint": "error", + "timeDelta": 2223 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2186 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1810 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1815 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1826 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1819 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1822 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1820 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1826 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1816 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1828 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1827 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1831 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/just-for-fun/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 1830 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1814 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1822 + } + ] + }, + { + "id": "14k", + "host": "rum.hlx.page", + "time": "2024-07-08T09:00:00.914Z", + "timeSlot": "2024-07-08T09:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-health/is-my-cats-incision-healing-normally", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 914 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 934 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 932 + }, + { + "checkpoint": "leave", + "timeDelta": 7678 + }, + { + "checkpoint": "error", + "timeDelta": 4052 + }, + { + "checkpoint": "cwv", + "timeDelta": 4062 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 896 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 935 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 933 + }, + { + "checkpoint": "cwv-ttfb", + "value": 209, + "timeDelta": 4096 + }, + { + "checkpoint": "lazy", + "timeDelta": 895 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 929 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 931 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 932 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 310 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 895 + }, + { + "checkpoint": "loadresource", + "target": 14, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 934 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 932 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 933 + }, + { + "checkpoint": "error", + "timeDelta": 4054 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1020 + } + ] + }, + { + "id": "7Datu", + "host": "rum.hlx.page", + "time": "2024-07-08T10:00:04.198Z", + "timeSlot": "2024-07-08T10:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/56255509/PP2323", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 4198 + }, + { + "checkpoint": "load", + "timeDelta": 408 + }, + { + "checkpoint": "top", + "timeDelta": 392 + }, + { + "checkpoint": "loadresource", + "target": 97, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 4199 + }, + { + "checkpoint": "leave", + "timeDelta": 6820 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 4101 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 4192 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 4196 + }, + { + "checkpoint": "loadresource", + "target": 101, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 4199 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 4100 + }, + { + "checkpoint": "pagesviewed", + "source": -7, + "timeDelta": 409 + }, + { + "checkpoint": "cwv", + "timeDelta": 7387 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 4200 + }, + { + "checkpoint": "cwv-ttfb", + "value": 345.00000000000006, + "timeDelta": 7491 + }, + { + "checkpoint": "lazy", + "timeDelta": 4099 + }, + { + "checkpoint": "loadresource", + "target": 92, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 4294 + }, + { + "checkpoint": "viewblock", + "source": ".pet-details", + "timeDelta": 1000145 + } + ] + }, + { + "id": "2AFNx", + "host": "rum.hlx.page", + "time": "2024-07-08T10:00:08.036Z", + "timeSlot": "2024-07-08T10:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-health/cat-health/what-does-an-enlarged-heart-mean-for-cats", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "click", + "source": ".disclosure", + "timeDelta": 8036 + }, + { + "checkpoint": "cwv", + "timeDelta": 4850 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1480 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1553 + }, + { + "checkpoint": "cwv-ttfb", + "value": 92, + "timeDelta": 4894 + }, + { + "checkpoint": "loadresource", + "target": 34, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1550 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1552 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1554 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1556 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1553 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1556 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1575 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-health/cat-health/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 1576 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 1575 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1575 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1551 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1555 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1574 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1556 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 245 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1480 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1516 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 13351 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1556 + }, + { + "checkpoint": "lazy", + "timeDelta": 1479 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 11823 + }, + { + "checkpoint": "loadresource", + "target": 29, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1553 + }, + { + "checkpoint": "leave", + "timeDelta": 94362 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-health/cat-health/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 1576 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1548 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1772 + } + ] + }, + { + "id": "17Nbi", + "host": "rum.hlx.page", + "time": "2024-07-08T11:00:01.691Z", + "timeSlot": "2024-07-08T11:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/just-for-fun/jfk-jr-s-beloved-dog", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1691 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1696 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1698 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1667 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1688 + }, + { + "checkpoint": "loadresource", + "target": 22, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1690 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1693 + }, + { + "checkpoint": "pagesviewed", + "source": 5, + "timeDelta": 379 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1688 + }, + { + "checkpoint": "cwv", + "timeDelta": 4942 + }, + { + "checkpoint": "lazy", + "timeDelta": 1649 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 1650 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 1713 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1691 + }, + { + "checkpoint": "cwv-inp", + "value": 88, + "timeDelta": 10404 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1702 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1706 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1691 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1695 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1684 + }, + { + "checkpoint": "top", + "timeDelta": 349 + }, + { + "checkpoint": "leave", + "timeDelta": 10409 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1687 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1688 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1689 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1697 + }, + { + "checkpoint": "cwv-cls", + "value": 0.015444820068726255, + "timeDelta": 4987 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1695 + }, + { + "checkpoint": "cwv-cls", + "value": 0.09329641313326932, + "timeDelta": 8478 + }, + { + "checkpoint": "load", + "timeDelta": 378 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1650 + }, + { + "checkpoint": "cwv-ttfb", + "value": 257.30000001192093, + "timeDelta": 4986 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1702 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1876 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3652 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1689 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1694 + }, + { + "checkpoint": "loadresource", + "target": 19, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1693 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1699 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1699 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1700 + }, + { + "checkpoint": "loadresource", + "target": 28, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1690 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 435 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1694 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1695 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1701 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1698 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1696 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1697 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1701 + }, + { + "checkpoint": "cwv-lcp", + "value": 512.2000000029802, + "timeDelta": 4985, + "source": ".hero", + "target": "https://www.petplace.com/article/dogs/just-for-fun/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1705 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1700 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 1687 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1704 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1690 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1701 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1705 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1704 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1704 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1702 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1694 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1698 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1696 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1699 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1697 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1700 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1705 + } + ] + }, + { + "id": "PViop", + "host": "rum.hlx.page", + "time": "2024-07-08T12:00:04.453Z", + "timeSlot": "2024-07-08T12:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-care/top-1200-pet-names", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "viewblock", + "source": ".embed", + "timeDelta": 4453 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 2153 + }, + { + "checkpoint": "loadresource", + "target": 79, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2156 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 2163 + }, + { + "checkpoint": "loadresource", + "target": 39, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2421 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 517 + }, + { + "checkpoint": "cwv", + "timeDelta": 5539 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 2164 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_1d9ae98408a0f19a048758ba9818ca8e666b48aed.jpeg", + "source": ".hero", + "timeDelta": 2164 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 9912 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12499 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 17854 + }, + { + "checkpoint": "loadresource", + "target": 59, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 2155 + }, + { + "checkpoint": "lazy", + "timeDelta": 2093 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2155 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2156 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2144 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2157 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 2155 + }, + { + "checkpoint": "loadresource", + "target": 46, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 2157 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2094 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 2095 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2156 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 4456 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-care/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 2165 + }, + { + "checkpoint": "cwv-ttfb", + "value": 252, + "timeDelta": 5591 + }, + { + "checkpoint": "leave", + "timeDelta": 265868 + } + ] + }, + { + "id": "8Rl", + "host": "rum.hlx.page", + "time": "2024-07-08T12:00:01.712Z", + "timeSlot": "2024-07-08T12:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-health/cats-and-mating", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1712 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 1706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "loadresource", + "target": 28, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1719 + }, + { + "checkpoint": "variant", + "target": "en-GB,en-US,en", + "source": "preferred-languages", + "timeDelta": 1675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 1725 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "pagesviewed", + "source": 6, + "timeDelta": 141 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 1725 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "cwv-inp", + "value": 112, + "timeDelta": 32522 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1719 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1713 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1708 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1709 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1709 + }, + { + "checkpoint": "loadresource", + "target": 22, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-health/media_1a20768d2cbe4dd2bb895e471ad63a53f0c22785a.jpeg", + "source": ".hero", + "timeDelta": 1725 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1715 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1712 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1712 + }, + { + "checkpoint": "lazy", + "timeDelta": 1674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "cwv", + "timeDelta": 5035 + }, + { + "checkpoint": "cwv-fid", + "value": 4, + "timeDelta": 6851 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1712 + }, + { + "checkpoint": "cwv-ttfb", + "value": 64.29999995231628, + "timeDelta": 5121 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1717 + }, + { + "checkpoint": "loadresource", + "target": 27, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1979 + }, + { + "checkpoint": "leave", + "timeDelta": 32493 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1712 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1714 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1718 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 1724 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1710 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1687 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "loadresource", + "target": 24, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1712 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1719 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 6930 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 206 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1709 + }, + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1709 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1711 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 14142 + }, + { + "checkpoint": "load", + "timeDelta": 141 + }, + { + "checkpoint": "top", + "timeDelta": 124 + }, + { + "checkpoint": "cwv-lcp", + "value": 400.19999998807907, + "timeDelta": 5120, + "source": ".hero", + "target": "https://www.petplace.com/article/cats/pet-health/media_1a20768d2cbe4dd2bb895e471ad63a53f0c22785a.jpeg" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1716 + }, + { + "checkpoint": "cwv-cls", + "value": 0.06952602222396255, + "timeDelta": 5121 + }, + { + "checkpoint": "loadresource", + "target": 11, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12090 + } + ] + }, + { + "id": "268bi", + "host": "rum.hlx.page", + "time": "2024-07-08T13:00:01.315Z", + "timeSlot": "2024-07-08T13:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/survey", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "lazy", + "timeDelta": 1315 + }, + { + "checkpoint": "load", + "timeDelta": 205 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-9-option-23", + "timeDelta": 28703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 1403 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 24187 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-11-option-29", + "timeDelta": 34645 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-17-option-46", + "timeDelta": 54597 + }, + { + "checkpoint": "pagesviewed", + "source": 4, + "timeDelta": 207 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 1385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 1400 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 48701 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 34635 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-12-option-48", + "timeDelta": 37902 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 159269 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-2-option-5", + "timeDelta": 7460 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 17889 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 1400 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-3-option-10", + "timeDelta": 9690 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 26545 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 1378 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-start", + "timeDelta": 2712 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-8-option-20", + "timeDelta": 26551 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 39675 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 55228 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 153208 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 184965 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-13-option-35", + "timeDelta": 39686 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 51906 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 1379 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-14-option-50", + "timeDelta": 45537 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 62112 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-16-option-44", + "timeDelta": 51185 + }, + { + "checkpoint": "loadresource", + "target": 88, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1335 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 31959 + }, + { + "checkpoint": "loadresource", + "target": 82, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1335 + }, + { + "checkpoint": "click", + "source": ".pet-survey .button", + "timeDelta": 11484 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-10-option-27", + "timeDelta": 31260 + }, + { + "checkpoint": "click", + "source": ".footer", + "timeDelta": 75003 + }, + { + "checkpoint": "loadresource", + "target": 86, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1558 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-7-option-13", + "timeDelta": 23385 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 37892 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1316 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 1383 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 1379 + }, + { + "checkpoint": "cwv", + "timeDelta": 4586 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 23377 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 183882 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 20227 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1335 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 4600 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-2-option-5", + "timeDelta": 4815 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 27375 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 40381 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 184285 + }, + { + "checkpoint": "viewblock", + "source": ".pet-survey", + "timeDelta": 1336 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 8413 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 45528 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 47911 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 51176 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-back", + "timeDelta": 162992 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 38906 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 75748 + }, + { + "checkpoint": "leave", + "timeDelta": 92710 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 1400 + }, + { + "checkpoint": "cwv-inp", + "value": 72, + "timeDelta": 92706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 28694 + }, + { + "checkpoint": "top", + "timeDelta": 118 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 1402 + }, + { + "checkpoint": "click", + "source": ".pet-survey #dog-survey-form", + "timeDelta": 60234 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 147587 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 184085 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 4807 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 182893 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 31251 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 146223 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 183488 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 1316 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/dogs/55632124/PP20156", + "timeDelta": 1334 + }, + { + "checkpoint": "cwv-fid", + "value": 9.5, + "timeDelta": 4597 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/survey", + "source": ".pet-survey #dog-survey-form", + "timeDelta": 141484 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 46156 + }, + { + "checkpoint": "cwv-ttfb", + "value": 8.099999964237213, + "timeDelta": 4600 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 1380 + }, + { + "checkpoint": "cwv-lcp", + "value": 1061, + "timeDelta": 4599, + "source": ".pet-survey" + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 6717 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-2-option-6", + "timeDelta": 6725 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-multi-select-question-4-options", + "timeDelta": 16926 + }, + { + "checkpoint": "click", + "source": ".pet-survey form input[type='checkbox']#pet-survey-summary-agreement", + "timeDelta": 60242 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 1385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 1403 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 1402 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 7449 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 1384 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 1386 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 9683 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-15-option-42", + "timeDelta": 47919 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1331 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 159811 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 1387 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 1385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 1375 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 1402 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 10457 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 35577 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 29305 + }, + { + "checkpoint": "click", + "source": ".pet-survey", + "timeDelta": 54587 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 154827 + }, + { + "checkpoint": "loadresource", + "target": 79, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1410 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 1401 + }, + { + "checkpoint": "click", + "source": ".pet-survey #survey-question-4-option-BEAGLE", + "timeDelta": 16935 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 156061 + }, + { + "checkpoint": "click", + "source": ".pet-survey #pet-survey-next", + "timeDelta": 171500 + }, + { + "checkpoint": "click", + "source": ".pet-survey form button#pet-survey-summary-inquiry", + "timeDelta": 151224 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 157604 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 158467 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 160753 + }, + { + "checkpoint": "click", + "source": ".header #nav", + "timeDelta": 189838 + }, + { + "checkpoint": "click", + "source": ".footer", + "timeDelta": 180049 + } + ] + }, + { + "id": "7Lb", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:00.375Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 375 + }, + { + "checkpoint": "load", + "timeDelta": 381 + }, + { + "checkpoint": "pagesviewed", + "source": -2, + "timeDelta": 382 + } + ] + }, + { + "id": "AMTWhm", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:03.289Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 3289 + }, + { + "checkpoint": "cwv", + "timeDelta": 6311 + }, + { + "checkpoint": "click", + "source": ".columns #breed", + "timeDelta": 7894 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3354 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#labradorretriever", + "timeDelta": 109931 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3289 + }, + { + "checkpoint": "load", + "timeDelta": 89 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3354 + }, + { + "checkpoint": "viewblock", + "source": ".columns", + "timeDelta": 3355 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#poodle-standard", + "timeDelta": 131438 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#bichonfrise", + "timeDelta": 18598 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#welshcorgi-pembroke", + "timeDelta": 158399 + }, + { + "checkpoint": "lazy", + "timeDelta": 3288 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_1740aa105bbc41052f254093d1112ead04d221c37.jpeg", + "source": ".columns", + "timeDelta": 3355 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='radio']#radio-Dog", + "timeDelta": 6922 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#cairnterrier", + "timeDelta": 27814 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3354 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://ws.petango.com/", + "timeDelta": 3353 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 26860 + }, + { + "checkpoint": "viewblock", + "source": ".adoptable-pets", + "timeDelta": 171285 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#manchesterterrier", + "timeDelta": 114348 + }, + { + "checkpoint": "pagesviewed", + "source": -3, + "timeDelta": 90 + }, + { + "checkpoint": "top", + "timeDelta": 82 + }, + { + "checkpoint": "cwv-ttfb", + "value": 60, + "timeDelta": 6400 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#norfolkterrier", + "timeDelta": 121068 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3341 + }, + { + "checkpoint": "loadresource", + "target": 5, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3354 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3354 + }, + { + "checkpoint": "click", + "source": ".columns form fieldset", + "timeDelta": 6919 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#mixedbreed", + "timeDelta": 165382 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#chihuahua-smoothcoated", + "timeDelta": 69966 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_19055ae663201d30bd6c54037a1c21778963d9cd6.png", + "source": ".columns", + "timeDelta": 166470 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#irishwolfhound", + "timeDelta": 104803 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#poodle-miniature", + "timeDelta": 130498 + }, + { + "checkpoint": "leave", + "timeDelta": 173287 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#cotondetulear", + "timeDelta": 41495 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#westhighlandwhiteterrier", + "timeDelta": 153430 + }, + { + "checkpoint": "viewblock", + "source": ".columns", + "timeDelta": 167335 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 164538 + }, + { + "checkpoint": "click", + "source": ".columns form button#breed-button", + "timeDelta": 8978 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_11ef8bbdb27610ca89544f13cb758c18f2e3e5a37.png", + "source": ".columns", + "timeDelta": 167585 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#grandbassetgriffonvendeen", + "timeDelta": 95148 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 163540 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#dandiedinmontterrier", + "timeDelta": 48383 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#englishcockerspaniel", + "timeDelta": 87166 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 157363 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#dachshund", + "timeDelta": 44095 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#poodle-toy", + "timeDelta": 132615 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#yorkshireterrier", + "timeDelta": 163171 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/pet-adoption/media_1b6be49e41bdc8633b714890daaee460efac10412.png", + "source": ".columns", + "timeDelta": 169341 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#welshcorgi-cardigan", + "timeDelta": 157101 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/checklist", + "source": ".columns .button", + "timeDelta": 173205 + }, + { + "checkpoint": "click", + "source": ".columns form input[type='checkbox']#cockerspaniel", + "timeDelta": 78031 + }, + { + "checkpoint": "click", + "source": ".columns #breeds", + "timeDelta": 153427 + } + ] + }, + { + "id": "04DLan", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:00.088Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/search", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 88 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 88 + }, + { + "checkpoint": "pagesviewed", + "source": 167, + "timeDelta": 10 + }, + { + "checkpoint": "lazy", + "timeDelta": 87 + }, + { + "checkpoint": "error", + "timeDelta": 105 + }, + { + "checkpoint": "error", + "timeDelta": 105 + }, + { + "checkpoint": "top", + "timeDelta": 7 + } + ] + }, + { + "id": "07GOan", + "host": "rum.hlx.page", + "time": "2024-07-08T14:00:03.661Z", + "timeSlot": "2024-07-08T14:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/A1018504/CCST", + "userAgent": "mobile:android", + "weight": 10000, + "events": [ + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/search", + "timeDelta": 3661 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3671 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 3683 + }, + { + "checkpoint": "leave", + "timeDelta": 35928 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 3690 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 3296 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 3699 + }, + { + "checkpoint": "lazy", + "timeDelta": 3294 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3296 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3334 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 3675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 3703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 3693 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 3701 + }, + { + "checkpoint": "cwv-ttfb", + "value": 1854.1999999955297, + "timeDelta": 6555 + }, + { + "checkpoint": "cwv-lcp", + "value": 3261.6999999955297, + "timeDelta": 6550, + "source": ".pet-details" + }, + { + "checkpoint": "load", + "timeDelta": 1974 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3668 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 3673 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3671 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3670 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 3679 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 3672 + }, + { + "checkpoint": "cwv", + "timeDelta": 6482 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 6556 + }, + { + "checkpoint": "cwv-lcp", + "value": 3333.89999999851, + "timeDelta": 6553, + "source": ".pet-details" + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 3681 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 3679 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 3692 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 3685 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 3698 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 3689 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 3704 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 3684 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 3699 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 3697 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 3695 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 3691 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 3703 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 3693 + }, + { + "checkpoint": "top", + "timeDelta": 1963 + }, + { + "checkpoint": "pagesviewed", + "source": -13, + "timeDelta": 1975 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 3674 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 3675 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 3682 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 3680 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 3687 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 3700 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 3680 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 3682 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 3688 + }, + { + "checkpoint": "loadresource", + "target": 15, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3666 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 3696 + } + ] + }, + { + "id": "ADkp", + "host": "rum.hlx.page", + "time": "2024-07-08T15:00:02.378Z", + "timeSlot": "2024-07-08T15:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/56228789/PP556", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2378 + }, + { + "checkpoint": "top", + "timeDelta": 549 + }, + { + "checkpoint": "load", + "timeDelta": 1605 + }, + { + "checkpoint": "pagesviewed", + "source": -4, + "timeDelta": 1606 + }, + { + "checkpoint": "cwv", + "timeDelta": 5430 + }, + { + "checkpoint": "loadresource", + "target": 31, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2378 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 2322 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2322 + }, + { + "checkpoint": "lazy", + "timeDelta": 2322 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://ws.petango.com/", + "timeDelta": 2377 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 15654 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2358 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2379 + }, + { + "checkpoint": "leave", + "timeDelta": 10594 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2379 + }, + { + "checkpoint": "cwv-ttfb", + "value": 458, + "timeDelta": 5474 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 17948 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2424 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 13766 + }, + { + "checkpoint": "click", + "source": ".pet-details #56228789", + "timeDelta": 9070 + } + ] + }, + { + "id": "2068678001-1720453249195-c80b7f822a9ee", + "host": "rum.hlx.page", + "time": "2024-07-08T15:00:49.000Z", + "timeSlot": "2024-07-08T15:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/your-guide-to-common-dog-poisonings", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "sidekick:shown", + "source": "https://www.petplace.com/article/dogs/pet-health/your-guide-to-common-dog-poisonings", + "timeDelta": 49000 + }, + { + "checkpoint": "sidekick:loaded", + "target": "windows:chrome:extension", + "source": "https://www.petplace.com/article/dogs/pet-health/your-guide-to-common-dog-poisonings", + "timeDelta": 49000 + } + ] + }, + { + "id": "Viq", + "host": "rum.hlx.page", + "time": "2024-07-08T15:00:31.912Z", + "timeSlot": "2024-07-08T15:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/amoxicillin-for-dogs-and-cats", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 31912 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 6612 + }, + { + "checkpoint": "cwv", + "timeDelta": 11372 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 31917 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 31909 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 31918 + }, + { + "checkpoint": "loadresource", + "target": 149, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 31895 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 6631 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 31925 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 31922 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 31908 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 31922 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 31905 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 31905 + }, + { + "checkpoint": "leave", + "timeDelta": 40392 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 103606 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 31920 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 31914 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 31924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 31903 + }, + { + "checkpoint": "loadresource", + "target": 209, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 31896 + }, + { + "checkpoint": "loadresource", + "target": 180, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 31897 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 31910 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_1f51af83c0034c69ffa46deb71514a1574a44a9a3.png", + "source": ".article-navigation", + "timeDelta": 103706 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 31911 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 31907 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 31920 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 31912 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 103689 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 6611 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 31908 + }, + { + "checkpoint": "loadresource", + "target": 169, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 31899 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 31913 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 31903 + }, + { + "checkpoint": "loadresource", + "target": 151, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 31894 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 31901 + }, + { + "checkpoint": "loadresource", + "target": 167, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 31900 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 31919 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 31916 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 31921 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 31904 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 31891 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 31906 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 31918 + }, + { + "checkpoint": "loadresource", + "target": 168, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 31898 + }, + { + "checkpoint": "cwv-ttfb", + "value": 37.59999990463257, + "timeDelta": 63097 + }, + { + "checkpoint": "enter", + "target": "hidden", + "source": "https://www.google.com/", + "timeDelta": 31885 + }, + { + "checkpoint": "loadresource", + "target": 154, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 31898 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 31923 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 501 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 31915 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 31913 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 31924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 31902 + }, + { + "checkpoint": "cwv-inp", + "value": 8, + "timeDelta": 92356 + }, + { + "checkpoint": "lazy", + "timeDelta": 6610 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 31915 + } + ] + }, + { + "id": "0BFhm", + "host": "rum.hlx.page", + "time": "2024-07-08T16:00:00.262Z", + "timeSlot": "2024-07-08T16:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "desktop:windows", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 262 + } + ] + }, + { + "id": "CNTy", + "host": "rum.hlx.page", + "time": "2024-07-08T16:00:05.207Z", + "timeSlot": "2024-07-08T16:00:00.000Z", + "url": "https://www.petplace.com/article/cats/vet-qa-parent/vet-qa/why-does-my-cat-wiggle-the-top-of-his-bum-with-his-tail-straight-up-in-the-air", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "cwv-ttfb", + "value": 1071, + "timeDelta": 5207 + }, + { + "checkpoint": "reload", + "target": "visible", + "source": "https://www.petplace.com/article/cats/vet-qa-parent/vet-qa/why-does-my-cat-wiggle-the-top-of-his-bum-with-his-tail-straight-up-in-the-air", + "timeDelta": 1988 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1995 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1998 + }, + { + "checkpoint": "loadresource", + "target": 16, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1994 + }, + { + "checkpoint": "loadresource", + "target": 9, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 1992 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1996 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1994 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1993 + }, + { + "checkpoint": "loadresource", + "target": 5, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1995 + }, + { + "checkpoint": "top", + "timeDelta": 1225 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2099 + }, + { + "checkpoint": "loadresource", + "target": 18, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 1992 + }, + { + "checkpoint": "cwv", + "timeDelta": 5164 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1996 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1998 + }, + { + "checkpoint": "leave", + "timeDelta": 10619 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1936 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1996 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1997 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1991 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1995 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 1999 + }, + { + "checkpoint": "load", + "timeDelta": 1247 + }, + { + "checkpoint": "pagesviewed", + "source": 3, + "timeDelta": 1248 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1992 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 2006 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1986 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 1299 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 1997 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/vet-qa-parent/vet-qa/media_13640684c2505ca295e2b2fcf72a18ddf41cd458e.png", + "source": ".hero", + "timeDelta": 2007 + }, + { + "checkpoint": "lazy", + "timeDelta": 1936 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 1937 + }, + { + "checkpoint": "loadresource", + "target": 20, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1999 + } + ] + }, + { + "id": "038EKny", + "host": "rum.hlx.page", + "time": "2024-07-08T17:00:01.200Z", + "timeSlot": "2024-07-08T17:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/just-for-fun/preventing-dog-bites-things-to-do-before-you-get-a-dog", + "userAgent": "desktop:windows", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1200 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 126 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 936 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 936 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 936 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 932 + }, + { + "checkpoint": "loadresource", + "target": 37, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 922 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 916 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 938 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 897 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 920 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 938 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 938 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 938 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 939 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 935 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/just-for-fun/media_10f404714b5463cd5fded71802a46d9813a561d4f.jpeg", + "source": ".hero", + "timeDelta": 940 + }, + { + "checkpoint": "lazy", + "timeDelta": 896 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 928 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 936 + }, + { + "checkpoint": "top", + "timeDelta": 79 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 923 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 927 + }, + { + "checkpoint": "leave", + "timeDelta": 3359 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 924 + }, + { + "checkpoint": "pagesviewed", + "source": 870, + "timeDelta": 124 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 930 + }, + { + "checkpoint": "load", + "timeDelta": 123 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 914 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 929 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 939 + }, + { + "checkpoint": "variant", + "target": "en-US,en", + "source": "preferred-languages", + "timeDelta": 898 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 926 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 937 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 940 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 935 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 935 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 940 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 931 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 930 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 925 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 919 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 924 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 934 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 938 + }, + { + "checkpoint": "loadresource", + "target": 48, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 927 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 930 + }, + { + "checkpoint": "loadresource", + "target": 6, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 923 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 934 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 932 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 935 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 928 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 926 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 931 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 934 + } + ] + }, + { + "id": "AB", + "host": "rum.hlx.page", + "time": "2024-07-08T17:00:01.797Z", + "timeSlot": "2024-07-08T17:00:00.000Z", + "url": "https://www.petplace.com/pet-adoption/dogs/38660912/81870", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 1797 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 1797 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 1734 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 1734 + }, + { + "checkpoint": "lazy", + "timeDelta": 1733 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 1793 + }, + { + "checkpoint": "loadresource", + "target": 8, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 1796 + }, + { + "checkpoint": "cwv-ttfb", + "value": 101, + "timeDelta": 4804 + }, + { + "checkpoint": "load", + "timeDelta": 139 + }, + { + "checkpoint": "top", + "timeDelta": 134 + }, + { + "checkpoint": "pagesviewed", + "source": -6, + "timeDelta": 140 + }, + { + "checkpoint": "viewblock", + "source": ".pet-details", + "timeDelta": 4736 + }, + { + "checkpoint": "cwv", + "timeDelta": 4745 + }, + { + "checkpoint": "leave", + "timeDelta": 22306 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 1797 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/search", + "timeDelta": 1796 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 1797 + } + ] + }, + { + "id": "26Oj", + "host": "rum.hlx.page", + "time": "2024-07-08T18:00:03.402Z", + "timeSlot": "2024-07-08T18:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/joint-effusion-swelling-in-dogs", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 30, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3402 + }, + { + "checkpoint": "cwv-cls", + "value": 0.050889726137767516, + "timeDelta": 6898 + }, + { + "checkpoint": "loadresource", + "target": 150, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3400 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 3405 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3402 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 3422 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 3406 + }, + { + "checkpoint": "cwv-fid", + "value": 5, + "timeDelta": 10548 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 3426 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3427 + }, + { + "checkpoint": "loadresource", + "target": 35, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3400 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 3416 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/media_11194471a09e31b5d6eabd0a72c74fde47a4d467a.png", + "source": ".hero", + "timeDelta": 3425 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 3413 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 3414 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 3407 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 3420 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 3412 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 3414 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 3418 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 3419 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 3405 + }, + { + "checkpoint": "lazy", + "timeDelta": 3324 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 3421 + }, + { + "checkpoint": "leave", + "timeDelta": 109116 + }, + { + "checkpoint": "viewblock", + "source": ".toc", + "timeDelta": 4211 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 448 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 3397 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 3410 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 3416 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 3422 + }, + { + "checkpoint": "loadresource", + "target": 28, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3395 + }, + { + "checkpoint": "loadresource", + "target": 148, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3397 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 3403 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 3396 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 16027 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3398 + }, + { + "checkpoint": "cwv-inp", + "value": 208, + "timeDelta": 109110 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 3327 + }, + { + "checkpoint": "loadresource", + "target": 42, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3399 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 3420 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 3409 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 3417 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 3410 + }, + { + "checkpoint": "cwv-ttfb", + "value": 275.09999999962747, + "timeDelta": 6897 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 3359 + }, + { + "checkpoint": "cwv-lcp", + "value": 713.4000000003725, + "timeDelta": 6896, + "source": ".hero", + "target": "https://www.petplace.com/article/dogs/pet-health/media_11194471a09e31b5d6eabd0a72c74fde47a4d467a.png" + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 10711 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 3419 + }, + { + "checkpoint": "loadresource", + "target": 26, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 3403 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 3411 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 3409 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 3408 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 3407 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 3408 + }, + { + "checkpoint": "variant", + "target": "en-GB,en-US,en", + "source": "preferred-languages", + "timeDelta": 3328 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 3404 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3714 + }, + { + "checkpoint": "cwv", + "timeDelta": 6838 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 3553 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 3412 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 3404 + }, + { + "checkpoint": "loadresource", + "target": 38, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3399 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 3413 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 3415 + }, + { + "checkpoint": "loadresource", + "target": 25, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3401 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 3417 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 3393 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 14003 + } + ] + }, + { + "id": "VXahx", + "host": "rum.hlx.page", + "time": "2024-07-08T20:00:02.381Z", + "timeSlot": "2024-07-08T20:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/12-things-you-may-not-know-about-cat-death", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 2381 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 2379 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 2382 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 2384 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 2385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 2383 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 2385 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 2377 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 2375 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 2381 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 2378 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 2377 + }, + { + "checkpoint": "loadresource", + "target": 51, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 2371 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 2385 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 2369 + }, + { + "checkpoint": "loadresource", + "target": 47, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 2372 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 2371 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 2372 + }, + { + "checkpoint": "loadresource", + "target": 36, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 2373 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 565 + }, + { + "checkpoint": "variant", + "target": "en_CA", + "source": "user-region", + "timeDelta": 2333 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 2383 + }, + { + "checkpoint": "loadresource", + "target": 83, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 2812 + }, + { + "checkpoint": "loadresource", + "target": 48, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 2373 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 2375 + }, + { + "checkpoint": "cwv-lcp", + "value": 792.6999999880791, + "timeDelta": 5987, + "source": ".hero", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_1810472fd85e1e46279cb87e03b76883084ce50a2.jpeg" + }, + { + "checkpoint": "cwv-cls", + "value": 0.06395546640397946, + "timeDelta": 5988 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 2382 + }, + { + "checkpoint": "cwv", + "timeDelta": 5919 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 15390 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 2374 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 2376 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 2376 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 2379 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 2378 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 2386 + }, + { + "checkpoint": "cwv-fid", + "value": 3.300000011920929, + "timeDelta": 15375 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 2376 + }, + { + "checkpoint": "loadresource", + "target": 41, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 2372 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 2374 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 2380 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_10701ca0fa7ab29ad3991894f2c54a2dd5eff8a6e.png", + "source": ".article-navigation", + "timeDelta": 45837 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 12873 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 45819 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 2377 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2281 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 43612 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 2379 + }, + { + "checkpoint": "leave", + "timeDelta": 47578 + }, + { + "checkpoint": "loadresource", + "target": 47, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 2373 + }, + { + "checkpoint": "lazy", + "timeDelta": 2280 + }, + { + "checkpoint": "variant", + "target": "en-CA,en-GB,en-US,en", + "source": "preferred-languages", + "timeDelta": 2281 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 2384 + }, + { + "checkpoint": "cwv-inp", + "value": 48, + "timeDelta": 47564 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 2384 + } + ] + }, + { + "id": "Jqu", + "host": "rum.hlx.page", + "time": "2024-07-08T22:00:04.513Z", + "timeSlot": "2024-07-08T22:00:00.000Z", + "url": "https://www.petplace.com/article/dogs/pet-health/dog-health/dog-diseases-symptoms/symptoms-and-causes-of-nausea-in-dogs", + "userAgent": "mobile:ios", + "weight": 10000, + "events": [ + { + "checkpoint": "loadresource", + "target": 150, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4513 + }, + { + "checkpoint": "lazy", + "timeDelta": 4444 + }, + { + "checkpoint": "loadresource", + "target": 77, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 4509 + }, + { + "checkpoint": "loadresource", + "target": 63, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4514 + }, + { + "checkpoint": "loadresource", + "target": 70, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4518 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 16714 + }, + { + "checkpoint": "loadresource", + "target": 67, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4514 + }, + { + "checkpoint": "cwv-ttfb", + "value": 187, + "timeDelta": 8094 + }, + { + "checkpoint": "loadresource", + "target": 124, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4510 + }, + { + "checkpoint": "click", + "source": ".button", + "timeDelta": 11536 + }, + { + "checkpoint": "loadresource", + "target": 7, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 15049 + }, + { + "checkpoint": "load", + "timeDelta": 502 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 4509 + }, + { + "checkpoint": "loadresource", + "target": 58, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 4510 + }, + { + "checkpoint": "loadresource", + "target": 180, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4511 + }, + { + "checkpoint": "loadresource", + "target": 70, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 4879 + }, + { + "checkpoint": "loadresource", + "target": 76, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4511 + }, + { + "checkpoint": "loadresource", + "target": 104, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4517 + }, + { + "checkpoint": "leave", + "timeDelta": 159117 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 575 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 4446 + }, + { + "checkpoint": "loadresource", + "target": 75, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4516 + }, + { + "checkpoint": "loadresource", + "target": 71, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4516 + }, + { + "checkpoint": "loadresource", + "target": 58, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4515 + }, + { + "checkpoint": "top", + "timeDelta": 351 + }, + { + "checkpoint": "loadresource", + "target": 65, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4512 + }, + { + "checkpoint": "loadresource", + "target": 50, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4518 + }, + { + "checkpoint": "variant", + "target": "en-GB", + "source": "preferred-languages", + "timeDelta": 4446 + }, + { + "checkpoint": "loadresource", + "target": 48, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 4520 + }, + { + "checkpoint": "loadresource", + "target": 113, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 4520 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 13434 + }, + { + "checkpoint": "viewblock", + "source": ".article-navigation", + "timeDelta": 157292 + }, + { + "checkpoint": "loadresource", + "target": 73, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4515 + }, + { + "checkpoint": "loadresource", + "target": 69, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4516 + }, + { + "checkpoint": "pagesviewed", + "source": -7, + "timeDelta": 503 + }, + { + "checkpoint": "viewblock", + "source": ".disclosure", + "timeDelta": 153753 + }, + { + "checkpoint": "loadresource", + "target": 43, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4519 + }, + { + "checkpoint": "loadresource", + "target": 75, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4513 + }, + { + "checkpoint": "cwv", + "timeDelta": 8030 + }, + { + "checkpoint": "loadresource", + "target": 65, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4514 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 4519 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 4527 + }, + { + "checkpoint": "loadresource", + "target": 373, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4512 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 4506 + }, + { + "checkpoint": "loadresource", + "target": 68, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 4517 + }, + { + "checkpoint": "viewblock", + "source": ".popular-articles", + "timeDelta": 157197 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 4519 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/dogs/pet-health/dog-health/media_170fba30426d5874f726c4976fc17dcfad78364a7.jpeg", + "source": ".article-navigation", + "timeDelta": 157324 + } + ] + }, + { + "id": "fgmw", + "host": "rum.hlx.page", + "time": "2024-07-08T22:00:00.810Z", + "timeSlot": "2024-07-08T22:00:00.000Z", + "url": "https://www.petplace.com/", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 810 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 812 + }, + { + "checkpoint": "cwv-ttfb", + "value": 308, + "timeDelta": 3590 + }, + { + "checkpoint": "leave", + "timeDelta": 8954 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 495 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 809 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/pet-adoption/dogs/55383651/PP5961", + "timeDelta": 805 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 808 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 810 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 811 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 812 + }, + { + "checkpoint": "viewblock", + "source": ".panel-cards", + "timeDelta": 1756 + }, + { + "checkpoint": "click", + "target": "https://www.petplace.com/pet-adoption/", + "source": ".panel-cards .button", + "timeDelta": 8835 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_156820c901b3a90bfe46c54a77922ffcc05bc3879.png", + "source": ".panel-cards", + "timeDelta": 1572 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 454 + }, + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 390 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_15a172cf68bada7e2e72a3462bff76c7fa2a399d6.png", + "source": ".panel-cards", + "timeDelta": 2489 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_1ca5cf4ec1a1feeb96f663ff536ac736fc61401b3.png", + "source": ".panel-cards", + "timeDelta": 2023 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/media_18a976fc2997c2168a9c239c55bb2e8e3494085d3.png", + "source": ".home-banner", + "timeDelta": 815 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 454 + }, + { + "checkpoint": "lazy", + "timeDelta": 453 + }, + { + "checkpoint": "cwv", + "timeDelta": 3504 + }, + { + "checkpoint": "loadresource", + "target": 10, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 808 + }, + { + "checkpoint": "viewblock", + "source": ".home-banner", + "timeDelta": 814 + }, + { + "checkpoint": "loadresource", + "target": 4, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 811 + } + ] + }, + { + "id": "IPYop", + "host": "rum.hlx.page", + "time": "2024-07-08T23:00:03.474Z", + "timeSlot": "2024-07-08T23:00:00.000Z", + "url": "https://www.petplace.com/article/cats/pet-behavior-training/why-do-cats-smell-other-cats-butts", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 3474 + }, + { + "checkpoint": "loadresource", + "target": 31, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 3010 + }, + { + "checkpoint": "loadresource", + "target": 13, + "source": "https://www.petplace.com/fragments/disclosure.plain.html", + "timeDelta": 3007 + }, + { + "checkpoint": "error", + "timeDelta": 466 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 2886 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 2957 + }, + { + "checkpoint": "error", + "timeDelta": 466 + }, + { + "checkpoint": "cwv", + "timeDelta": 6538 + }, + { + "checkpoint": "lazy", + "timeDelta": 2884 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_13643969d1ac44e11703d240d527cf39dc03c7892.jpeg", + "source": ".article-author", + "timeDelta": 3016 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 45827 + }, + { + "checkpoint": "loadresource", + "target": 32, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 3010 + }, + { + "checkpoint": "loadresource", + "target": 21, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 3011 + }, + { + "checkpoint": "loadresource", + "target": 126, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 3008 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 3015 + }, + { + "checkpoint": "loadresource", + "target": 250, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 3009 + }, + { + "checkpoint": "loadresource", + "target": 23, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 3007 + }, + { + "checkpoint": "loadresource", + "target": 17, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 3009 + }, + { + "checkpoint": "loadresource", + "target": 44, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 3008 + }, + { + "checkpoint": "cwv-ttfb", + "value": 260, + "timeDelta": 6667 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 48845 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 2887 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 3015 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "", + "timeDelta": 3005 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/cats/pet-behavior-training/media_1a7361c3fc99595907686eb3f4f425bc15cb6a7af.jpeg", + "source": ".hero", + "timeDelta": 3016 + }, + { + "checkpoint": "loadresource", + "target": 205, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 13836 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 457 + }, + { + "checkpoint": "leave", + "timeDelta": 227587 + } + ] + }, + { + "id": "79Ddju", + "host": "rum.hlx.page", + "time": "2024-07-08T23:00:00.055Z", + "timeSlot": "2024-07-08T23:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/prednisone-prednisolone-for-dogs-and-cats", + "userAgent": "mobile:ios", + "weight": 1000, + "events": [ + { + "checkpoint": "experiment", + "target": "challenger-1", + "source": "delayed-martech", + "timeDelta": 55 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 169 + }, + { + "checkpoint": "cwv-ttfb", + "value": 14, + "timeDelta": 3344 + }, + { + "checkpoint": "lazy", + "timeDelta": 165 + }, + { + "checkpoint": "navigate", + "target": "visible", + "source": "https://www.petplace.com/article/dogs/pet-health/acute-moist-dermatitis-hot-spots-in-dogs", + "timeDelta": 168 + }, + { + "checkpoint": "cwv", + "timeDelta": 3206 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 194 + }, + { + "checkpoint": "leave", + "timeDelta": 2839 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 177 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 177 + }, + { + "checkpoint": "loadresource", + "target": 2, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 169 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 169 + }, + { + "checkpoint": "loadresource", + "target": 0, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 169 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 166 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 170 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_1ee082c070cbcad7c301d493c1f20474cbe0e9456.png", + "source": ".hero", + "timeDelta": 177 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 170 + }, + { + "checkpoint": "loadresource", + "target": 1, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 169 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "preferred-languages", + "timeDelta": 166 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 179 + }, + { + "checkpoint": "loadresource", + "target": 3, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 170 + } + ] + }, + { + "id": "7CHTUkwz", + "host": "rum.hlx.page", + "time": "2024-07-08T23:00:07.974Z", + "timeSlot": "2024-07-08T23:00:00.000Z", + "url": "https://www.petplace.com/article/drug-library/drug-library/library/diazepam-valium-for-dogs-and-cats", + "userAgent": "mobile:android", + "weight": 1000, + "events": [ + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_au.svg", + "timeDelta": 7974 + }, + { + "checkpoint": "lazy", + "timeDelta": 7747 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ga_ie.svg", + "timeDelta": 7969 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-nl_nl.svg", + "timeDelta": 7971 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-sv_se.svg", + "timeDelta": 7973 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_nz.svg", + "timeDelta": 7975 + }, + { + "checkpoint": "click", + "source": "#main", + "timeDelta": 74690 + }, + { + "checkpoint": "cwv-cls", + "value": 0.018736580730399226, + "timeDelta": 102258 + }, + { + "checkpoint": "loadresource", + "target": 150, + "source": "https://www.petplace.com/pet-adoption/placeholders.json", + "timeDelta": 7933 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gb.svg", + "timeDelta": 7964 + }, + { + "checkpoint": "variant", + "target": "en-US", + "source": "page-language", + "timeDelta": 7750 + }, + { + "checkpoint": "viewblock", + "source": ".article-author", + "timeDelta": 44396 + }, + { + "checkpoint": "variant", + "target": "en_US", + "source": "user-region", + "timeDelta": 7777 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_fr.svg", + "timeDelta": 7967 + }, + { + "checkpoint": "leave", + "timeDelta": 75003 + }, + { + "checkpoint": "cwv-inp", + "value": 208, + "timeDelta": 75045 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_at.svg", + "timeDelta": 7961 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fi_fi.svg", + "timeDelta": 7966 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-zh_hk.svg", + "timeDelta": 7958 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 101637 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-bg_bg.svg", + "timeDelta": 7959 + }, + { + "checkpoint": "cwv-lcp", + "value": 2348.5, + "timeDelta": 12640, + "source": ".hero", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_160a8a357f60be726917ff08bf77981e2fde18600.jpeg" + }, + { + "checkpoint": "variant", + "target": "en-US,fa-IR,fa,en", + "source": "preferred-languages", + "timeDelta": 7751 + }, + { + "checkpoint": "loadresource", + "target": 152, + "source": "https://www.petplace.com/authors/query-index.json", + "timeDelta": 7929 + }, + { + "checkpoint": "loadresource", + "target": 139, + "source": "https://www.petplace.com/article/category/categories.json", + "timeDelta": 7930 + }, + { + "checkpoint": "loadresource", + "target": 164, + "source": "https://www.petplace.com/fragments/mega-nav.plain.html", + "timeDelta": 7934 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_gh.svg", + "timeDelta": 7938 + }, + { + "checkpoint": "loadresource", + "target": 385, + "source": "https://www.petplace.com/article/query-index.json", + "timeDelta": 7931 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_in.svg", + "timeDelta": 7953 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ms_my.svg", + "timeDelta": 7955 + }, + { + "checkpoint": "loadresource", + "target": 144, + "source": "https://www.petplace.com/fragments/footer.plain.html", + "timeDelta": 7935 + }, + { + "checkpoint": "cwv-cls", + "value": 0.019971529218241336, + "timeDelta": 12643 + }, + { + "checkpoint": "cwv-lcp", + "value": 165.90000000596046, + "timeDelta": 101635 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_cl.svg", + "timeDelta": 7945 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ko_kr.svg", + "timeDelta": 7949 + }, + { + "checkpoint": "experiment", + "target": "control", + "source": "delayed-martech", + "timeDelta": 1890 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-it_it.svg", + "timeDelta": 7970 + }, + { + "checkpoint": "click", + "source": ".newsletter-signup", + "timeDelta": 20985 + }, + { + "checkpoint": "cwv-cls", + "value": 0.03747316146079845, + "timeDelta": 102289 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_co.svg", + "timeDelta": 7946 + }, + { + "checkpoint": "loadresource", + "target": 153, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 7937 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ph.svg", + "timeDelta": 7951 + }, + { + "checkpoint": "viewblock", + "source": ".social-share", + "timeDelta": 7995 + }, + { + "checkpoint": "loadresource", + "target": 154, + "source": "https://www.petplace.com/configuration.json", + "timeDelta": 9119 + }, + { + "checkpoint": "cwv-ttfb", + "value": 889.1999999880791, + "timeDelta": 12641 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 101506 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_ar.svg", + "timeDelta": 7943 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_ca.svg", + "timeDelta": 7941 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_br.svg", + "timeDelta": 7944 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_us.svg", + "timeDelta": 7942 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ar_ae.svg", + "timeDelta": 7950 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_pe.svg", + "timeDelta": 7947 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-pt_pt.svg", + "timeDelta": 7972 + }, + { + "checkpoint": "enter", + "target": "visible", + "source": "https://www.google.com/", + "timeDelta": 7921 + }, + { + "checkpoint": "loadresource", + "target": 140, + "source": "https://www.petplace.com/placeholders.json", + "timeDelta": 7927 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_za.svg", + "timeDelta": 7939 + }, + { + "checkpoint": "cwv-fid", + "value": 13.400000005960464, + "timeDelta": 20965 + }, + { + "checkpoint": "cwv", + "timeDelta": 12445 + }, + { + "checkpoint": "loadresource", + "target": 12, + "source": "https://www.petplace.com/newsletter.json", + "timeDelta": 19317 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-en_sg.svg", + "timeDelta": 7952 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-ja_jp.svg", + "timeDelta": 7954 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-th_th.svg", + "timeDelta": 7957 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-da_dk.svg", + "timeDelta": 7960 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-de_de.svg", + "timeDelta": 7962 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-es_es.svg", + "timeDelta": 7965 + }, + { + "checkpoint": "missingresource", + "source": "https://www.petplace.com/icons/flag-fr_be.svg", + "timeDelta": 7967 + }, + { + "checkpoint": "cwv-ttfb", + "value": 0, + "timeDelta": 4208632 + }, + { + "checkpoint": "cwv-lcp", + "value": 452.80000001192093, + "timeDelta": 4208722 + }, + { + "checkpoint": "cwv-cls", + "value": 0, + "timeDelta": 4208723 + }, + { + "checkpoint": "viewmedia", + "target": "https://www.petplace.com/article/drug-library/drug-library/library/media_160a8a357f60be726917ff08bf77981e2fde18600.jpeg", + "source": ".hero", + "timeDelta": 4212108 + }, + { + "checkpoint": "viewblock", + "source": ".hero", + "timeDelta": 4212118 + } + ] + } + ] +} \ No newline at end of file diff --git a/packages/spacecat-shared-rum-api-client/test/fixtures/variant.json b/packages/spacecat-shared-rum-api-client/test/fixtures/variant.json new file mode 100644 index 000000000..7894fa9ae --- /dev/null +++ b/packages/spacecat-shared-rum-api-client/test/fixtures/variant.json @@ -0,0 +1,35 @@ +[ + { + "language": "en-US", + "count": 35, + "mismatches": { + "type1": { + "preferredLanguages": { + "en-GB": 4 + } + }, + "type2": { + "preferredLanguages": { + "en-US,en": 9, + "en-GB": 4, + "en-GB,en-US,en": 2, + "en-CA,en-GB,en-US,en": 1, + "en-US,fa-IR,fa,en": 1 + } + }, + "type3": { + "preferredLanguages": { + "en": 13, + "en-GB": 7, + "en-CA": 1, + "fa-IR": 1, + "fa": 1 + } + } + }, + "regions": { + "en_US": 33, + "en_CA": 1 + } + } +] \ No newline at end of file diff --git a/packages/spacecat-shared-rum-api-client/test/functions.test.js b/packages/spacecat-shared-rum-api-client/test/functions.test.js index cb79a3a00..a5b4b4abf 100644 --- a/packages/spacecat-shared-rum-api-client/test/functions.test.js +++ b/packages/spacecat-shared-rum-api-client/test/functions.test.js @@ -14,11 +14,14 @@ import { expect } from 'chai'; import cwv from '../src/functions/cwv.js'; import notfound from '../src/functions/404.js'; -import bundles from './fixtures/bundles.json' assert { type: 'json' }; import experiment from '../src/functions/experiment.js'; +import variant from '../src/functions/variant.js'; +import bundles from './fixtures/bundles.json' assert { type: 'json' }; +import bundlesForVariant from './fixtures/bundles_for_variant.json' assert { type: 'json' }; import expectedCwvResult from './fixtures/cwv.json' assert { type: 'json' }; import expected404Result from './fixtures/notfound.json' assert { type: 'json' }; import expectedExperimentsResult from './fixtures/experiments.json' assert { type: 'json' }; +import expectedVariantResult from './fixtures/variant.json' assert { type: 'json' }; describe('Query functions', () => { it('crunches cwv data', async () => { @@ -35,4 +38,9 @@ describe('Query functions', () => { const experimentsResult = experiment.handler(bundles.rumBundles); expect(expectedExperimentsResult).to.eql(experimentsResult); }); + + it('crunches variant data', async () => { + const variantResult = variant.handler(bundlesForVariant.rumBundles); + expect(expectedVariantResult).to.eql(variantResult); + }); }); diff --git a/packages/spacecat-shared-slack-client/CHANGELOG.md b/packages/spacecat-shared-slack-client/CHANGELOG.md index c10f73599..c9e724ae9 100644 --- a/packages/spacecat-shared-slack-client/CHANGELOG.md +++ b/packages/spacecat-shared-slack-client/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-slack-client-v1.3.9](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.8...@adobe/spacecat-shared-slack-client-v1.3.9) (2024-07-08) + + +### Bug Fixes + +* **deps:** update external fixes ([#284](https://github.com/adobe/spacecat-shared/issues/284)) ([f4fe169](https://github.com/adobe/spacecat-shared/commit/f4fe1699c432637f1217198ad7f4a1cde6deeb76)) + # [@adobe/spacecat-shared-slack-client-v1.3.8](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-slack-client-v1.3.7...@adobe/spacecat-shared-slack-client-v1.3.8) (2024-06-27) diff --git a/packages/spacecat-shared-slack-client/package.json b/packages/spacecat-shared-slack-client/package.json index 9215cfecd..2ffb9619d 100644 --- a/packages/spacecat-shared-slack-client/package.json +++ b/packages/spacecat-shared-slack-client/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-slack-client", - "version": "1.3.8", + "version": "1.3.9", "description": "Shared modules of the Spacecat Services - Slack Client", "type": "module", "main": "src/index.js", diff --git a/packages/spacecat-shared-utils/CHANGELOG.md b/packages/spacecat-shared-utils/CHANGELOG.md index cdbccb12c..2e2d19cf2 100644 --- a/packages/spacecat-shared-utils/CHANGELOG.md +++ b/packages/spacecat-shared-utils/CHANGELOG.md @@ -1,3 +1,10 @@ +# [@adobe/spacecat-shared-utils-v1.18.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.18.1...@adobe/spacecat-shared-utils-v1.18.2) (2024-07-08) + + +### Bug Fixes + +* **deps:** update external fixes ([#284](https://github.com/adobe/spacecat-shared/issues/284)) ([f4fe169](https://github.com/adobe/spacecat-shared/commit/f4fe1699c432637f1217198ad7f4a1cde6deeb76)) + # [@adobe/spacecat-shared-utils-v1.18.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.18.0...@adobe/spacecat-shared-utils-v1.18.1) (2024-07-04) diff --git a/packages/spacecat-shared-utils/package.json b/packages/spacecat-shared-utils/package.json index 951271e5b..2132ca5b0 100644 --- a/packages/spacecat-shared-utils/package.json +++ b/packages/spacecat-shared-utils/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spacecat-shared-utils", - "version": "1.18.1", + "version": "1.18.2", "description": "Shared modules of the Spacecat Services - utils", "type": "module", "main": "src/index.js",