diff --git a/.gitignore b/.gitignore index 12baf7b4..a070a88f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,5 @@ apps/test-suite/node_modules/ apps/test-suite/.env -apps/test-suite/logs \ No newline at end of file +apps/test-suite/logs +apps/test-suite/load-test-results/test-run-report.json \ No newline at end of file diff --git a/apps/api/fly.staging.toml b/apps/api/fly.staging.toml new file mode 100644 index 00000000..565e693d --- /dev/null +++ b/apps/api/fly.staging.toml @@ -0,0 +1,65 @@ +# fly.toml app configuration file generated for firecrawl-scraper-js on 2024-04-07T21:09:59-03:00 +# +# See https://fly.io/docs/reference/configuration/ for information about how to use this file. +# + +app = 'staging-firecrawl-scraper-js' +primary_region = 'mia' +kill_signal = 'SIGINT' +kill_timeout = '5s' + +[build] + +[processes] + app = 'npm run start:production' + worker = 'npm run worker:production' + +[http_service] + internal_port = 8080 + force_https = true + auto_stop_machines = true + auto_start_machines = true + min_machines_running = 2 + processes = ['app'] + +[http_service.concurrency] + type = "requests" + hard_limit = 100 + soft_limit = 50 + +[[http_service.checks]] + grace_period = "10s" + interval = "30s" + method = "GET" + timeout = "5s" + path = "/" + + +[[services]] + protocol = 'tcp' + internal_port = 8080 + processes = ['worker'] + +[[services.ports]] + port = 80 + handlers = ['http'] + force_https = true + +[[services.ports]] + port = 443 + handlers = ['tls', 'http'] + + [services.concurrency] + type = 'connections' + hard_limit = 25 + soft_limit = 20 + +[[vm]] + size = 'performance-1x' + processes = ['app','worker'] + + + + + + diff --git a/apps/api/package.json b/apps/api/package.json index b50ac09c..c786b178 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -17,7 +17,8 @@ "worker:production": "node dist/src/services/queue-worker.js", "mongo-docker": "docker run -d -p 2717:27017 -v ./mongo-data:/data/db --name mongodb mongo:latest", "mongo-docker-console": "docker exec -it mongodb mongosh", - "run-example": "npx ts-node src/example.ts" + "run-example": "npx ts-node src/example.ts", + "deploy:fly:staging": "fly deploy -c fly.staging.toml" }, "author": "", "license": "ISC", diff --git a/apps/api/src/__tests__/e2e_withAuth/index.test.ts b/apps/api/src/__tests__/e2e_withAuth/index.test.ts index c11f398b..c2160c76 100644 --- a/apps/api/src/__tests__/e2e_withAuth/index.test.ts +++ b/apps/api/src/__tests__/e2e_withAuth/index.test.ts @@ -677,7 +677,7 @@ describe("E2E Tests for API Routes", () => { }); }, 180000); - + @@ -726,7 +726,7 @@ describe("E2E Tests for API Routes", () => { // expect(completedResponse.body.data[0].content).not.toContain("main menu"); // }, 60000); // 60 seconds - it.concurrent("should return a successful response for a valid crawl job with includeHtml set to true option (1)", async () => { + it.concurrent("should return a successful response for a valid crawl job with includeHtml set to true option", async () => { const crawlResponse = await request(TEST_URL) .post("/v0/crawl") .set("Authorization", `Bearer ${process.env.TEST_API_KEY}`) @@ -770,7 +770,7 @@ describe("E2E Tests for API Routes", () => { expect(completedResponse.body.data[0].metadata.pageStatusCode).toBe(200); expect(completedResponse.body.data[0].metadata.pageError).toBeUndefined(); - // 120 seconds + // 120 seconds expect(completedResponse.body.data[0]).toHaveProperty("html"); expect(completedResponse.body.data[0]).toHaveProperty("metadata"); expect(completedResponse.body.data[0].content).toContain("_Roast_"); diff --git a/apps/api/src/scraper/WebScraper/crawler.ts b/apps/api/src/scraper/WebScraper/crawler.ts index e1a5e056..0793d711 100644 --- a/apps/api/src/scraper/WebScraper/crawler.ts +++ b/apps/api/src/scraper/WebScraper/crawler.ts @@ -230,11 +230,10 @@ export class WebCrawler { } async crawl(url: string, pageOptions: PageOptions): Promise<{url: string, html: string, pageStatusCode?: number, pageError?: string}[]> { - const normalizedUrl = this.normalizeCrawlUrl(url); - if (this.visited.has(normalizedUrl) || !this.robots.isAllowed(url, "FireCrawlAgent")) { + if (this.visited.has(url) || !this.robots.isAllowed(url, "FireCrawlAgent")) { return []; } - this.visited.add(normalizedUrl); + this.visited.add(url); if (!url.startsWith("http")) { url = "https://" + url; @@ -282,15 +281,16 @@ export class WebCrawler { const urlObj = new URL(fullUrl); const path = urlObj.pathname; + if ( this.isInternalLink(fullUrl) && - this.matchesPattern(fullUrl) && this.noSections(fullUrl) && // The idea here to comment this out is to allow wider website coverage as we filter this anyway afterwards // this.matchesIncludes(path) && !this.matchesExcludes(path) && - this.robots.isAllowed(fullUrl, "FireCrawlAgent") + this.isRobotsAllowed(fullUrl) ) { + links.push({ url: fullUrl, html: content, pageStatusCode, pageError }); } } @@ -300,12 +300,15 @@ export class WebCrawler { return links; } // Create a new list to return to avoid modifying the visited list - return links.filter((link) => !this.visited.has(this.normalizeCrawlUrl(link.url))); + return links.filter((link) => !this.visited.has(link.url)); } catch (error) { return []; } } + private isRobotsAllowed(url: string): boolean { + return (this.robots ? (this.robots.isAllowed(url, "FireCrawlAgent") ?? true) : true) + } private normalizeCrawlUrl(url: string): string { try{ const urlObj = new URL(url); @@ -332,12 +335,10 @@ export class WebCrawler { private isInternalLink(link: string): boolean { const urlObj = new URL(link, this.baseUrl); - const domainWithoutProtocol = this.baseUrl.replace(/^https?:\/\//, ""); - return urlObj.hostname === domainWithoutProtocol; - } - - private matchesPattern(link: string): boolean { - return true; // Placeholder for future pattern matching implementation + const baseDomain = this.baseUrl.replace(/^https?:\/\//, "").replace(/^www\./, "").trim(); + const linkDomain = urlObj.hostname.replace(/^www\./, "").trim(); + + return linkDomain === baseDomain; } private isFile(url: string): boolean { diff --git a/apps/api/src/scraper/WebScraper/single_url.ts b/apps/api/src/scraper/WebScraper/single_url.ts index 1ba28323..db8f0ae0 100644 --- a/apps/api/src/scraper/WebScraper/single_url.ts +++ b/apps/api/src/scraper/WebScraper/single_url.ts @@ -292,6 +292,7 @@ function getScrapingFallbackOrder( ? [defaultScraper, ...filteredDefaultOrder, ...availableScrapers] : [...filteredDefaultOrder, ...availableScrapers] ); + const scrapersInOrder = Array.from(uniqueScrapers); return scrapersInOrder as (typeof baseScrapers)[number][]; } diff --git a/apps/api/src/scraper/WebScraper/utils/custom/website_params.ts b/apps/api/src/scraper/WebScraper/utils/custom/website_params.ts index 3828e47d..af33ced5 100644 --- a/apps/api/src/scraper/WebScraper/utils/custom/website_params.ts +++ b/apps/api/src/scraper/WebScraper/utils/custom/website_params.ts @@ -122,6 +122,36 @@ export const urlSpecificParams = { "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", }, }, + "scrapethissite.com":{ + defaultScraper: "fetch", + headers: { + "User-Agent": + "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + referer: "https://www.google.com/", + "accept-language": "en-US,en;q=0.9", + "accept-encoding": "gzip, deflate, br", + accept: + "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + }, + }, + "rsseau.fr":{ + defaultScraper: "fetch", + headers: { + "User-Agent": + "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36", + "sec-fetch-site": "same-origin", + "sec-fetch-mode": "cors", + "sec-fetch-dest": "empty", + referer: "https://www.google.com/", + "accept-language": "en-US,en;q=0.9", + "accept-encoding": "gzip, deflate, br", + accept: + "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + }, + }, "help.salesforce.com":{ defaultScraper: "playwright", params: { diff --git a/apps/api/src/services/rate-limiter.ts b/apps/api/src/services/rate-limiter.ts index 705d1c71..5624eb1f 100644 --- a/apps/api/src/services/rate-limiter.ts +++ b/apps/api/src/services/rate-limiter.ts @@ -41,8 +41,8 @@ const RATE_LIMITS = { default: 5, }, account: { - free: 20, - default: 20, + free: 100, + default: 100, }, crawlStatus: { free: 150, @@ -72,21 +72,25 @@ export const serverRateLimiter = createRateLimiter( RATE_LIMITS.account.default ); -export const testSuiteRateLimiter = createRateLimiter( - "test-suite", - RATE_LIMITS.testSuite.default -); +export const testSuiteRateLimiter = new RateLimiterRedis({ + storeClient: redisClient, + keyPrefix: "test-suite", + points: 10000, + duration: 60, // Duration in seconds +}); export function getRateLimiter( mode: RateLimiterMode, token: string, plan?: string ) { + if (token.includes("a01ccae") || token.includes("6254cf9")) { return testSuiteRateLimiter; } const rateLimitConfig = RATE_LIMITS[mode]; // {default : 5} + if (!rateLimitConfig) return serverRateLimiter; const planKey = plan ? plan.replace("-", "") : "default"; // "default" diff --git a/apps/api/src/types.ts b/apps/api/src/types.ts index 20fb527e..0d5be01f 100644 --- a/apps/api/src/types.ts +++ b/apps/api/src/types.ts @@ -45,7 +45,7 @@ export interface FirecrawlJob { export enum RateLimiterMode { Crawl = "crawl", - CrawlStatus = "crawl-status", + CrawlStatus = "crawlStatus", Scrape = "scrape", Preview = "preview", Search = "search", diff --git a/apps/test-suite/README.md b/apps/test-suite/README.md index 450a0e30..bb11c6f9 100644 --- a/apps/test-suite/README.md +++ b/apps/test-suite/README.md @@ -16,6 +16,22 @@ npx playwright install npm run test ``` +## Running Load Tests with Artillery + +To run load tests using Artillery, follow these steps: + +1. Install Artillery globally if you haven't already: + +```bash +npm install -g artillery +``` + +2. Run the load test: + +```bash +artillery run load-test.yml +``` + ## Test Results The tests are designed to cover various aspects of the system, including: diff --git a/apps/test-suite/load-test-results/test-run-report.json b/apps/test-suite/load-test-results/test-run-report.json new file mode 100644 index 00000000..1a58820b --- /dev/null +++ b/apps/test-suite/load-test-results/test-run-report.json @@ -0,0 +1,52740 @@ +{ + "aggregate": { + "counters": { + "vusers.created_by_name.Crawl a URL": 900, + "vusers.created": 900, + "http.requests": 1800, + "http.codes.200": 1757, + "http.responses": 1800, + "http.downloaded_bytes": 0, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 900, + "plugins.metrics-by-endpoint./v0/crawl/status/c8e2d906-aebf-4c94-90d1-4d475b0b565e.codes.200": 1, + "vusers.failed": 43, + "vusers.completed": 857, + "plugins.metrics-by-endpoint./v0/crawl/status/e2dbe0e1-f3c5-4e9b-8a2f-700694bb6ef2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d19e6d17-0352-4df2-a47b-572ad4b6d816.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/443ef2c4-8f5b-406d-ac2f-f03ca05ad861.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/36b96bf0-0418-4cc0-b1d8-5038bcac0ca0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d94fd7b-8fa4-4781-87af-388edc8b4226.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96b316de-717c-4b3f-b450-b542c77679f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7e745593-c147-42f2-90e1-1a828a9bff72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0ce04db4-6689-443a-879b-302498238049.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78486493-73f6-4d64-9b81-dc53714790b9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bac1f4ae-7e5c-4961-8cb5-045f7af4f816.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2a8f10c5-968b-425a-908e-7bdc4cd29117.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5a52a3cb-019e-46b5-a061-21758d4ab132.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4e91613-b5fc-44f2-9fa2-5c79ae62ffa6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dfa90678-45a1-4b91-bb1d-cadcfc0c39ac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c0ef0547-5435-470d-b655-5a425ff00f8f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d6668faa-a1ee-4c98-943e-73c0d2e17120.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5ffc7458-2ed3-4d32-b25c-d373025c1e4d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b9f0ec10-6127-432d-aecb-1bfc783d6d14.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2099ea74-b6fd-4437-aac9-2fb3c59b7726.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b1b804d2-e8b9-434d-8735-6f9699ce2b44.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/60af1212-f05a-40d8-be85-fb33171c06c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/11ba82c2-a2b1-4eac-9d99-034e87a4e057.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5416246e-3e29-4178-b222-f57d5b487d68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03d32438-f79a-4ad8-8125-f4ebdd486282.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cf7ccd97-0469-4abf-bdb1-5ba622f51f7a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2a16eca9-8f18-4098-97c8-1132d506e4b1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/40ddb1fa-c172-4464-8af5-99385c774038.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c63353a0-ad67-4eac-941d-d2e2a9d6a39d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/39906451-3e9e-436a-9df2-087713f8c2ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1578ce2e-28c6-4606-bfd2-a593022828a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/85d90e0b-6fd6-4927-b70f-99fc533dcb4f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5380b7f9-a7ef-4e67-b6a8-24a4a69e19bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5abb9c98-388a-4755-b8cb-968862cf407e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1b22be43-e52d-44a4-a341-c3cbf673fe9e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/608b56ef-1398-4b55-aa3d-e46bad8f2293.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/16f81463-4ebb-4c27-a3ac-f611cb636c0f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/79c4bc06-a3b6-40cd-bdc7-c205e797ba31.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/12711097-51a6-4fa3-8067-c9a0b23f9f58.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d3d0edaf-1eea-4299-bb2e-f0fd42e37d5f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f2ef0ffa-d14b-4ffc-a9a4-9f1bfa0a4af8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3aefd52e-398e-4886-a2d7-5f2fb0390052.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a761316e-5e04-468e-8de9-43a2c8b786e8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e89b16cf-d0cf-4aee-9691-381b159d0fe4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bd979ace-90ef-4795-807f-91cb049c3b54.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/12ad7a1c-eac6-4f12-9fe0-a9704f6ad7c6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e30500bc-82c8-44ed-89a1-28cf7c1e1dc8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7d0ed662-43ce-4d6f-8048-e6dbc7f4ed57.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/88f9c622-6931-407a-9cf5-3513a885785f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2b6054d1-4318-40a5-8209-c4448a1c39bd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7078a08c-c434-4c18-b703-34e0ca022bd4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/10dcad79-9020-4ba4-b34d-1759be951a8a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3907e3ee-6cb8-4bb1-8190-5e7c2c991ccb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c5c5e775-f4f0-450e-8e83-4e0162f2b44f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a1dd4f6f-3c4f-4296-9cf5-5a0b339e009c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02db555c-aebe-49b0-b4a2-49dd31b6c082.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d04194a6-c148-4c86-a1ef-b3255a948093.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7f610f92-d8f3-4856-9430-908bbe000410.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc96bb99-cf98-42df-b478-d57211b3f525.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e4fa4e49-adea-4093-964b-8e76697da82a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57b08269-f9c0-43d4-8c87-f2a703f8f927.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/350c0f30-6593-4d85-a7b7-6b69a983eabb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eeccd6a0-11a2-4c2b-8ff1-d09039d90d1c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4ab8f51-2106-4786-889b-f0f7d4f4aefa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b887fc13-3c6b-4679-9f49-6fc9dbcd38a9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e2b3fe46-1330-4dac-8d94-641cab468f1b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0efcbf9-6d94-49c8-a565-9d2a33d019c9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3c4e172b-ca9c-46d6-8fd6-bc4c3cbd3ba3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d27a5e6d-89fb-4580-aea0-b17a35cef8dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/652c419a-8ea7-455b-9b21-8b65512e83ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b80f176-ad07-49d5-a9f8-aebfb4df2e12.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa65760c-64da-48fc-8e1e-fd22efb79e87.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0e06b0e3-0512-4251-9277-0c1ce5142c26.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6ffc9613-b1f9-42d1-9531-d2082676f272.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c5eb8482-2188-4050-8ede-cc570d6c15c1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3b1c996d-fae9-4fb9-82be-d1e043660e16.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/caf13566-343c-469b-9dae-a27735d355ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6678299a-9bfe-43a4-8a69-b1d2393ae9e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/710ebd9b-5ad8-4281-a3da-7544df1eeab9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/519b7e16-6967-4589-b56b-d67cf1e20010.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/005a3d90-af3b-4bfd-b1e9-0f3334417fa5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/daf07b8b-5976-4fe4-aaca-fa6ceb7784ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef42a540-a7db-46af-bfbb-9f69a1c706aa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/59d0c6dd-222e-4509-a805-d866e92ecd0d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/68a7be8b-a534-45e9-b840-0dc2e6ed8504.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9186f135-26f9-4345-aa5c-bd04cba99639.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/92f49267-7538-488f-abbe-a2481a8ad4c9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6782938e-9333-472a-aee4-0fc79511c93d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f937b707-46ec-4760-a46a-9ebddee2d831.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4ae3d83-a799-44f7-8be4-731d772421e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cd4f21d4-157d-44dd-895f-5110c76db9e2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc017078-01c0-4f41-a3f6-58324e6ed951.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5e3bd036-8dad-42bc-975b-66e108c62dbc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6c7625b4-a9a9-4fac-a376-77b6b9ab1b8b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2da52a7b-d59a-4cbc-a5b0-9a96512e51e5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0cb18342-b576-45e7-9d47-27537855396f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/44dc9538-8f8b-4db8-9c5c-0783680320b4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc6427a5-baad-498a-a1be-70c986b5e6a0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb593041-0967-4de1-9e89-ae994979d8ce.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/833e7169-65bc-4aeb-9e81-44a28db026c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/77422a96-76e1-4a57-8475-277b6b8042b6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4a836267-c301-49ff-b7b8-10be331bc4a7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e980eed0-683e-403a-a02e-caaceb2b6379.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1829f710-619f-4b92-b2e5-ddd6e799b1ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/74e0b843-4010-421d-ab8d-c66f3fa5e528.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0411aa06-d10f-4bb6-9206-64fa17457045.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4d5bb94e-dfed-495d-92e7-215e18a204e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/92cb3eaa-507a-44f7-b391-b8e9bd58118d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2fdb0fb-8f6b-495f-b4ac-da2265a0044a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/976cfdbe-fb57-4e7b-98fb-4ba508e5c895.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a427fef3-56a3-4818-8a94-952440f92191.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e286ee42-1a66-4827-9ad4-30019f660f74.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4aa5549c-94ce-4536-bc05-39f1a59815e5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1fc862dc-c906-414c-aabe-227c13c10683.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/727af3be-e931-463b-a49b-53d099cc691e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a2b3210-fff8-453b-aaad-a7524eedcc6d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27567d6f-4146-420a-ab41-bb2127572992.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9853fa48-cbee-46e0-97bb-8641591a7801.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03bfa9e5-f456-4f45-9808-2a275e7fffb9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a7a89eb-ebbb-4861-a1de-2a5623a6660d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1c460bba-f6d5-45a3-b558-8b0b823f8106.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2fa08502-a4f3-46dc-a2f1-09bca8c4dd08.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96418975-3b09-484e-97b7-edb6029ad909.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0cacf7c-86c4-47e1-bb4e-67eaf38aaafd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e6996037-7199-4188-b2d7-aafb17a06cd8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/aacda5fe-e227-46dd-bc24-e71da30295ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/50ac6c69-b81a-425a-b0be-3c4ba11a3158.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/128f3c05-3d9b-419b-aa3d-864cad012024.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b53b3ef5-f0d6-4dd2-aeb0-9d3fc70bc050.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eac691aa-0633-4be6-9c7c-ca3a00d06fe8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a492fb56-e185-4179-bb30-07bf49b90d49.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d79ae022-1099-46c9-bd86-c8c4557868ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bee9904d-b4f4-4e10-bdcd-20b01d2c2f89.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9f5d7b00-2a03-4211-a116-5de5b380d889.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7224ba15-8eb4-4844-923e-b138d0a24ebf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc3b2e81-1d90-4561-938f-a1979ca921f8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1b2bfc13-27d9-412e-a654-594f89a97f42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e8839d0b-2d3c-4e53-ab73-9e6a7e1bab66.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/60fd0d42-6d1f-4e95-8134-ba3fd0b052e2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ddc149d9-295a-4ef6-83a7-c75df08de209.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c660f5f-d0eb-470d-9cc3-08eacbbf6072.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0849f003-6974-4e61-ab26-8b1ff0c0c17e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/37069c9e-1e19-4695-b876-a1b570c2b8e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ccfc9158-c082-455a-80f5-ee1683d8f1df.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/76f93deb-e969-412f-8385-e52334e0be4f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/985f6465-fbd8-489f-bb2b-23300491c356.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3950da1d-c3c7-465d-a3cd-9f0f1b3243c9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/481a8225-cca2-45e9-882d-4b8425d5a16e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6cfae259-caf5-4b03-a87e-4067bf459236.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9ef69927-0fbf-42ef-b97d-7e74b335efd4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8c1ec687-b077-4891-be81-37232837adf2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38ab8dd1-b378-40bb-8ff6-e5a81eaa166f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dcd3b65f-8f8d-437f-a079-8610fe55da61.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc162d42-a5ac-4aa4-a902-5bf2c20eca87.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9baa3bd-cc95-4254-93c4-17bba92e5abc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fd88b063-75d7-47a4-923b-ed77ce0a4406.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/904df43f-5367-487a-b06c-a66d0e49b8ef.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f1bfa005-0774-4553-9899-a7a3dbd73cee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/136a0f66-f9da-4a52-b349-138542778fec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28eb272a-2a7b-4486-bbc6-953e082a25a5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2e56ae9a-3ed8-42c4-8a86-2a0dedc66cad.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/178b3d7d-2da1-4d15-9e57-8e02c37bfc16.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4787d666-f657-4507-9c07-dee61f8112fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/79c03e84-002d-4718-98b4-5bf816eee983.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/15394ece-5026-4117-a8ab-3f956da812f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/afb21a06-305d-4a4b-b228-126fd28ae181.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3c7f56d0-8391-452a-80fd-7c049f414745.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e060ed76-1cbb-469a-ad98-20abf5209574.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4797358c-6a40-41b9-b6cf-d71bc13964ca.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bca9cfac-818f-4485-868a-aec4b539f7f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f7917e4-f0a5-49e2-9ce7-ee4e03969681.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1bf3513f-cf4a-4d15-91b7-2b9170686157.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57b586e0-471e-45c5-85e4-9553e1e565f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/752b7396-0cdd-48ac-acb8-caed58e3582b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/375d620f-79e2-4b4e-9818-068746cf8d3a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a548b75-ed32-4cb5-bd03-04a5c6d41f89.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d9a4ad65-f5e5-4fc5-8f46-2939a0199c6f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a7c6e41d-1dfd-43ae-98d3-c1104acbad5a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b48ea9bb-9868-4561-a55f-208fbf15492d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/37a233bc-3861-4749-8f81-8ebfb8a4f2b2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/510c6bad-4668-4bbc-8e25-8cc76ff42e28.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c5ba395-7289-4e26-b105-2a35cef4ce41.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/659ac4f1-743b-46d7-acea-5aa06592de4d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c85fcc3c-6d28-4c8b-8343-999072592519.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5573e323-1ec0-4c50-95e9-3691dc01071b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/34d1b57e-b162-424c-bf77-fd56b3001f07.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03cf0886-aab3-4275-b95e-38604cc5cec3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a3b429e8-e09e-4695-aa2f-b096f5ea067e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/888c6b58-f296-4783-a774-b2d2e1e045c1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ce6332a8-8afe-42fa-8903-964eda3fd9f3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/43355554-0652-4775-85f3-22c86f068000.codes.200": 1, + "http.codes.404": 43, + "plugins.metrics-by-endpoint./v0/crawl/status/aaf13674-66f9-4da3-99af-a6c927d41423.codes.404": 1, + "errors.Failed capture or match": 43, + "plugins.metrics-by-endpoint./v0/crawl/status/8322c462-a2a1-4357-a77a-4c8cafe20e09.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/067bb6d4-d3b1-41b5-aef0-c7b1a58265fe.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8ac5a1d0-17ea-49eb-96ce-e1d67dea9450.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/31af74f8-81c8-4e10-968b-3924979ef3d1.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fbdf0cc4-b6c6-447b-8b11-64381329ece5.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ebe49a5d-3fbe-4de3-bd21-ea336443995e.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b590e35-2380-44e7-8bc2-2ad798bef27d.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82272fea-106b-45ca-86ba-88c61d679647.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d588cfc8-dd95-4e1d-9bab-9dfbd9adf2a0.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/123ca86f-47dc-4f82-a585-f999b7d9fe5e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/32f9b190-ee13-4b50-8898-dcafa7461ea3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ee6f3b72-b2ea-468c-9d2d-7433d2960ed6.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/04eedf52-f526-4742-93bd-3c791362a9da.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/29c7a5e2-c675-46cb-b1e8-6915fc7925a7.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/68de4561-6680-4e6b-96b8-347d7246ebd2.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/542121b3-7250-4975-95f2-ad3afb8e9a40.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ad3525f0-eea2-4022-97bf-0a64b21f5946.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fcf1b6e4-6664-4f87-8ea0-718d3579bcf9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cff043e1-0f0c-470e-a65d-2db01c5b9142.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/54e3183d-94ae-422b-9e12-b41c5ad6cc72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e59b06b-10f3-4d1a-a79f-7c4596df3160.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc2e247b-f347-4468-9e7e-4a2040e7b962.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/55f617ce-3cc5-44cc-8219-b868d5669d59.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/437cd3d8-b6bb-4ea6-b1ce-2094e6abf14c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53f7af9d-0891-487c-a487-78cf2353ea31.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4a116e20-eaa8-4d4b-8de9-018404aec4f7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/50f57fc1-d294-4913-aa2c-319cc6d30f28.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/894fc871-43e0-4591-ab86-736f214b6a8e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/363fca68-2a89-4a22-a727-f10c1e51aac4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f3452af7-f0aa-41a2-8ffc-d4ee8f72d057.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef4a452f-a158-410d-9be7-9830be459323.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0bdcd915-ef7e-4baf-9f2b-ca44288c48bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1ed9a768-e764-493b-be61-716f735c123b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/63e232c9-6df4-4121-8834-eae9d7aea43e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a8bacd9-b08c-4d50-a31a-0981402b8daf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/95680899-ba26-4f48-a3fe-02b71ba6bb24.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f085365f-c138-4e9a-b520-bddfdf95d184.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27411cb5-f017-4906-86a4-96e6665d1d92.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f85bbad3-85a7-4b21-aa68-36f9489d71f2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/279b0708-c8df-4d1b-82fd-b2bf51c6c3ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02e98ee9-b4ca-4897-9117-f41d0d65cc47.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/67e46167-5cf7-452b-b099-e19d839540e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02b55a7e-0678-407b-9ba7-7de3d3b95d62.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7da4cdab-ae96-47dd-a3d0-d5ca8f23e7e5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2124f8b-1b7e-4b02-be53-d7f28753a2fe.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27c7cdbd-0050-4d5b-ae10-502303c4390d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/321cefaa-35ba-4299-bde1-e82c4b7d7f74.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7239ca64-68b7-479c-b66d-1c4aa6101d15.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/59614b76-8f3d-4150-8311-ab7b3fea55fd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/052737f5-2a0b-4edc-86a5-c076a1d8ef64.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/395b07e7-3a5c-4c82-b19a-bbd16c1e54ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/26ca7a88-61e9-4393-90da-1788b067513f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9bc04a16-637f-40f2-aa28-0da6c9c6980e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7954d21b-3f2e-46ca-85bb-18f34287819c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1ffc5bf4-5145-4c91-bcce-9e441d4a5862.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/799fe4f5-5597-4983-935a-5d4526d2494e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7f256564-3840-4844-9012-3db055025911.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3cd83809-395d-43d4-bc9f-f56057ff0503.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c14cad48-71b6-4acf-897e-0bed6d3edaa2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6f3412d0-04f9-414a-9e4f-6447729ad1fb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6e2b3ead-33cc-47d3-b9a1-c02c21211d38.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3ea10be8-db75-4661-bf82-cc94b8828180.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/66d776ea-87c2-422e-90bb-fda9f7e2411c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d291094b-6f52-42be-853e-b42f5234a687.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef422163-4912-4a9f-a890-fea79d3765fd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a9e8333-6eed-476b-b0f1-f43ba97fc5d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/acfe8ab0-354b-4236-9c17-d47278576e11.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9b51b75e-848e-4c1b-a4dd-25b3ac619ea8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3c8cd3af-cc8b-48af-a22a-d37591f8e03c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fa3e0b2-0766-4929-b587-62a1e537ca5e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6e8f1300-1281-41b9-a5c4-fd7d00bc3385.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ba6af3e6-0e24-43a3-bd22-bb9eb4019718.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/be922f89-3da0-4cf2-ad29-aa6f4744328c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/404dc307-aea5-441b-87ef-ade457c75a4e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e8a86a05-f686-45b4-bcda-56e67452d67f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ee7a22c9-0574-4f17-be4e-476efa7011be.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5269cd93-9757-43a7-860d-0e82b1b70ef3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0916824c-adc8-40d5-8614-f4c587c840b4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa6773d0-054d-488f-a30f-ff8e6cf5e7fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a6e93156-5c27-4674-9bc8-3e07ae36e6a9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d905de4a-32b4-4b29-b6d7-50ddc66b5062.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/58b34bf3-aa7a-45d7-b299-42a63311385d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/94c9d03f-91b6-4f43-8dcb-3e72f130939c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/52b7fbec-ad52-43f2-b572-19ba4a5fe6d3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/19fd0be0-b2b9-4d9f-b9fd-a7939877d783.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3036ce0a-029a-43eb-8551-7ebadc85327b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bca32515-7d62-4a4f-9466-58eaaff62bfe.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb120302-ae1b-4011-b4e6-87f6daaac0b7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28b4e836-2467-4b46-8bca-aa5e8567b332.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2f880203-8840-4853-a310-29738b4f23f3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/849f7e71-8ce1-483b-aca0-9c7aa087fe07.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e5a01c72-78e9-470d-886e-94205307e3ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cedac658-4407-46cc-b83c-acea3ffa6976.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/928dc2f1-df9d-45c8-b2d9-d002e43ea7e0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/728370f2-bdf8-4813-ac62-5c2086efea56.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f59c0080-3bef-48d0-9b57-0562d9bd3aee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eb8b0da1-045b-41f7-8005-ea013893d31d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e5025220-5bde-427f-a4bc-a95251990af6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7fd7562e-c513-432d-9c21-83be4d070d94.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c83c9646-ccbe-4aca-a279-b2557c23e072.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/44704b58-2e51-48a4-b8fa-9bcbcc91d11a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/15cee875-38f3-4963-86e3-d71d420932a7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/307228c5-1a72-4688-b6df-b0dd77c9e308.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fd671499-6d57-4c08-b203-c770b5699e8e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5cb846f9-dff0-4308-98de-838e5d3fbb85.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2b04b048-c5b8-4e01-8247-7d3dad8aae41.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/35f388e5-b5e5-497a-a58c-ec34b44d504b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3f6124d7-f8a3-4d68-93ec-809042860d49.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ae2801a7-5ef7-444b-a5ee-2ba23b6a29c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/df1f2a1b-5fa1-4f40-af98-f90067f6caa3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/21adeb34-b587-4d5e-989d-d95c5b6c8634.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/61b1ae5c-4d24-4c7c-9922-3b714e7abda6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dbd5195c-c36c-4241-ac47-060f36ca22a0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4d8327ec-5ca3-4ca0-b623-059784bb0028.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53a5fd1f-4e45-4203-90ac-dc26aadc4fcf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/576c07e7-dd1d-4171-89ca-aa7ce7c2f20f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4738efea-73aa-4184-a239-96a073c270c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/236fa256-ab24-41c3-bc9c-b4b0a065f519.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/14227327-158c-488d-82e1-7292a0c0cb42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0f24904a-79ea-4bfe-bce1-535bcb1c00a7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/107f23ad-7639-40f5-8137-c690c34e4f97.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03f15cef-d277-4111-aa0f-5a5b104e8397.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/60cccd26-c95c-4ba0-b99a-a1a56bc5a5ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27014d01-14da-48ce-8302-18f4041672cf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27dcf41d-8f77-4237-9159-8af2fde0d080.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ed9620bc-ec74-4646-a290-d7c93bdf8d72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/009146f2-586b-4657-a32a-28d6a133212d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/61025564-ebee-4621-afbc-2da92f63896c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fadc4789-0899-40f2-a452-63aef4272dcd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8ea9dd88-6526-4f7f-8388-ba3f503156ce.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/79d2381d-4ad9-4d6e-8535-87e9ea2d26b0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49696bad-69cc-4e57-8c50-4866fafed85d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/67b8c82c-d0fb-4526-aa64-65be44664932.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/333fd02f-40bf-4b70-9ecf-c867384998f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb1f05d1-5dce-4b9d-b8b0-23b681a5e95f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2078ef3c-4d8f-47fc-9299-49ca3c75b49e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b4f0d8fa-654c-43e7-82de-1be03f2ca071.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f180a874-99db-4897-af13-e1ae406219b2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0078f259-6c4b-4535-ab16-6062ea5bd995.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/26817eee-064b-4db8-bd17-fc42ebd6908c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c911c3e9-8eee-421a-afb5-7f7727135970.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/72d95de5-bd82-4251-993a-97ff370fd8bd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a79ac8cf-d2dc-481a-9fe5-fa232c24229f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4a2ff9d5-d984-4af6-bb95-5a3af0f5e063.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/64f0693c-92dc-47f8-9643-00df3a232445.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c64b5b37-cdfa-428f-8506-924af6f571f3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fee54e55-252e-40ff-ac02-3a263df0d7af.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57f75694-8edc-4fb9-ac7e-c69e8655d3e7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/624e5c44-31c1-40d8-80e7-f61b62de5eaf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0993aeb-3993-4e0c-9d2a-77526ea282bd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b5363ec8-fe73-40d4-af86-5d43655e6aec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3f56a8c5-e424-411d-b84e-a43da2f2f05b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96c13291-f609-4867-af0e-c82713bd3f4d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49d263b7-0a5f-4689-a243-bb25d811e18b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8e581086-a328-4885-8012-711ef90521c4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c32463b9-55ad-4402-8a70-bcb7105ec32d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4650a8c-833e-4cf1-8fff-e7a6caaee67c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78a3eef8-ab31-4654-8552-194221de277c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7459920d-4e99-4daa-b901-2ceaeb20a70a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ee82b1f7-1654-45ae-af49-698038c0aeca.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa7d571b-0d69-4b65-b151-f4acd292bd0a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a0dffbb3-2b36-4b84-97e1-2be7190488aa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/33727670-49bd-4f22-9295-68cb8a007661.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/39fc395c-cf40-44e7-a98a-9a7552de0af1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/50e84ee7-b155-4515-8bbb-00babcdf2adf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/334cd73b-6470-441a-b441-d42d8c00445b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/46c71398-edfb-4d58-9303-6b236df73d23.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fa7e13f-f4b9-4ede-ad07-fd060c32dc2a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f7261289-c16d-4f37-9570-d23db4e0c3e0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9cfcb31b-23fe-484b-8685-9a7db4d66bbd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/56f8fe86-2d1e-4543-b241-ec0359596d98.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0be3b979-9dc5-4517-ae4e-85e8f685e6e7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b67229d3-ea86-4421-aa29-a5b3e4fa8133.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a2eebd2c-af93-4058-9542-95d9f10fcea1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4e0662da-931d-40a9-b0d1-dc4cb2843d13.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4849201d-6f37-4917-9809-698cea53a8bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/62b8502b-ef32-4e82-bed1-6815267ff670.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9bdc72f-64bd-4278-b67a-355bd78aed16.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cf5385d4-fefc-40bf-8bd7-d443f058a857.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b6560986-0fa2-4eca-a109-846bd95e7cd0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0eac6b2-4606-4d94-86b9-a1e20acbb739.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc06bedf-837e-4049-8f7f-a6c780240cd8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9a7d139-672d-4c50-ad2e-3f743c502786.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6474d2aa-69ce-4440-941d-407f51bf25dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6a665308-9111-4b78-a0f1-d051e0090665.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b89be88d-47bc-4529-bc30-384262cecb6b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28d6803c-879e-41e8-9637-35e9786ce01e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9f3f0f3c-c986-4065-83ad-4fd32816689c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8d3776b2-d6a4-4021-b0a3-8570e6c1d56a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3e0d0a07-5e53-401d-a542-89d976919254.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9808f0e5-19cd-4d02-9bcd-3ff434d835f1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/806803ff-bb1b-4db5-aacf-dc75492708df.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/75a07336-9f9a-4e6b-aa86-a4fe73b1264f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b4b0328c-bd89-4111-a275-54ab9a169a4c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ec9d1791-4809-434f-96fa-5c00516165d1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ab719df7-9f85-42b6-94b3-d9ee9f8252ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/34844e49-c20f-402b-9c3c-9c180a6e6a27.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ad9e3655-a668-4f78-89fc-e0022789445f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c628ebfb-5571-4777-a7e5-336968991fd9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3175ec85-0765-4cfd-85f9-7854ea27821a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/726272c3-172c-4d30-8b4d-39ce3e3e6008.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03af49d9-a0e5-46d6-9f88-6e618f4071dc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5bb255ec-4314-4046-b4e6-014d0a4e8074.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b46fad50-60d8-4e93-8c4d-1fc79a3ea437.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/900178fe-7cd7-49ca-a906-0461a6b4fa97.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d51b42b9-1eb7-4d0f-8265-b9a1f377cf0e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ba3e65e3-cfbc-45dc-87eb-158cc71e74cb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f38e0a53-a31d-428b-a31d-33ea0eb5954e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e6da1b57-3ccb-4ec8-a510-a7a0cbeefd13.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e244c6e1-40a4-4906-8239-57cea67f6962.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c8275a37-bb68-4fd7-9d67-77ab57d3a904.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ab7b3136-d5b8-45db-bc2b-a754ef1f0d15.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/450c604a-6f3f-49ff-8448-e2a0df137584.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc8ad777-da80-4608-a9cf-061a7b32c2bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e797bda8-dcc4-4b76-9029-7f6618cdd07b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c9c3d3dd-047c-48d5-97fc-729dbe727425.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53aebb11-6450-491f-8c8e-32dea6d1f04a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5aa9eb5d-3007-4033-8cf1-98b113806d9d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03a52057-0802-451b-8b2c-6f9778fbf5ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ff00b011-940d-4eb1-8430-131ce87194b2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2ca2ea6-8fd2-41cd-92ce-4865da1ccdac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/85ca925c-5ba5-4199-a7b9-417655eb802b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6958fceb-a4de-432c-a50f-528f21b23553.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d148447a-c15b-4b89-a345-fe6f0cbaea93.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dbca8c5d-a77c-4df6-8925-e76dd0029a08.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/29c747d7-f1e0-4ff9-ac41-6a8551b06623.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2203a238-8313-49ec-808f-6d3cc3ba6113.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f4120710-0798-43fb-88e8-0c822fb7adbd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b13c23d6-3a80-4dde-8a69-c4f9958eef66.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/179eb0aa-340f-480c-93b6-c2b5fc56a9f4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/25cf6bbc-77d6-4415-b5c7-6816361b8333.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/324891fc-9afe-4d63-85c5-f625a43e4c42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/58c37438-f14f-46c1-be81-708b83384bba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82814432-01e6-447a-8022-b0de882d381c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d87aad3-3999-4cbe-a038-238bb5905daa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/14de96c9-a1b6-40e5-a1ad-f09441fa9970.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/096c8f13-d8d9-4ad9-8b70-1f1de909c39d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/572caebe-4318-4e9e-91c5-3498efb7746d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e7db1ea9-5eb1-487a-895e-d4a471d91ad2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/62ac3d84-1adb-4c2b-a759-be21b7d11222.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/804b9379-2edf-49e3-92de-b3b4b53fe3ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a6ed49b0-d017-4fbb-a199-1342c8171de0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6bc4b3cf-feab-4c2e-9a1b-f30c61e738e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27156dee-1d13-4738-af90-d4baa9e09344.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/faae215b-ec4e-4264-840b-7fb46cbb69dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/87abc71a-4a68-4fb6-a753-6c0f07443514.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6e62234b-f82b-4beb-ad31-d0469e5f5201.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/482fb088-6d2c-4c07-b487-8e1d62f79f37.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a37d28c-a73f-4743-b34e-9c8b848e236c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a6fc9cdc-231b-46e3-a0e2-ffa30dcf8441.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7341750a-2ca2-4543-b9f5-aeec421bb618.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27a6b49d-adab-4113-8a85-841a6c9b1ab3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c8def498-c63b-4049-806c-0657ea72026b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cab9e3a3-a3a7-4843-9dd1-f44c1e91fd04.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/efe8ff88-ffad-4445-a61d-390a7e6ddce9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/94555490-24b9-4272-aac7-9da68c80253c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96a39a15-f861-488f-88f7-1d7488b3b85d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/40145f1d-2019-4987-aada-499c14204a9a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/30cc0d4f-3599-448b-ba7b-d076b143a6d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c32efad-2f2d-4bd8-a868-788f4ce27600.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/93794a87-d60d-4f50-8c87-94fc83375b76.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/73eba61f-3979-4dea-aa2a-6b32361ca539.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5a710930-2f87-41a1-ae9d-8cec420bc0c4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/112bfc9e-27d9-4e08-a239-9cbb6908d579.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d13584a1-13d7-4ac1-ab2f-c60c5631ca3c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49c9f587-f385-4c76-8abb-55b58c20a154.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/93c65926-e0e8-4276-8976-4b49e2801d27.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/19d76e08-294f-4f64-8fa0-37229d2643db.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4ad1eb26-342b-4429-adaf-99e1192722ee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b8628dea-494f-46ae-90ff-ba2501ea2ad6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/89f12ace-84a8-45fa-a076-9e60fe82f033.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/afa6fcd5-fc1e-47b9-83bc-f5134de92e0e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d9463bca-e5d6-4930-b6f8-422a96b722dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eb7251b8-027b-4331-ab01-c16b8cd75fd4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c84e0584-92a3-4523-accd-872ef462ef05.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/00fb43d4-7237-4386-950e-ba9b22418a3f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d67661d8-a23f-4010-bed4-4e4faa3c0733.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/263675af-328b-4fc9-bf1d-54a9d319e05a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4f2f3ef8-db85-4b7c-8932-a57d46afc0f4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0afe871-9905-4694-a09f-fdeda1797b9d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9393c8bf-9884-4b40-a249-3c6ab9fd27d2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/be9f9150-1e25-4ff6-91fb-19171d202024.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d6eee342-4250-4abb-98ad-61d5c7d17723.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d02af79-f43f-4180-9761-243cabe42751.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/729ae9d2-948a-4c24-a4bc-01008fa6f815.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/29177f39-e811-4188-96c1-4e6f86d42b50.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/abc104bc-945a-401c-b59d-153d56f9270b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c50ecfd-e6f0-4d1e-afd4-4815088e9478.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c5d5b006-c1b5-46de-9db5-fa527139888f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bda7950e-933b-4be7-a4c5-54177638c717.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/743babbc-b494-4797-b4c4-d21faaaacb4d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/792b38ba-20f4-4f98-88c3-d74a1f9194de.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bf8a87a7-e622-4246-b841-caed1cbc9153.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d2f10e29-35d5-48ba-a8fa-a4bcdfe94b26.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/efa0adc8-1057-4b76-80f8-e360af5fa504.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bcbcdccb-ee49-4700-97b3-e61d6e8b6bd9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fdbf2a42-5df4-4727-b410-f357b23275f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49c45d12-721a-4c5b-b8fb-9a5fc58b5620.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e1bb35d5-b264-4026-80c0-9588cc25bf47.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/414f93c9-007e-4097-b16a-6224bd13bd0e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6f9aaba2-18e0-47b2-b5dc-93fe835205ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0b64dfa-e48c-464a-983d-bd1306d21821.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/af2bb29c-47d8-4433-a41f-d72a8aedd8e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/86cfe7d4-2181-4df1-9cb7-878db8aeebe2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/74ad21fb-8639-42b0-8aaa-efd25c76b4c1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eb122faa-845d-4c64-8006-1ed54cbcc112.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9decc5c1-28cd-4396-8c6f-9061a9d68a70.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4cc685d-2504-4b20-89c8-e4c9f8169425.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/48fd1a36-aa96-4fc7-bfda-697ab25a775e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/400fae57-adef-472b-8cb6-978007bdb024.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2f536449-f9b2-446d-b0a5-12d36fbd4f2f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/628eba56-0c6a-4222-b29c-60961941fa4c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8fee3a31-d4f2-4188-8622-68cb3899c9ce.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bad3d923-cdc0-437c-bc61-9d034e957340.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f72e39f8-79bf-4b4a-9ed3-b80c141da770.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/170e996f-22e6-43a5-8c6c-85416bbb1516.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/86ad59e3-fca9-4bc2-9f74-daec55e9cdae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/67424e01-514d-4ed6-9e22-f92bb33b867e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0142016d-7bd5-4e41-aa51-212eb52938ec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8c6aa61b-08f3-47f8-bc93-d32ec3826f7d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a169ada-55ae-4fe7-801b-b5406b1c2902.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d391aaca-9573-4a4d-8763-f716535fbcd0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fd5601f-ad20-4248-9aed-dde728eff05a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b36a38f1-f90a-47fc-ae3a-5a98cd7ab776.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3e6d3732-d9bd-421c-9bb8-b0f399aaad8c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c08070d-5bf3-4400-8076-623370cd6414.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ce7847c1-c87c-43c7-ae38-5fe7f99a66b8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8383a033-0177-40b4-b465-6a76b8366b42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b2bb0d3-21e2-446a-bdb6-81428d0deb8f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f842e9db-166e-4075-8056-90657e6ee4a3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d7e25622-0e38-4c3e-ac02-180db547c3a8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ad402980-a0dc-408f-88a0-e51c34417f80.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/40d623e2-ba09-41ca-9863-2fa2c3021fa0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9f77711-eadd-44fc-8d25-596623b8d4ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27500d18-8a4e-43f3-8531-a8eb348568f7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/94f035f3-0d2c-4494-ac8e-04f7977cccb6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/707b84fb-3431-4c77-bff3-066153545139.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2ca59aeb-840e-4f00-b4c5-dddca362c929.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4be8bf88-277c-4be4-a0f1-196f5ad30168.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f70e5f83-7c63-420d-b686-7044b15a67c5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/561f9c50-fe1b-4b05-aedb-75fe6128a38d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b5dd17b8-0b65-4f5b-ad87-e3b2b04b7a05.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/239b3d65-056f-4a88-bd61-3187796e0a13.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/39245ca2-1df6-4279-877b-f430ae366c2e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f18d2f50-cdb9-436b-9912-bc93d96e173f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/56c0367c-48cf-4fd3-bd81-ec732e3f8c77.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9035c99-4e3f-4a3d-8a43-efa1db2beec0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ca1c5dd3-20fe-4e43-a5a5-c4bacb84cc55.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a3c8bd6c-ffbe-4ddf-8713-317c3e6c09f0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dbedecc9-edcb-426d-acf1-1c7ed846ade0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/04f1dfc0-52f7-4dd7-8af2-782d7d60c86b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02e545f0-f017-422f-ab58-54de27f59a18.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7cdb5a8b-d4c2-4762-85d7-8b84dd57ee29.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d721d193-69c1-4153-804d-957eca8532d2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d1cd2d90-5a1c-4108-9367-fca945341cec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8331ae83-f520-49ed-ba89-fab9d296e7dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/36de1f1a-4aab-4e43-ae5f-7e7f3b2ca032.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e8e64581-d17e-483c-addd-2f5bf0086c78.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b8ac9a6e-b921-468e-b5c9-d6e55c245514.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2a8994d4-f171-48c7-b668-8362d0012041.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e21bad6c-3303-44e1-907f-c8779fde1f59.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/100c1b08-fd5d-4416-b108-a00cc2964f53.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f9346edc-f526-4df6-a06c-cfd03d90365a.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b84045e5-ac3b-4bba-a96e-a8dac9cd2303.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/84f79b05-0dbe-4aac-9cd6-cdeb769f1789.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c7cf27ab-a846-4777-bce8-522a614c9815.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02ca0ee3-2196-41a9-a953-282efd324182.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0d389d68-2ba3-4ca3-a8ff-30550b7506be.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57d17a2a-f85a-42ec-8a2e-37b2125fb454.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/45fd3921-b4d4-4c8c-be0e-8285a88a7a27.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/618d7955-0948-4999-8531-79490413a58a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/16bd0bf4-fc47-4b54-988f-b5ff5cbb08aa.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/47b5aa1e-54a9-4db0-be63-213fe9410335.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f9a8f3f-8046-4f8f-8c17-be68b2c7e721.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/21fdddae-e611-4cda-b078-eb51c401ec21.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/20eb6eeb-4382-4d56-b904-c249bdbea292.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d5f4da16-9b14-4445-818e-0a2fd81f47f1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc941e77-9f07-4d6f-bae1-b4dc88ff1c58.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ed1bcefb-6b70-48fa-88b5-d5e82fdd995d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0eae7ad-7524-4d5b-a1d4-8d15a20c961e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/299353d2-d8f5-44ca-8a1c-71272fd9f7e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/494496f9-c417-4d48-a4cd-7e081a2819a0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d58ce921-5673-4a96-be38-da6fc92351d5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/286f4a85-caf9-49f8-a363-8c7c08daac15.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ea422c70-b837-4ebc-b34c-e8f9a2c7b807.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4f1ee014-07d8-499c-a44b-3e5bb81c2bcf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/81c6faa6-c75b-4b0b-8f5c-da952c3bc92f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/efcc8882-b8d6-4477-94ce-5f02528217ef.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/42fb8478-e07d-4f3e-a29f-118678a7d20e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/80daa6a5-d8be-4434-b3dc-c675915b48bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7fe5f5e4-deaa-47a4-b7b7-589cb021850a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8c8f891b-9237-4999-9448-9555201887c7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2568b0c3-3acc-4e9f-9fb0-fab467d0109e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2fe1dc9d-c2b2-4b09-831c-860dd3fe8188.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7bf88501-ef91-40f8-a4d3-8e46b8bb080b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/08dae10f-954f-47fb-90d1-ddb6c0c4faee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/675c184c-5af4-4723-bcd1-d2525b60760a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0c602fd0-a7e1-4514-9d27-086fd8548945.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/24752056-944d-43c4-9bf1-3227bce1a7e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b134ad2d-b7a8-4dc5-8137-4344bfac9efd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a64dc9cb-031f-454e-a9f5-22f5b1b2ea18.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c910cd0d-84e7-4ca9-8f70-cd2eed999cbb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/00633c7e-7211-42ca-ab64-1accbe26966b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d69ba16d-7e4d-4bf6-8d09-a4935b2aa0ac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/07c112fa-f625-46e3-b072-d6b25acefaf7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f3295a4f-0694-4cac-8be6-7418af1ac898.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/377712e6-a204-4efe-b90d-f01a5aa52483.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1de17e8e-9949-4088-b96f-4e5bb1c940de.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a25d718-94db-485d-b353-04e1fb1c9c7d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/00df482e-802b-43a6-8a63-209879088de4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8d853b44-3f76-4fdb-abcf-409fb0b9587b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4f2099c8-95a8-45d9-912b-3f1029c90e9f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e15aac0e-93dc-4957-a964-6fd3774fb452.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3bda564f-a1b2-4005-9e9c-01770295f620.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f4a33d6f-8f55-44c1-9458-df6ec6a4caf8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9faedf4-b696-40da-be0c-c8c34b75c232.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1881abcb-24ea-4b56-a88f-a202db58c0ef.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a036ad20-b013-40ba-8d84-d3c2511c3bb3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0ce162e0-7163-4f3c-a966-e096322ef6fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ae28b25f-09ae-46ab-8854-a6ddc2d43d61.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0bea063f-c0f6-42b5-a87f-d9fddab88b1e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b0180bcf-9faf-4e4b-91f3-091b5d85be86.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fdcd2041-e2e7-42a7-bec8-5befb6249361.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d725da29-e71a-416a-b0c7-0ed8f81aac77.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1315fc7d-bee5-4348-b4d9-220355ac18a4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78b2c1e0-19a0-4323-80bc-c58fb2796b68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7905c905-a805-4434-8c90-93004d2153d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a12019ea-3a9b-4462-a16f-aed71ca706f0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/629df295-2a7c-48b1-b2cd-a41a7c24c3eb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f9aba73e-4288-46ec-a383-f3b82c6f59f8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f54a44f7-cc32-4b33-a53e-c886c95f3bd5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5bd68dc4-625f-4211-89be-c467ea676112.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2151da93-b0b9-42f7-b063-76f316b581e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/22840379-ea26-4966-8554-ae3b83b01cd9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f30e9f1-4540-41cb-b296-ff8c487839e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4efead97-8657-4112-94b8-8c586196db3b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a8ab234-6d84-427a-ad97-d74d9c343300.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b25b5bce-7db6-4455-ab50-b34bfe39800b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bfd8a9a8-a433-4b85-b519-aff3a99a98be.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/087ff98c-6a00-4012-a802-568a8e9c1892.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9dd6439b-2e12-4f6f-892a-8bfadf8184ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e4b4f4a2-8c2c-4c3f-8ee4-e0b8d0d7bcb0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0b11e51-f0a5-4d9d-9edf-721d75406056.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7aac1784-631c-43df-923c-6bcf76bf5bf4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cb613959-b868-46f9-a51f-1cad2bb6b259.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef3f239b-6e05-438d-aebc-f70e3e51ab36.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c615e9a1-2c33-46d3-9d66-59b17290e75d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6943dd72-0cc7-41bb-b3de-5f39d6cda371.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/65c4966f-e3c6-4434-a59b-ceb61bc6e38a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6507894d-28d7-40a5-8e3b-44708d7adec6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b0f4e771-6187-4ea8-b509-076c65582c87.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f52cf4d-8f08-4182-9af0-92b0b977985b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bfaef76c-af82-4709-b74e-5fb596b0cb9c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/de7b651f-492f-47a2-982f-619e26eb882f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dab71ca1-f7aa-42b7-95e4-0bdebe8001a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1de8dc75-7bfd-46b3-a8e9-33ad27b8801e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c0fb54f2-0569-4095-abd5-24b3e15cdab0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b2272118-50ee-4901-8243-2e8ff4f79d94.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0b63ff50-e4ab-4de3-bb50-818fd96dc55b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1791c96a-e71d-4d7c-8622-0efcacb4d3eb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cd1c80da-6b6d-4c22-84e8-fe6bfc815f86.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28b4c7db-1e91-4a62-aa37-a735bb24a4c7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9c6c8183-3850-48dd-8be0-681ca83ff0cf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa8e7aa0-e2f0-4bc0-ae4c-67ec447ca037.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0286370-bc23-410a-92d8-3f5d27fb2259.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a35f65c-8c1f-463c-a935-1214340e9800.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a983f27-5347-4964-a281-19a124075022.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27999c7e-7bd7-4cdf-8bdd-6fba5f03467a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/14f313f5-3772-4221-92c7-61cb1cb4b402.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a59fb1f0-79c3-4429-a511-a5109bb48e71.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/883a0b30-a64f-4750-a527-b56a515ebbd5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6932fd4c-6954-4c55-a733-1957b45919d1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/534f0804-462f-45b8-b88b-3263b96eebae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0b9e39dd-17f2-4e57-ae59-0e7b1d0744aa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1b33404e-e31d-4559-be89-706ded360580.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f841a916-e670-4d62-a423-9eb7f2adabd8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8e44e818-dbb9-4e3a-8852-9896612e468e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2b9e1d62-6b2c-4ac5-af24-9fb902b29606.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc329f23-2b2d-4bee-aaf7-be675835a7b5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ffb7a582-61f5-4fd9-ae05-ff471bf8742d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6b7e134d-af1d-4b04-ad94-07457a53d40f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2e076beb-321a-4bbd-92ce-474568a472cc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/90d36bf1-5fc9-4198-8580-4bd3d5678ec0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78cb0af3-204e-48fb-b946-2494f29462fe.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fe73e7f4-7f8b-4411-a401-9b68fe94fe79.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/283cc8d6-2596-4cb8-9e45-b82060f6b4f6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc872f67-960f-406f-b6ad-2bdfd83e5ae7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e481373-7bf2-4a78-aeb9-588cc9979db3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/241baafc-0215-497a-8519-e892918ed99e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b8884069-7d3e-447c-a102-8c6f2103e4fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bef4a1ea-9ef4-41cb-a771-23a080bd2019.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ca315b10-e474-4377-bfe2-660ad4feb151.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2c6ac8e2-8141-486b-84c3-e3c16f1d3a67.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9c4b731b-662b-4067-be30-b1a6b233bb43.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0ab0c360-730e-4850-b4db-513f06005ffd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8050d71e-5968-4347-9d1f-e8fb11cc8197.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b85df4c6-5597-496e-8fe7-82d2f3adf5cc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/011b0d98-3f27-4850-8980-74df779eabdc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9937d592-4d8d-42e0-9ae6-7d816db396a8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6b77ede8-09f1-493d-a83e-81eb6abaf71b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d43a9ef2-c98c-43cb-a223-5665cac8a16e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a460d6c7-0ba0-4d56-be5b-59d981b598d8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/05374f63-a095-402b-9961-b909b7bd0927.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/48bc8061-cc12-4f51-89c3-b2aa47fe4c1d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cbd328cd-e8e6-4f01-9065-8d19029e0840.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/69d63b5d-a553-4a79-bb3a-efca5a5871c8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/61521f72-40b5-44fd-ba0c-1e3f5f46d570.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a2869e20-69e5-4cfc-bd0c-b34a9c48e176.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e7986430-a32d-4242-814a-67e19c06f6fd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5bfaf40c-da4a-4258-b29c-7dd5dc7d48d7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/34063397-1c6d-4e5e-aeae-1a1b454116ac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8bc7037f-e90e-444d-ab3b-05432c2bcfaa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0b41e6a6-9c55-47bd-b08d-8d159eb9327c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96b56e41-019d-4024-b917-0e2a6a6b7d3b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0efb0182-24e5-4ba1-9b5e-6f35739f20bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d96aa0d4-5410-4b98-a3c6-9e451c8ba9aa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a2b64f6-e256-4917-a99c-d188a937cd44.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0b1d991-130f-4b65-977d-348cef790760.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a073f7a1-b59a-459c-b577-a7a739955b57.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9ac1463e-d695-4597-8781-3fbba0710dcf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/48920ada-ff67-432d-abce-326338086373.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fe397143-436d-4e9e-a098-f87ba9ae6ed2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4d8174c-ea98-45bf-8091-f067216adab5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/940c27a6-1cb2-4c11-93c7-efb96f08d22a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/24b258f8-5d9e-45dd-937b-f85279be22af.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ae26af3e-e0b6-4834-b0be-0447fc984461.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82f1bef3-ea09-4304-81da-b286627d7b22.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a7df93b2-d859-492c-b3bf-dd54687c7644.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb483477-b9d6-404f-a7ba-02151d6a2989.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e5773b9e-585f-443b-adbf-4c584696c74d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9cf55460-6aa3-4f86-a462-12dac944da3e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b90fe9fd-1434-4baa-bfca-8e93efc0f3f2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/70f162bb-d2ba-409d-b0f3-1f1a565a8af7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8304f58a-481b-4e82-b215-dfcf7d9bd12a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3821cf50-a908-4b85-a1c8-67194366c1b6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b39542c1-714b-4f62-b142-2836d3aa92dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7e3706f6-8f2c-43e7-92ac-2b14b8362479.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b0771e57-559e-4c66-a16b-5935d21da745.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f64ad05e-b26c-4579-91aa-2e3a880b00af.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82ab489f-b442-4147-bdf6-557f798ebf89.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/65d369b2-aa4d-47d5-9225-7b7fae26ed7f.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38f56aff-33af-4860-a01d-ec1bd4cd1db1.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c7e859a2-ca34-4fad-a019-da6ced03ab7b.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5660c04f-fb21-4ce4-9f68-237f2ffed2f1.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fe7d655d-a647-4650-b53f-90d176d03603.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/32fdf00f-0d19-47e0-a666-184be7ca0ed3.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a45b0acb-2e5f-4745-ba62-1e03663168f9.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/46bcdad2-8bb7-4f66-bfee-c49fe79ba48a.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7d353cd4-a358-4e24-94af-b90601b6a63e.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/787c979b-c075-40e9-9f61-4c3cccd5139a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27e60285-c845-4260-b43c-7c79534c39be.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d7fe394f-b524-4dd4-85b0-bf09009324ca.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e97f50c7-348e-46c2-9f72-7131c4ebf6e3.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/33cecab2-833a-493e-964f-7e069b8695ae.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/93d23d49-1e6f-48ef-a338-e01b505efe4b.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8ade6646-9f43-438b-a948-70cc3285c2c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/872c46f1-63bc-4b25-8d12-caede331490a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0c70d330-cc9a-4f6e-9b62-8eece7c9c8f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/23be3c84-78f8-4b5c-baaa-389c78bacc31.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1fa64832-447f-4dbb-bb8f-5d1b8fade0cd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7ca54b5f-8219-4193-b294-2c17a5500983.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c87153d2-58a5-4788-b8a4-fff31d905145.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1a1f8282-8510-485f-99bd-e76fe4bdd08e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b71b553f-f7ae-498d-856c-dcdcf6a18b02.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/20dada24-5093-4c1e-8916-09fa036cf2ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ff32a3a6-072e-4ff8-b0db-890f4f54cee9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/89ea6b20-2619-4577-8790-d52e6540a5fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/23f04b3f-656f-4084-ade3-d56c4c9af2b7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9608d262-57e6-4523-a6b8-6c74529a8857.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2314e2a7-0a62-4b97-b3fb-af9892d00730.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/841e03e3-6c21-4464-8fe8-590b3b2412da.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/550c2c07-3bf4-43e3-97d1-abe96b82fcbf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cb9ae528-e853-457e-b22f-8a2bfd67d075.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b1196ec0-cef4-4c14-8de7-453fc5eff16c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/11efacf6-e51a-47d4-ace4-1563e8bfe3f2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3b116186-aab7-4f51-93ff-8bee20574778.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/243517b6-510f-4eac-a2ca-600be81ac1a3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4a99235-dcb1-4ed5-8b90-02cad14a1a53.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a14fad83-3aef-4307-9980-fb6e7fd267f4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/90eb343e-3efc-4c44-8a62-d9459cc85175.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1ad5f1d5-2937-44dd-b92d-ff273200521c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/da83b475-8079-4e6a-b126-181a950df117.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4eeda210-6b89-4cf3-bdde-8653820f04d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c02bcef-9080-4035-86c7-1d9f8945fdb4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0ffb30d-340c-4d1f-85a9-a881337f4678.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9cd1f52e-072e-436f-a660-fa815053241f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/65446a04-9ad7-40c2-bf13-d0df9f0abac9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b7274549-472a-4817-83e6-a0c39c39510b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03ee2c93-b848-4eaa-88ee-3f9c11676f88.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e2803a45-c563-402a-bbdd-010dbbe0edbf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0d8269da-52e2-49b8-8f0a-8f142916249c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f36e406a-441a-4f4a-8752-a277b1959d0f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0a675b7-df21-4858-b981-afc1a7d19197.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/267e18b0-6a06-40fa-8b2b-2356379ba2a3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6cdabb57-5a52-4981-a9a5-1bc33543508b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4428a78-050b-41b4-9c41-43cdec803287.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb100c9f-e893-4a95-9ce5-e8c857dd5fd5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c950336d-5cbe-4c4c-b4fa-e6ca3e60f3ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc3a6d1b-c154-4a5a-9938-0a3539fbc4a9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e1e8c368-c9a1-49d9-b390-201c5d86a0e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/df14aa0e-7357-48fb-8336-cff10b69814f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f60162c7-72d5-4e1f-a62e-eb9db6355059.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7e798640-e809-40e0-b067-33099c1344f1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1f556f8a-55c0-4011-8aee-748104123588.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ffcfe519-82a7-4f6c-be23-86be780cb784.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fd1eaa9d-0460-467d-a525-045e26bd8faf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/33ec1a4f-b22c-4f89-aa3d-27c31ce41340.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dc2a2124-17ce-441b-a7c8-f221b6a0e948.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/123809de-1d52-40da-82fc-5f00e71d1274.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c7add20a-6bef-4aa7-9061-3b76e70adfcc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6f2499d4-8e2f-4a36-9e7f-c18b7986dcaa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5206ca6e-b743-43a1-935b-fd4205fd5b1b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/202a26b6-32ff-452e-b3e1-a1e44be1d3a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5373e3ab-e784-4219-b2c5-1a8c974fae1c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f916881f-a6bf-4923-9cc1-ff333dcc3428.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/06cf17a2-0f5c-4160-a730-eebcd4ec147f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/32c4bed9-ad1e-4e5d-9a95-626766ddd16c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d44106d-10cd-4b72-8773-a5fda6f02856.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/12d887cc-54fe-44b2-a7b3-51711141b198.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/31037bd0-96db-48f5-9e5a-026f0b4013fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e7e43fe-0ebc-4c79-a5d1-98037f30cf52.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/73431451-5a1c-40fc-9a22-ae3ea201320e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a07da492-f6aa-4fbf-a0ed-3924091e167f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bde5bacc-f00e-4971-9894-ef1e88739b95.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc6048f7-c66d-4b3e-88ec-968e90d7a3c7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a7822d94-872b-4c9f-b17b-0d9554b47b4f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/85e2f72b-39ec-4ec7-b597-c7d38116bd05.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03cda3a5-759a-46c8-911d-9b611bf04023.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f760880-f902-4ec4-a006-4494218fda39.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f18b2c8f-9106-4d50-9171-d58feda61915.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b636a39e-5831-4258-841c-4d92c9758d68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/673bda91-ecba-440b-b234-7fd48a72254c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fbc85568-5c7b-4e85-9c9a-c9562d0acdb7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ed5c7e73-6eea-4df4-9364-8e128242eb1e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a0f54ba-1f09-402b-8a54-f682c51eb68b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7d14d214-3419-453b-8d90-96ba637eea3d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/584a05fb-af4f-4ba9-8dfd-c06c716bf5c0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c6a99ed-80c6-417c-afe9-17a12d1c021e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28482f2b-7608-40c5-b145-b0f806e55cff.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/25183d7a-c865-4fd5-84ff-2abe71cd2a34.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1d83e40b-6a83-440e-8cd2-95eec3b35cc6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/05f53476-c49b-486a-86d7-9616353158fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f37b25f1-e5b9-4ae1-994f-07c093137e29.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f8fad810-f9bc-49e1-bb8b-583e80b7e0de.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2824032-e524-439e-846e-86d7131fa081.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6137ee31-7c04-481a-80e8-a59a13f7e4c4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a507d336-721b-4df3-9d63-ed753c7b43a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a2ce91c3-7a74-4aee-9871-82804a1721ee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1775e60e-8eda-4e5d-b5a8-a6588f734e35.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b3070396-303c-4998-8b35-487e9f42b237.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a3312f3-5cde-4680-8b9e-2fdd7f820924.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6d610106-538c-40b7-9b97-876de2317c7e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b952d1ca-4f50-4fc4-afd1-c50f6cfa8b5d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0c4e50f-1463-43a9-b29d-aa8364956d2e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/098057c8-7020-4c76-9b84-c267bfb868db.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb8e904c-d168-4339-b892-b55f75926f68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/153bd78e-9966-45e0-9723-ccbb7683dcfb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1817c818-fa3b-4d4b-96dd-b5ae09d3f0f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8192c9c1-8f52-41b0-8806-3e821b66a54e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9375ba37-312b-4e76-8d49-ffc93555243c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ba2a9ba3-8ab8-43e8-b420-dd9be833d86b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/762ccfef-c0af-4e6a-ad54-a111fe3e0046.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/428e28bb-4805-49a7-94d0-fe7a76a4134d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5508e7aa-6edd-4c96-9ff8-1c43133b8b26.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/55598ce5-fe8d-4da6-8485-1e5567723599.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38b97ea2-753c-45e1-8467-c4ad9a0fda63.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/05ece630-c369-4f2e-b327-5fc61db6db10.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f8ee7e6a-ce3d-4f1f-b352-1a21e9efe34e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/06589ae3-3f89-49a2-9dfc-87d97ba270bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6a2da9b6-7ad5-462f-8e7d-1b6fda6ea5b7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/18ad1568-41e5-41c5-a771-d5b3575ec1c0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/75642a26-340d-4fc2-aa5c-ad6be6d677ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1d4edd84-f6fd-478a-87e2-96ced1304c77.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f3b0268f-7268-406d-9f65-e00ed8631d72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/75aa6bd0-8ca5-4854-8fec-8b0fa43a0d14.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c80bfdf2-1fa9-4b2b-91a0-67fa4735119f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9dcc5e22-78a9-4037-a869-8a86666185e9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bdcabf13-614b-4027-adcd-a0d2fb3f1ece.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f8e2db7a-0c78-420e-8e80-c46a7063f841.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0f46f2b2-9b3b-4ff6-81d9-f2dc7f51eb67.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38b537ca-21e2-4831-8e6b-480c0e206023.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3e872937-6ba6-4d25-8de9-bcd27361eac7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/99be4855-1c52-4f7b-ad38-7df75d0224b1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6c9af162-77d0-404e-ae1f-f84a39c656fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dec2be06-df1a-4030-9296-07f876faa59a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b0b5d14-dd41-4f00-991a-54e30b0ad61f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4447341-0e17-47d9-b7a8-c4b3e6a1da81.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4ce86c85-cd06-40fa-9897-9ec8bf9b6b90.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/301b7098-f45b-4986-97a7-b06394a883cf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bfa4ee7c-b332-40b5-8833-8593b1840190.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6bd19486-e0f1-42cd-ad19-9cba04f78bc5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7fba1b67-eb76-4b11-9bf9-58995e422fcc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e304b73-59e8-42cb-ae14-1ab0f569583c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0c3a0135-1d0c-4c49-b6c4-98893edd4b37.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a4d3d17-0cdb-4a3d-998b-9e48a52af233.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/45b44e01-2b50-44db-84c6-1e4975079342.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b4ad9cd4-d704-48e7-943f-aae51aadc2fb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d4a34bb-7531-4d4a-abdb-d787df8d7de2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5f043a9e-f31d-4bd1-8087-ce645c78193e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53abbaae-f49b-4cea-81ee-7fd0174d20bb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fcf90e6-64d2-4f08-a3f6-525d378a4864.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1ee11ac2-ebc9-42b5-b9ef-70af27fd9b81.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/15e58dc1-2a03-40b1-afa5-8800d64700bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8bcc4f35-2a7f-4a89-9f16-ed568f533628.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3ab5a291-49f4-4f9d-b332-87ad381896e2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5aeec797-9eb1-4619-92ba-dbbc36150ba1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/84c641ee-cac7-477c-8377-53b26e74a357.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5990aa40-6543-4f7b-8cae-50864865292b.codes.200": 1 + }, + "rates": { + "http.request_rate": 3 + }, + "firstCounterAt": 1716485714822, + "firstHistogramAt": 1716485715843, + "lastCounterAt": 1716486145537, + "lastHistogramAt": 1716486145537, + "firstMetricAt": 1716485714822, + "lastMetricAt": 1716486145537, + "period": 1716486140000, + "summaries": { + "http.response_time": { + "min": 363, + "max": 6065, + "count": 1800, + "mean": 847.8, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1043.3, + "p95": 1130.2, + "p99": 1353.1, + "p999": 1556.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 723, + "max": 1545, + "count": 900, + "mean": 853.2, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1022.7, + "p95": 1107.9, + "p99": 1353.1, + "p999": 1525.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8e2d906-aebf-4c94-90d1-4d475b0b565e": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11598.4, + "max": 17005.3, + "count": 857, + "mean": 11854.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12459.8, + "p999": 12711.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2dbe0e1-f3c5-4e9b-8a2f-700694bb6ef2": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d19e6d17-0352-4df2-a47b-572ad4b6d816": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/443ef2c4-8f5b-406d-ac2f-f03ca05ad861": { + "min": 956, + "max": 956, + "count": 1, + "mean": 956, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36b96bf0-0418-4cc0-b1d8-5038bcac0ca0": { + "min": 1070, + "max": 1070, + "count": 1, + "mean": 1070, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d94fd7b-8fa4-4781-87af-388edc8b4226": { + "min": 727, + "max": 727, + "count": 1, + "mean": 727, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96b316de-717c-4b3f-b450-b542c77679f9": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e745593-c147-42f2-90e1-1a828a9bff72": { + "min": 968, + "max": 968, + "count": 1, + "mean": 968, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce04db4-6689-443a-879b-302498238049": { + "min": 712, + "max": 712, + "count": 1, + "mean": 712, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78486493-73f6-4d64-9b81-dc53714790b9": { + "min": 697, + "max": 697, + "count": 1, + "mean": 697, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bac1f4ae-7e5c-4961-8cb5-045f7af4f816": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8f10c5-968b-425a-908e-7bdc4cd29117": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a52a3cb-019e-46b5-a061-21758d4ab132": { + "min": 726, + "max": 726, + "count": 1, + "mean": 726, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4e91613-b5fc-44f2-9fa2-5c79ae62ffa6": { + "min": 735, + "max": 735, + "count": 1, + "mean": 735, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dfa90678-45a1-4b91-bb1d-cadcfc0c39ac": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0ef0547-5435-470d-b655-5a425ff00f8f": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6668faa-a1ee-4c98-943e-73c0d2e17120": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5ffc7458-2ed3-4d32-b25c-d373025c1e4d": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b9f0ec10-6127-432d-aecb-1bfc783d6d14": { + "min": 733, + "max": 733, + "count": 1, + "mean": 733, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2099ea74-b6fd-4437-aac9-2fb3c59b7726": { + "min": 1338, + "max": 1338, + "count": 1, + "mean": 1338, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1b804d2-e8b9-434d-8735-6f9699ce2b44": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60af1212-f05a-40d8-be85-fb33171c06c2": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11ba82c2-a2b1-4eac-9d99-034e87a4e057": { + "min": 725, + "max": 725, + "count": 1, + "mean": 725, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5416246e-3e29-4178-b222-f57d5b487d68": { + "min": 706, + "max": 706, + "count": 1, + "mean": 706, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03d32438-f79a-4ad8-8125-f4ebdd486282": { + "min": 707, + "max": 707, + "count": 1, + "mean": 707, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf7ccd97-0469-4abf-bdb1-5ba622f51f7a": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a16eca9-8f18-4098-97c8-1132d506e4b1": { + "min": 954, + "max": 954, + "count": 1, + "mean": 954, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40ddb1fa-c172-4464-8af5-99385c774038": { + "min": 723, + "max": 723, + "count": 1, + "mean": 723, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c63353a0-ad67-4eac-941d-d2e2a9d6a39d": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39906451-3e9e-436a-9df2-087713f8c2ea": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1578ce2e-28c6-4606-bfd2-a593022828a1": { + "min": 1057, + "max": 1057, + "count": 1, + "mean": 1057, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85d90e0b-6fd6-4927-b70f-99fc533dcb4f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5380b7f9-a7ef-4e67-b6a8-24a4a69e19bf": { + "min": 718, + "max": 718, + "count": 1, + "mean": 718, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5abb9c98-388a-4755-b8cb-968862cf407e": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b22be43-e52d-44a4-a341-c3cbf673fe9e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/608b56ef-1398-4b55-aa3d-e46bad8f2293": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16f81463-4ebb-4c27-a3ac-f611cb636c0f": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c4bc06-a3b6-40cd-bdc7-c205e797ba31": { + "min": 949, + "max": 949, + "count": 1, + "mean": 949, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12711097-51a6-4fa3-8067-c9a0b23f9f58": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d3d0edaf-1eea-4299-bb2e-f0fd42e37d5f": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f2ef0ffa-d14b-4ffc-a9a4-9f1bfa0a4af8": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3aefd52e-398e-4886-a2d7-5f2fb0390052": { + "min": 737, + "max": 737, + "count": 1, + "mean": 737, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a761316e-5e04-468e-8de9-43a2c8b786e8": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e89b16cf-d0cf-4aee-9691-381b159d0fe4": { + "min": 703, + "max": 703, + "count": 1, + "mean": 703, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bd979ace-90ef-4795-807f-91cb049c3b54": { + "min": 831, + "max": 831, + "count": 1, + "mean": 831, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12ad7a1c-eac6-4f12-9fe0-a9704f6ad7c6": { + "min": 721, + "max": 721, + "count": 1, + "mean": 721, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e30500bc-82c8-44ed-89a1-28cf7c1e1dc8": { + "min": 1052, + "max": 1052, + "count": 1, + "mean": 1052, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d0ed662-43ce-4d6f-8048-e6dbc7f4ed57": { + "min": 947, + "max": 947, + "count": 1, + "mean": 947, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/88f9c622-6931-407a-9cf5-3513a885785f": { + "min": 714, + "max": 714, + "count": 1, + "mean": 714, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b6054d1-4318-40a5-8209-c4448a1c39bd": { + "min": 709, + "max": 709, + "count": 1, + "mean": 709, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7078a08c-c434-4c18-b703-34e0ca022bd4": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/10dcad79-9020-4ba4-b34d-1759be951a8a": { + "min": 1186, + "max": 1186, + "count": 1, + "mean": 1186, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3907e3ee-6cb8-4bb1-8190-5e7c2c991ccb": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5c5e775-f4f0-450e-8e83-4e0162f2b44f": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a1dd4f6f-3c4f-4296-9cf5-5a0b339e009c": { + "min": 867, + "max": 867, + "count": 1, + "mean": 867, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02db555c-aebe-49b0-b4a2-49dd31b6c082": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d04194a6-c148-4c86-a1ef-b3255a948093": { + "min": 1357, + "max": 1357, + "count": 1, + "mean": 1357, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f610f92-d8f3-4856-9430-908bbe000410": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc96bb99-cf98-42df-b478-d57211b3f525": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4fa4e49-adea-4093-964b-8e76697da82a": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b08269-f9c0-43d4-8c87-f2a703f8f927": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/350c0f30-6593-4d85-a7b7-6b69a983eabb": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eeccd6a0-11a2-4c2b-8ff1-d09039d90d1c": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4ab8f51-2106-4786-889b-f0f7d4f4aefa": { + "min": 936, + "max": 936, + "count": 1, + "mean": 936, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b887fc13-3c6b-4679-9f49-6fc9dbcd38a9": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2b3fe46-1330-4dac-8d94-641cab468f1b": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0efcbf9-6d94-49c8-a565-9d2a33d019c9": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c4e172b-ca9c-46d6-8fd6-bc4c3cbd3ba3": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d27a5e6d-89fb-4580-aea0-b17a35cef8dd": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/652c419a-8ea7-455b-9b21-8b65512e83ed": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b80f176-ad07-49d5-a9f8-aebfb4df2e12": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa65760c-64da-48fc-8e1e-fd22efb79e87": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0e06b0e3-0512-4251-9277-0c1ce5142c26": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6ffc9613-b1f9-42d1-9531-d2082676f272": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5eb8482-2188-4050-8ede-cc570d6c15c1": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b1c996d-fae9-4fb9-82be-d1e043660e16": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/caf13566-343c-469b-9dae-a27735d355ba": { + "min": 979, + "max": 979, + "count": 1, + "mean": 979, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6678299a-9bfe-43a4-8a69-b1d2393ae9e6": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/710ebd9b-5ad8-4281-a3da-7544df1eeab9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/519b7e16-6967-4589-b56b-d67cf1e20010": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/005a3d90-af3b-4bfd-b1e9-0f3334417fa5": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/daf07b8b-5976-4fe4-aaca-fa6ceb7784ae": { + "min": 839, + "max": 839, + "count": 1, + "mean": 839, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef42a540-a7db-46af-bfbb-9f69a1c706aa": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59d0c6dd-222e-4509-a805-d866e92ecd0d": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68a7be8b-a534-45e9-b840-0dc2e6ed8504": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9186f135-26f9-4345-aa5c-bd04cba99639": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92f49267-7538-488f-abbe-a2481a8ad4c9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6782938e-9333-472a-aee4-0fc79511c93d": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f937b707-46ec-4760-a46a-9ebddee2d831": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4ae3d83-a799-44f7-8be4-731d772421e6": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd4f21d4-157d-44dd-895f-5110c76db9e2": { + "min": 907, + "max": 907, + "count": 1, + "mean": 907, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc017078-01c0-4f41-a3f6-58324e6ed951": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5e3bd036-8dad-42bc-975b-66e108c62dbc": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c7625b4-a9a9-4fac-a376-77b6b9ab1b8b": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2da52a7b-d59a-4cbc-a5b0-9a96512e51e5": { + "min": 1154, + "max": 1154, + "count": 1, + "mean": 1154, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0cb18342-b576-45e7-9d47-27537855396f": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44dc9538-8f8b-4db8-9c5c-0783680320b4": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc6427a5-baad-498a-a1be-70c986b5e6a0": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb593041-0967-4de1-9e89-ae994979d8ce": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/833e7169-65bc-4aeb-9e81-44a28db026c2": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/77422a96-76e1-4a57-8475-277b6b8042b6": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a836267-c301-49ff-b7b8-10be331bc4a7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e980eed0-683e-403a-a02e-caaceb2b6379": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1829f710-619f-4b92-b2e5-ddd6e799b1ba": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74e0b843-4010-421d-ab8d-c66f3fa5e528": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0411aa06-d10f-4bb6-9206-64fa17457045": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d5bb94e-dfed-495d-92e7-215e18a204e3": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92cb3eaa-507a-44f7-b391-b8e9bd58118d": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2fdb0fb-8f6b-495f-b4ac-da2265a0044a": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/976cfdbe-fb57-4e7b-98fb-4ba508e5c895": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a427fef3-56a3-4818-8a94-952440f92191": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e286ee42-1a66-4827-9ad4-30019f660f74": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4aa5549c-94ce-4536-bc05-39f1a59815e5": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fc862dc-c906-414c-aabe-227c13c10683": { + "min": 1133, + "max": 1133, + "count": 1, + "mean": 1133, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/727af3be-e931-463b-a49b-53d099cc691e": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a2b3210-fff8-453b-aaad-a7524eedcc6d": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27567d6f-4146-420a-ab41-bb2127572992": { + "min": 916, + "max": 916, + "count": 1, + "mean": 916, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9853fa48-cbee-46e0-97bb-8641591a7801": { + "min": 1040, + "max": 1040, + "count": 1, + "mean": 1040, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03bfa9e5-f456-4f45-9808-2a275e7fffb9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a7a89eb-ebbb-4861-a1de-2a5623a6660d": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1c460bba-f6d5-45a3-b558-8b0b823f8106": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fa08502-a4f3-46dc-a2f1-09bca8c4dd08": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96418975-3b09-484e-97b7-edb6029ad909": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0cacf7c-86c4-47e1-bb4e-67eaf38aaafd": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6996037-7199-4188-b2d7-aafb17a06cd8": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aacda5fe-e227-46dd-bc24-e71da30295ed": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50ac6c69-b81a-425a-b0be-3c4ba11a3158": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/128f3c05-3d9b-419b-aa3d-864cad012024": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b53b3ef5-f0d6-4dd2-aeb0-9d3fc70bc050": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eac691aa-0633-4be6-9c7c-ca3a00d06fe8": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a492fb56-e185-4179-bb30-07bf49b90d49": { + "min": 1712, + "max": 1712, + "count": 1, + "mean": 1712, + "p50": 1720.2, + "median": 1720.2, + "p75": 1720.2, + "p90": 1720.2, + "p95": 1720.2, + "p99": 1720.2, + "p999": 1720.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d79ae022-1099-46c9-bd86-c8c4557868ae": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bee9904d-b4f4-4e10-bdcd-20b01d2c2f89": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f5d7b00-2a03-4211-a116-5de5b380d889": { + "min": 914, + "max": 914, + "count": 1, + "mean": 914, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7224ba15-8eb4-4844-923e-b138d0a24ebf": { + "min": 1345, + "max": 1345, + "count": 1, + "mean": 1345, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc3b2e81-1d90-4561-938f-a1979ca921f8": { + "min": 924, + "max": 924, + "count": 1, + "mean": 924, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b2bfc13-27d9-412e-a654-594f89a97f42": { + "min": 875, + "max": 875, + "count": 1, + "mean": 875, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8839d0b-2d3c-4e53-ab73-9e6a7e1bab66": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60fd0d42-6d1f-4e95-8134-ba3fd0b052e2": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ddc149d9-295a-4ef6-83a7-c75df08de209": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c660f5f-d0eb-470d-9cc3-08eacbbf6072": { + "min": 1143, + "max": 1143, + "count": 1, + "mean": 1143, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0849f003-6974-4e61-ab26-8b1ff0c0c17e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37069c9e-1e19-4695-b876-a1b570c2b8e3": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ccfc9158-c082-455a-80f5-ee1683d8f1df": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/76f93deb-e969-412f-8385-e52334e0be4f": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/985f6465-fbd8-489f-bb2b-23300491c356": { + "min": 901, + "max": 901, + "count": 1, + "mean": 901, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3950da1d-c3c7-465d-a3cd-9f0f1b3243c9": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/481a8225-cca2-45e9-882d-4b8425d5a16e": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cfae259-caf5-4b03-a87e-4067bf459236": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9ef69927-0fbf-42ef-b97d-7e74b335efd4": { + "min": 844, + "max": 844, + "count": 1, + "mean": 844, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c1ec687-b077-4891-be81-37232837adf2": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38ab8dd1-b378-40bb-8ff6-e5a81eaa166f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dcd3b65f-8f8d-437f-a079-8610fe55da61": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc162d42-a5ac-4aa4-a902-5bf2c20eca87": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9baa3bd-cc95-4254-93c4-17bba92e5abc": { + "min": 1425, + "max": 1425, + "count": 1, + "mean": 1425, + "p50": 1436.8, + "median": 1436.8, + "p75": 1436.8, + "p90": 1436.8, + "p95": 1436.8, + "p99": 1436.8, + "p999": 1436.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd88b063-75d7-47a4-923b-ed77ce0a4406": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/904df43f-5367-487a-b06c-a66d0e49b8ef": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f1bfa005-0774-4553-9899-a7a3dbd73cee": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/136a0f66-f9da-4a52-b349-138542778fec": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28eb272a-2a7b-4486-bbc6-953e082a25a5": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e56ae9a-3ed8-42c4-8a86-2a0dedc66cad": { + "min": 1051, + "max": 1051, + "count": 1, + "mean": 1051, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/178b3d7d-2da1-4d15-9e57-8e02c37bfc16": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4787d666-f657-4507-9c07-dee61f8112fc": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c03e84-002d-4718-98b4-5bf816eee983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15394ece-5026-4117-a8ab-3f956da812f9": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afb21a06-305d-4a4b-b228-126fd28ae181": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c7f56d0-8391-452a-80fd-7c049f414745": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e060ed76-1cbb-469a-ad98-20abf5209574": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4797358c-6a40-41b9-b6cf-d71bc13964ca": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca9cfac-818f-4485-868a-aec4b539f7f5": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f7917e4-f0a5-49e2-9ce7-ee4e03969681": { + "min": 1402, + "max": 1402, + "count": 1, + "mean": 1402, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1bf3513f-cf4a-4d15-91b7-2b9170686157": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b586e0-471e-45c5-85e4-9553e1e565f9": { + "min": 873, + "max": 873, + "count": 1, + "mean": 873, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/752b7396-0cdd-48ac-acb8-caed58e3582b": { + "min": 1141, + "max": 1141, + "count": 1, + "mean": 1141, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/375d620f-79e2-4b4e-9818-068746cf8d3a": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a548b75-ed32-4cb5-bd03-04a5c6d41f89": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9a4ad65-f5e5-4fc5-8f46-2939a0199c6f": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7c6e41d-1dfd-43ae-98d3-c1104acbad5a": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b48ea9bb-9868-4561-a55f-208fbf15492d": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37a233bc-3861-4749-8f81-8ebfb8a4f2b2": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/510c6bad-4668-4bbc-8e25-8cc76ff42e28": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c5ba395-7289-4e26-b105-2a35cef4ce41": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/659ac4f1-743b-46d7-acea-5aa06592de4d": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c85fcc3c-6d28-4c8b-8343-999072592519": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5573e323-1ec0-4c50-95e9-3691dc01071b": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34d1b57e-b162-424c-bf77-fd56b3001f07": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cf0886-aab3-4275-b95e-38604cc5cec3": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3b429e8-e09e-4695-aa2f-b096f5ea067e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/888c6b58-f296-4783-a774-b2d2e1e045c1": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce6332a8-8afe-42fa-8903-964eda3fd9f3": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/43355554-0652-4775-85f3-22c86f068000": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aaf13674-66f9-4da3-99af-a6c927d41423": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8322c462-a2a1-4357-a77a-4c8cafe20e09": { + "min": 600, + "max": 600, + "count": 1, + "mean": 600, + "p50": 596, + "median": 596, + "p75": 596, + "p90": 596, + "p95": 596, + "p99": 596, + "p999": 596 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/067bb6d4-d3b1-41b5-aef0-c7b1a58265fe": { + "min": 394, + "max": 394, + "count": 1, + "mean": 394, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ac5a1d0-17ea-49eb-96ce-e1d67dea9450": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31af74f8-81c8-4e10-968b-3924979ef3d1": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbdf0cc4-b6c6-447b-8b11-64381329ece5": { + "min": 365, + "max": 365, + "count": 1, + "mean": 365, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ebe49a5d-3fbe-4de3-bd21-ea336443995e": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b590e35-2380-44e7-8bc2-2ad798bef27d": { + "min": 364, + "max": 364, + "count": 1, + "mean": 364, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82272fea-106b-45ca-86ba-88c61d679647": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d588cfc8-dd95-4e1d-9bab-9dfbd9adf2a0": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123ca86f-47dc-4f82-a585-f999b7d9fe5e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32f9b190-ee13-4b50-8898-dcafa7461ea3": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee6f3b72-b2ea-468c-9d2d-7433d2960ed6": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04eedf52-f526-4742-93bd-3c791362a9da": { + "min": 408, + "max": 408, + "count": 1, + "mean": 408, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c7a5e2-c675-46cb-b1e8-6915fc7925a7": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68de4561-6680-4e6b-96b8-347d7246ebd2": { + "min": 455, + "max": 455, + "count": 1, + "mean": 455, + "p50": 459.5, + "median": 459.5, + "p75": 459.5, + "p90": 459.5, + "p95": 459.5, + "p99": 459.5, + "p999": 459.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/542121b3-7250-4975-95f2-ad3afb8e9a40": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad3525f0-eea2-4022-97bf-0a64b21f5946": { + "min": 736, + "max": 736, + "count": 1, + "mean": 736, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fcf1b6e4-6664-4f87-8ea0-718d3579bcf9": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cff043e1-0f0c-470e-a65d-2db01c5b9142": { + "min": 948, + "max": 948, + "count": 1, + "mean": 948, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/54e3183d-94ae-422b-9e12-b41c5ad6cc72": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e59b06b-10f3-4d1a-a79f-7c4596df3160": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc2e247b-f347-4468-9e7e-4a2040e7b962": { + "min": 1065, + "max": 1065, + "count": 1, + "mean": 1065, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55f617ce-3cc5-44cc-8219-b868d5669d59": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/437cd3d8-b6bb-4ea6-b1ce-2094e6abf14c": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53f7af9d-0891-487c-a487-78cf2353ea31": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a116e20-eaa8-4d4b-8de9-018404aec4f7": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50f57fc1-d294-4913-aa2c-319cc6d30f28": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/894fc871-43e0-4591-ab86-736f214b6a8e": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/363fca68-2a89-4a22-a727-f10c1e51aac4": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3452af7-f0aa-41a2-8ffc-d4ee8f72d057": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef4a452f-a158-410d-9be7-9830be459323": { + "min": 1049, + "max": 1049, + "count": 1, + "mean": 1049, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bdcd915-ef7e-4baf-9f2b-ca44288c48bc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ed9a768-e764-493b-be61-716f735c123b": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/63e232c9-6df4-4121-8834-eae9d7aea43e": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a8bacd9-b08c-4d50-a31a-0981402b8daf": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/95680899-ba26-4f48-a3fe-02b71ba6bb24": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f085365f-c138-4e9a-b520-bddfdf95d184": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27411cb5-f017-4906-86a4-96e6665d1d92": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f85bbad3-85a7-4b21-aa68-36f9489d71f2": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/279b0708-c8df-4d1b-82fd-b2bf51c6c3ba": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e98ee9-b4ca-4897-9117-f41d0d65cc47": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67e46167-5cf7-452b-b099-e19d839540e3": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02b55a7e-0678-407b-9ba7-7de3d3b95d62": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7da4cdab-ae96-47dd-a3d0-d5ca8f23e7e5": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2124f8b-1b7e-4b02-be53-d7f28753a2fe": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27c7cdbd-0050-4d5b-ae10-502303c4390d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/321cefaa-35ba-4299-bde1-e82c4b7d7f74": { + "min": 1280, + "max": 1280, + "count": 1, + "mean": 1280, + "p50": 1274.3, + "median": 1274.3, + "p75": 1274.3, + "p90": 1274.3, + "p95": 1274.3, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7239ca64-68b7-479c-b66d-1c4aa6101d15": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59614b76-8f3d-4150-8311-ab7b3fea55fd": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/052737f5-2a0b-4edc-86a5-c076a1d8ef64": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/395b07e7-3a5c-4c82-b19a-bbd16c1e54ba": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26ca7a88-61e9-4393-90da-1788b067513f": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9bc04a16-637f-40f2-aa28-0da6c9c6980e": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7954d21b-3f2e-46ca-85bb-18f34287819c": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ffc5bf4-5145-4c91-bcce-9e441d4a5862": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/799fe4f5-5597-4983-935a-5d4526d2494e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f256564-3840-4844-9012-3db055025911": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3cd83809-395d-43d4-bc9f-f56057ff0503": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c14cad48-71b6-4acf-897e-0bed6d3edaa2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f3412d0-04f9-414a-9e4f-6447729ad1fb": { + "min": 1115, + "max": 1115, + "count": 1, + "mean": 1115, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e2b3ead-33cc-47d3-b9a1-c02c21211d38": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ea10be8-db75-4661-bf82-cc94b8828180": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/66d776ea-87c2-422e-90bb-fda9f7e2411c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d291094b-6f52-42be-853e-b42f5234a687": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef422163-4912-4a9f-a890-fea79d3765fd": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a9e8333-6eed-476b-b0f1-f43ba97fc5d0": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/acfe8ab0-354b-4236-9c17-d47278576e11": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9b51b75e-848e-4c1b-a4dd-25b3ac619ea8": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c8cd3af-cc8b-48af-a22a-d37591f8e03c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa3e0b2-0766-4929-b587-62a1e537ca5e": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e8f1300-1281-41b9-a5c4-fd7d00bc3385": { + "min": 963, + "max": 963, + "count": 1, + "mean": 963, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba6af3e6-0e24-43a3-bd22-bb9eb4019718": { + "min": 1047, + "max": 1047, + "count": 1, + "mean": 1047, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be922f89-3da0-4cf2-ad29-aa6f4744328c": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/404dc307-aea5-441b-87ef-ade457c75a4e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8a86a05-f686-45b4-bcda-56e67452d67f": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee7a22c9-0574-4f17-be4e-476efa7011be": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5269cd93-9757-43a7-860d-0e82b1b70ef3": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0916824c-adc8-40d5-8614-f4c587c840b4": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa6773d0-054d-488f-a30f-ff8e6cf5e7fa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6e93156-5c27-4674-9bc8-3e07ae36e6a9": { + "min": 824, + "max": 824, + "count": 1, + "mean": 824, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d905de4a-32b4-4b29-b6d7-50ddc66b5062": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58b34bf3-aa7a-45d7-b299-42a63311385d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94c9d03f-91b6-4f43-8dcb-3e72f130939c": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/52b7fbec-ad52-43f2-b572-19ba4a5fe6d3": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19fd0be0-b2b9-4d9f-b9fd-a7939877d783": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3036ce0a-029a-43eb-8551-7ebadc85327b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca32515-7d62-4a4f-9466-58eaaff62bfe": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb120302-ae1b-4011-b4e6-87f6daaac0b7": { + "min": 1288, + "max": 1288, + "count": 1, + "mean": 1288, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4e836-2467-4b46-8bca-aa5e8567b332": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f880203-8840-4853-a310-29738b4f23f3": { + "min": 840, + "max": 840, + "count": 1, + "mean": 840, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/849f7e71-8ce1-483b-aca0-9c7aa087fe07": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5a01c72-78e9-470d-886e-94205307e3ed": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cedac658-4407-46cc-b83c-acea3ffa6976": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/928dc2f1-df9d-45c8-b2d9-d002e43ea7e0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/728370f2-bdf8-4813-ac62-5c2086efea56": { + "min": 1053, + "max": 1053, + "count": 1, + "mean": 1053, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f59c0080-3bef-48d0-9b57-0562d9bd3aee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb8b0da1-045b-41f7-8005-ea013893d31d": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5025220-5bde-427f-a4bc-a95251990af6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fd7562e-c513-432d-9c21-83be4d070d94": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c83c9646-ccbe-4aca-a279-b2557c23e072": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44704b58-2e51-48a4-b8fa-9bcbcc91d11a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15cee875-38f3-4963-86e3-d71d420932a7": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/307228c5-1a72-4688-b6df-b0dd77c9e308": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd671499-6d57-4c08-b203-c770b5699e8e": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5cb846f9-dff0-4308-98de-838e5d3fbb85": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b04b048-c5b8-4e01-8247-7d3dad8aae41": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/35f388e5-b5e5-497a-a58c-ec34b44d504b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f6124d7-f8a3-4d68-93ec-809042860d49": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae2801a7-5ef7-444b-a5ee-2ba23b6a29c2": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df1f2a1b-5fa1-4f40-af98-f90067f6caa3": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21adeb34-b587-4d5e-989d-d95c5b6c8634": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61b1ae5c-4d24-4c7c-9922-3b714e7abda6": { + "min": 1015, + "max": 1015, + "count": 1, + "mean": 1015, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbd5195c-c36c-4241-ac47-060f36ca22a0": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d8327ec-5ca3-4ca0-b623-059784bb0028": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53a5fd1f-4e45-4203-90ac-dc26aadc4fcf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/576c07e7-dd1d-4171-89ca-aa7ce7c2f20f": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4738efea-73aa-4184-a239-96a073c270c2": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/236fa256-ab24-41c3-bc9c-b4b0a065f519": { + "min": 849, + "max": 849, + "count": 1, + "mean": 849, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14227327-158c-488d-82e1-7292a0c0cb42": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f24904a-79ea-4bfe-bce1-535bcb1c00a7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/107f23ad-7639-40f5-8137-c690c34e4f97": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03f15cef-d277-4111-aa0f-5a5b104e8397": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60cccd26-c95c-4ba0-b99a-a1a56bc5a5ae": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27014d01-14da-48ce-8302-18f4041672cf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27dcf41d-8f77-4237-9159-8af2fde0d080": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed9620bc-ec74-4646-a290-d7c93bdf8d72": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/009146f2-586b-4657-a32a-28d6a133212d": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61025564-ebee-4621-afbc-2da92f63896c": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fadc4789-0899-40f2-a452-63aef4272dcd": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ea9dd88-6526-4f7f-8388-ba3f503156ce": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79d2381d-4ad9-4d6e-8535-87e9ea2d26b0": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49696bad-69cc-4e57-8c50-4866fafed85d": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67b8c82c-d0fb-4526-aa64-65be44664932": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/333fd02f-40bf-4b70-9ecf-c867384998f5": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb1f05d1-5dce-4b9d-b8b0-23b681a5e95f": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2078ef3c-4d8f-47fc-9299-49ca3c75b49e": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4f0d8fa-654c-43e7-82de-1be03f2ca071": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f180a874-99db-4897-af13-e1ae406219b2": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0078f259-6c4b-4535-ab16-6062ea5bd995": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26817eee-064b-4db8-bd17-fc42ebd6908c": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c911c3e9-8eee-421a-afb5-7f7727135970": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/72d95de5-bd82-4251-993a-97ff370fd8bd": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a79ac8cf-d2dc-481a-9fe5-fa232c24229f": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a2ff9d5-d984-4af6-bb95-5a3af0f5e063": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/64f0693c-92dc-47f8-9643-00df3a232445": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c64b5b37-cdfa-428f-8506-924af6f571f3": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fee54e55-252e-40ff-ac02-3a263df0d7af": { + "min": 777, + "max": 777, + "count": 1, + "mean": 777, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57f75694-8edc-4fb9-ac7e-c69e8655d3e7": { + "min": 1289, + "max": 1289, + "count": 1, + "mean": 1289, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/624e5c44-31c1-40d8-80e7-f61b62de5eaf": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0993aeb-3993-4e0c-9d2a-77526ea282bd": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5363ec8-fe73-40d4-af86-5d43655e6aec": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f56a8c5-e424-411d-b84e-a43da2f2f05b": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96c13291-f609-4867-af0e-c82713bd3f4d": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49d263b7-0a5f-4689-a243-bb25d811e18b": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e581086-a328-4885-8012-711ef90521c4": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c32463b9-55ad-4402-8a70-bcb7105ec32d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4650a8c-833e-4cf1-8fff-e7a6caaee67c": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78a3eef8-ab31-4654-8552-194221de277c": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7459920d-4e99-4daa-b901-2ceaeb20a70a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee82b1f7-1654-45ae-af49-698038c0aeca": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa7d571b-0d69-4b65-b151-f4acd292bd0a": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a0dffbb3-2b36-4b84-97e1-2be7190488aa": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33727670-49bd-4f22-9295-68cb8a007661": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39fc395c-cf40-44e7-a98a-9a7552de0af1": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50e84ee7-b155-4515-8bbb-00babcdf2adf": { + "min": 1155, + "max": 1155, + "count": 1, + "mean": 1155, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/334cd73b-6470-441a-b441-d42d8c00445b": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46c71398-edfb-4d58-9303-6b236df73d23": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa7e13f-f4b9-4ede-ad07-fd060c32dc2a": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f7261289-c16d-4f37-9570-d23db4e0c3e0": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cfcb31b-23fe-484b-8685-9a7db4d66bbd": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56f8fe86-2d1e-4543-b241-ec0359596d98": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0be3b979-9dc5-4517-ae4e-85e8f685e6e7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b67229d3-ea86-4421-aa29-a5b3e4fa8133": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2eebd2c-af93-4058-9542-95d9f10fcea1": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4e0662da-931d-40a9-b0d1-dc4cb2843d13": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4849201d-6f37-4917-9809-698cea53a8bf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62b8502b-ef32-4e82-bed1-6815267ff670": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9bdc72f-64bd-4278-b67a-355bd78aed16": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf5385d4-fefc-40bf-8bd7-d443f058a857": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b6560986-0fa2-4eca-a109-846bd95e7cd0": { + "min": 891, + "max": 891, + "count": 1, + "mean": 891, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0eac6b2-4606-4d94-86b9-a1e20acbb739": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc06bedf-837e-4049-8f7f-a6c780240cd8": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9a7d139-672d-4c50-ad2e-3f743c502786": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6474d2aa-69ce-4440-941d-407f51bf25dd": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a665308-9111-4b78-a0f1-d051e0090665": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b89be88d-47bc-4529-bc30-384262cecb6b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28d6803c-879e-41e8-9637-35e9786ce01e": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f3f0f3c-c986-4065-83ad-4fd32816689c": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d3776b2-d6a4-4021-b0a3-8570e6c1d56a": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e0d0a07-5e53-401d-a542-89d976919254": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9808f0e5-19cd-4d02-9bcd-3ff434d835f1": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/806803ff-bb1b-4db5-aacf-dc75492708df": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75a07336-9f9a-4e6b-aa86-a4fe73b1264f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4b0328c-bd89-4111-a275-54ab9a169a4c": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ec9d1791-4809-434f-96fa-5c00516165d1": { + "min": 881, + "max": 881, + "count": 1, + "mean": 881, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab719df7-9f85-42b6-94b3-d9ee9f8252ae": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34844e49-c20f-402b-9c3c-9c180a6e6a27": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad9e3655-a668-4f78-89fc-e0022789445f": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c628ebfb-5571-4777-a7e5-336968991fd9": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3175ec85-0765-4cfd-85f9-7854ea27821a": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/726272c3-172c-4d30-8b4d-39ce3e3e6008": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03af49d9-a0e5-46d6-9f88-6e618f4071dc": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bb255ec-4314-4046-b4e6-014d0a4e8074": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b46fad50-60d8-4e93-8c4d-1fc79a3ea437": { + "min": 1138, + "max": 1138, + "count": 1, + "mean": 1138, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/900178fe-7cd7-49ca-a906-0461a6b4fa97": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d51b42b9-1eb7-4d0f-8265-b9a1f377cf0e": { + "min": 940, + "max": 940, + "count": 1, + "mean": 940, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba3e65e3-cfbc-45dc-87eb-158cc71e74cb": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f38e0a53-a31d-428b-a31d-33ea0eb5954e": { + "min": 911, + "max": 911, + "count": 1, + "mean": 911, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6da1b57-3ccb-4ec8-a510-a7a0cbeefd13": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e244c6e1-40a4-4906-8239-57cea67f6962": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8275a37-bb68-4fd7-9d67-77ab57d3a904": { + "min": 917, + "max": 917, + "count": 1, + "mean": 917, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab7b3136-d5b8-45db-bc2b-a754ef1f0d15": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/450c604a-6f3f-49ff-8448-e2a0df137584": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc8ad777-da80-4608-a9cf-061a7b32c2bc": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e797bda8-dcc4-4b76-9029-7f6618cdd07b": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c9c3d3dd-047c-48d5-97fc-729dbe727425": { + "min": 935, + "max": 935, + "count": 1, + "mean": 935, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53aebb11-6450-491f-8c8e-32dea6d1f04a": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aa9eb5d-3007-4033-8cf1-98b113806d9d": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03a52057-0802-451b-8b2c-6f9778fbf5ed": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff00b011-940d-4eb1-8430-131ce87194b2": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2ca2ea6-8fd2-41cd-92ce-4865da1ccdac": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85ca925c-5ba5-4199-a7b9-417655eb802b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6958fceb-a4de-432c-a50f-528f21b23553": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d148447a-c15b-4b89-a345-fe6f0cbaea93": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbca8c5d-a77c-4df6-8925-e76dd0029a08": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c747d7-f1e0-4ff9-ac41-6a8551b06623": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2203a238-8313-49ec-808f-6d3cc3ba6113": { + "min": 830, + "max": 830, + "count": 1, + "mean": 830, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4120710-0798-43fb-88e8-0c822fb7adbd": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b13c23d6-3a80-4dde-8a69-c4f9958eef66": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/179eb0aa-340f-480c-93b6-c2b5fc56a9f4": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25cf6bbc-77d6-4415-b5c7-6816361b8333": { + "min": 1221, + "max": 1221, + "count": 1, + "mean": 1221, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/324891fc-9afe-4d63-85c5-f625a43e4c42": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58c37438-f14f-46c1-be81-708b83384bba": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82814432-01e6-447a-8022-b0de882d381c": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d87aad3-3999-4cbe-a038-238bb5905daa": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14de96c9-a1b6-40e5-a1ad-f09441fa9970": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/096c8f13-d8d9-4ad9-8b70-1f1de909c39d": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/572caebe-4318-4e9e-91c5-3498efb7746d": { + "min": 934, + "max": 934, + "count": 1, + "mean": 934, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7db1ea9-5eb1-487a-895e-d4a471d91ad2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62ac3d84-1adb-4c2b-a759-be21b7d11222": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/804b9379-2edf-49e3-92de-b3b4b53fe3ba": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6ed49b0-d017-4fbb-a199-1342c8171de0": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bc4b3cf-feab-4c2e-9a1b-f30c61e738e4": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27156dee-1d13-4738-af90-d4baa9e09344": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/faae215b-ec4e-4264-840b-7fb46cbb69dd": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/87abc71a-4a68-4fb6-a753-6c0f07443514": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e62234b-f82b-4beb-ad31-d0469e5f5201": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/482fb088-6d2c-4c07-b487-8e1d62f79f37": { + "min": 1404, + "max": 1404, + "count": 1, + "mean": 1404, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a37d28c-a73f-4743-b34e-9c8b848e236c": { + "min": 888, + "max": 888, + "count": 1, + "mean": 888, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6fc9cdc-231b-46e3-a0e2-ffa30dcf8441": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7341750a-2ca2-4543-b9f5-aeec421bb618": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27a6b49d-adab-4113-8a85-841a6c9b1ab3": { + "min": 1089, + "max": 1089, + "count": 1, + "mean": 1089, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8def498-c63b-4049-806c-0657ea72026b": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cab9e3a3-a3a7-4843-9dd1-f44c1e91fd04": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efe8ff88-ffad-4445-a61d-390a7e6ddce9": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94555490-24b9-4272-aac7-9da68c80253c": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96a39a15-f861-488f-88f7-1d7488b3b85d": { + "min": 1035, + "max": 1035, + "count": 1, + "mean": 1035, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40145f1d-2019-4987-aada-499c14204a9a": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/30cc0d4f-3599-448b-ba7b-d076b143a6d0": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c32efad-2f2d-4bd8-a868-788f4ce27600": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93794a87-d60d-4f50-8c87-94fc83375b76": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73eba61f-3979-4dea-aa2a-6b32361ca539": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a710930-2f87-41a1-ae9d-8cec420bc0c4": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/112bfc9e-27d9-4e08-a239-9cbb6908d579": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d13584a1-13d7-4ac1-ab2f-c60c5631ca3c": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c9f587-f385-4c76-8abb-55b58c20a154": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93c65926-e0e8-4276-8976-4b49e2801d27": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19d76e08-294f-4f64-8fa0-37229d2643db": { + "min": 1174, + "max": 1174, + "count": 1, + "mean": 1174, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ad1eb26-342b-4429-adaf-99e1192722ee": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8628dea-494f-46ae-90ff-ba2501ea2ad6": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89f12ace-84a8-45fa-a076-9e60fe82f033": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afa6fcd5-fc1e-47b9-83bc-f5134de92e0e": { + "min": 1081, + "max": 1081, + "count": 1, + "mean": 1081, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9463bca-e5d6-4930-b6f8-422a96b722dd": { + "min": 922, + "max": 922, + "count": 1, + "mean": 922, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb7251b8-027b-4331-ab01-c16b8cd75fd4": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c84e0584-92a3-4523-accd-872ef462ef05": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00fb43d4-7237-4386-950e-ba9b22418a3f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d67661d8-a23f-4010-bed4-4e4faa3c0733": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/263675af-328b-4fc9-bf1d-54a9d319e05a": { + "min": 1412, + "max": 1412, + "count": 1, + "mean": 1412, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2f3ef8-db85-4b7c-8932-a57d46afc0f4": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0afe871-9905-4694-a09f-fdeda1797b9d": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9393c8bf-9884-4b40-a249-3c6ab9fd27d2": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be9f9150-1e25-4ff6-91fb-19171d202024": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6eee342-4250-4abb-98ad-61d5c7d17723": { + "min": 865, + "max": 865, + "count": 1, + "mean": 865, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d02af79-f43f-4180-9761-243cabe42751": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/729ae9d2-948a-4c24-a4bc-01008fa6f815": { + "min": 915, + "max": 915, + "count": 1, + "mean": 915, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29177f39-e811-4188-96c1-4e6f86d42b50": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/abc104bc-945a-401c-b59d-153d56f9270b": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c50ecfd-e6f0-4d1e-afd4-4815088e9478": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5d5b006-c1b5-46de-9db5-fa527139888f": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bda7950e-933b-4be7-a4c5-54177638c717": { + "min": 925, + "max": 925, + "count": 1, + "mean": 925, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/743babbc-b494-4797-b4c4-d21faaaacb4d": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/792b38ba-20f4-4f98-88c3-d74a1f9194de": { + "min": 1125, + "max": 1125, + "count": 1, + "mean": 1125, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bf8a87a7-e622-4246-b841-caed1cbc9153": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d2f10e29-35d5-48ba-a8fa-a4bcdfe94b26": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efa0adc8-1057-4b76-80f8-e360af5fa504": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bcbcdccb-ee49-4700-97b3-e61d6e8b6bd9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdbf2a42-5df4-4727-b410-f357b23275f9": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c45d12-721a-4c5b-b8fb-9a5fc58b5620": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1bb35d5-b264-4026-80c0-9588cc25bf47": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/414f93c9-007e-4097-b16a-6224bd13bd0e": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f9aaba2-18e0-47b2-b5dc-93fe835205ea": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0b64dfa-e48c-464a-983d-bd1306d21821": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/af2bb29c-47d8-4433-a41f-d72a8aedd8e6": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86cfe7d4-2181-4df1-9cb7-878db8aeebe2": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74ad21fb-8639-42b0-8aaa-efd25c76b4c1": { + "min": 861, + "max": 861, + "count": 1, + "mean": 861, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb122faa-845d-4c64-8006-1ed54cbcc112": { + "min": 933, + "max": 933, + "count": 1, + "mean": 933, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9decc5c1-28cd-4396-8c6f-9061a9d68a70": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4cc685d-2504-4b20-89c8-e4c9f8169425": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48fd1a36-aa96-4fc7-bfda-697ab25a775e": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/400fae57-adef-472b-8cb6-978007bdb024": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f536449-f9b2-446d-b0a5-12d36fbd4f2f": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/628eba56-0c6a-4222-b29c-60961941fa4c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8fee3a31-d4f2-4188-8622-68cb3899c9ce": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bad3d923-cdc0-437c-bc61-9d034e957340": { + "min": 908, + "max": 908, + "count": 1, + "mean": 908, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f72e39f8-79bf-4b4a-9ed3-b80c141da770": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/170e996f-22e6-43a5-8c6c-85416bbb1516": { + "min": 1144, + "max": 1144, + "count": 1, + "mean": 1144, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86ad59e3-fca9-4bc2-9f74-daec55e9cdae": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67424e01-514d-4ed6-9e22-f92bb33b867e": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0142016d-7bd5-4e41-aa51-212eb52938ec": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c6aa61b-08f3-47f8-bc93-d32ec3826f7d": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a169ada-55ae-4fe7-801b-b5406b1c2902": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d391aaca-9573-4a4d-8763-f716535fbcd0": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fd5601f-ad20-4248-9aed-dde728eff05a": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b36a38f1-f90a-47fc-ae3a-5a98cd7ab776": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e6d3732-d9bd-421c-9bb8-b0f399aaad8c": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c08070d-5bf3-4400-8076-623370cd6414": { + "min": 895, + "max": 895, + "count": 1, + "mean": 895, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce7847c1-c87c-43c7-ae38-5fe7f99a66b8": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8383a033-0177-40b4-b465-6a76b8366b42": { + "min": 1021, + "max": 1021, + "count": 1, + "mean": 1021, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b2bb0d3-21e2-446a-bdb6-81428d0deb8f": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f842e9db-166e-4075-8056-90657e6ee4a3": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7e25622-0e38-4c3e-ac02-180db547c3a8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad402980-a0dc-408f-88a0-e51c34417f80": { + "min": 1299, + "max": 1299, + "count": 1, + "mean": 1299, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40d623e2-ba09-41ca-9863-2fa2c3021fa0": { + "min": 903, + "max": 903, + "count": 1, + "mean": 903, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9f77711-eadd-44fc-8d25-596623b8d4ea": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27500d18-8a4e-43f3-8531-a8eb348568f7": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94f035f3-0d2c-4494-ac8e-04f7977cccb6": { + "min": 918, + "max": 918, + "count": 1, + "mean": 918, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/707b84fb-3431-4c77-bff3-066153545139": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2ca59aeb-840e-4f00-b4c5-dddca362c929": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4be8bf88-277c-4be4-a0f1-196f5ad30168": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f70e5f83-7c63-420d-b686-7044b15a67c5": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/561f9c50-fe1b-4b05-aedb-75fe6128a38d": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5dd17b8-0b65-4f5b-ad87-e3b2b04b7a05": { + "min": 1124, + "max": 1124, + "count": 1, + "mean": 1124, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/239b3d65-056f-4a88-bd61-3187796e0a13": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39245ca2-1df6-4279-877b-f430ae366c2e": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18d2f50-cdb9-436b-9912-bc93d96e173f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56c0367c-48cf-4fd3-bd81-ec732e3f8c77": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9035c99-4e3f-4a3d-8a43-efa1db2beec0": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca1c5dd3-20fe-4e43-a5a5-c4bacb84cc55": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3c8bd6c-ffbe-4ddf-8713-317c3e6c09f0": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbedecc9-edcb-426d-acf1-1c7ed846ade0": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04f1dfc0-52f7-4dd7-8af2-782d7d60c86b": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e545f0-f017-422f-ab58-54de27f59a18": { + "min": 773, + "max": 773, + "count": 1, + "mean": 773, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7cdb5a8b-d4c2-4762-85d7-8b84dd57ee29": { + "min": 1337, + "max": 1337, + "count": 1, + "mean": 1337, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d721d193-69c1-4153-804d-957eca8532d2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d1cd2d90-5a1c-4108-9367-fca945341cec": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8331ae83-f520-49ed-ba89-fab9d296e7dd": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36de1f1a-4aab-4e43-ae5f-7e7f3b2ca032": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8e64581-d17e-483c-addd-2f5bf0086c78": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8ac9a6e-b921-468e-b5c9-d6e55c245514": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8994d4-f171-48c7-b668-8362d0012041": { + "min": 370, + "max": 370, + "count": 1, + "mean": 370, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e21bad6c-3303-44e1-907f-c8779fde1f59": { + "min": 619, + "max": 619, + "count": 1, + "mean": 619, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/100c1b08-fd5d-4416-b108-a00cc2964f53": { + "min": 403, + "max": 403, + "count": 1, + "mean": 403, + "p50": 399.5, + "median": 399.5, + "p75": 399.5, + "p90": 399.5, + "p95": 399.5, + "p99": 399.5, + "p999": 399.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9346edc-f526-4df6-a06c-cfd03d90365a": { + "min": 379, + "max": 379, + "count": 1, + "mean": 379, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b84045e5-ac3b-4bba-a96e-a8dac9cd2303": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84f79b05-0dbe-4aac-9cd6-cdeb769f1789": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7cf27ab-a846-4777-bce8-522a614c9815": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02ca0ee3-2196-41a9-a953-282efd324182": { + "min": 384, + "max": 384, + "count": 1, + "mean": 384, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d389d68-2ba3-4ca3-a8ff-30550b7506be": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57d17a2a-f85a-42ec-8a2e-37b2125fb454": { + "min": 413, + "max": 413, + "count": 1, + "mean": 413, + "p50": 415.8, + "median": 415.8, + "p75": 415.8, + "p90": 415.8, + "p95": 415.8, + "p99": 415.8, + "p999": 415.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/45fd3921-b4d4-4c8c-be0e-8285a88a7a27": { + "min": 376, + "max": 376, + "count": 1, + "mean": 376, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/618d7955-0948-4999-8531-79490413a58a": { + "min": 746, + "max": 746, + "count": 1, + "mean": 746, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16bd0bf4-fc47-4b54-988f-b5ff5cbb08aa": { + "min": 623, + "max": 623, + "count": 1, + "mean": 623, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/47b5aa1e-54a9-4db0-be63-213fe9410335": { + "min": 406, + "max": 406, + "count": 1, + "mean": 406, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f9a8f3f-8046-4f8f-8c17-be68b2c7e721": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21fdddae-e611-4cda-b078-eb51c401ec21": { + "min": 385, + "max": 385, + "count": 1, + "mean": 385, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20eb6eeb-4382-4d56-b904-c249bdbea292": { + "min": 952, + "max": 952, + "count": 1, + "mean": 952, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d5f4da16-9b14-4445-818e-0a2fd81f47f1": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc941e77-9f07-4d6f-bae1-b4dc88ff1c58": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed1bcefb-6b70-48fa-88b5-d5e82fdd995d": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0eae7ad-7524-4d5b-a1d4-8d15a20c961e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/299353d2-d8f5-44ca-8a1c-71272fd9f7e4": { + "min": 841, + "max": 841, + "count": 1, + "mean": 841, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/494496f9-c417-4d48-a4cd-7e081a2819a0": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d58ce921-5673-4a96-be38-da6fc92351d5": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/286f4a85-caf9-49f8-a363-8c7c08daac15": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ea422c70-b837-4ebc-b34c-e8f9a2c7b807": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f1ee014-07d8-499c-a44b-3e5bb81c2bcf": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/81c6faa6-c75b-4b0b-8f5c-da952c3bc92f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efcc8882-b8d6-4477-94ce-5f02528217ef": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/42fb8478-e07d-4f3e-a29f-118678a7d20e": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/80daa6a5-d8be-4434-b3dc-c675915b48bf": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fe5f5e4-deaa-47a4-b7b7-589cb021850a": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c8f891b-9237-4999-9448-9555201887c7": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2568b0c3-3acc-4e9f-9fb0-fab467d0109e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fe1dc9d-c2b2-4b09-831c-860dd3fe8188": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7bf88501-ef91-40f8-a4d3-8e46b8bb080b": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/08dae10f-954f-47fb-90d1-ddb6c0c4faee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/675c184c-5af4-4723-bcd1-d2525b60760a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c602fd0-a7e1-4514-9d27-086fd8548945": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24752056-944d-43c4-9bf1-3227bce1a7e4": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b134ad2d-b7a8-4dc5-8137-4344bfac9efd": { + "min": 775, + "max": 775, + "count": 1, + "mean": 775, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a64dc9cb-031f-454e-a9f5-22f5b1b2ea18": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c910cd0d-84e7-4ca9-8f70-cd2eed999cbb": { + "min": 1024, + "max": 1024, + "count": 1, + "mean": 1024, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00633c7e-7211-42ca-ab64-1accbe26966b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d69ba16d-7e4d-4bf6-8d09-a4935b2aa0ac": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/07c112fa-f625-46e3-b072-d6b25acefaf7": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3295a4f-0694-4cac-8be6-7418af1ac898": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/377712e6-a204-4efe-b90d-f01a5aa52483": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de17e8e-9949-4088-b96f-4e5bb1c940de": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a25d718-94db-485d-b353-04e1fb1c9c7d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00df482e-802b-43a6-8a63-209879088de4": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d853b44-3f76-4fdb-abcf-409fb0b9587b": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2099c8-95a8-45d9-912b-3f1029c90e9f": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e15aac0e-93dc-4957-a964-6fd3774fb452": { + "min": 854, + "max": 854, + "count": 1, + "mean": 854, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3bda564f-a1b2-4005-9e9c-01770295f620": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4a33d6f-8f55-44c1-9458-df6ec6a4caf8": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9faedf4-b696-40da-be0c-c8c34b75c232": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1881abcb-24ea-4b56-a88f-a202db58c0ef": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a036ad20-b013-40ba-8d84-d3c2511c3bb3": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce162e0-7163-4f3c-a966-e096322ef6fc": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae28b25f-09ae-46ab-8854-a6ddc2d43d61": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bea063f-c0f6-42b5-a87f-d9fddab88b1e": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0180bcf-9faf-4e4b-91f3-091b5d85be86": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdcd2041-e2e7-42a7-bec8-5befb6249361": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d725da29-e71a-416a-b0c7-0ed8f81aac77": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1315fc7d-bee5-4348-b4d9-220355ac18a4": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78b2c1e0-19a0-4323-80bc-c58fb2796b68": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7905c905-a805-4434-8c90-93004d2153d0": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a12019ea-3a9b-4462-a16f-aed71ca706f0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/629df295-2a7c-48b1-b2cd-a41a7c24c3eb": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9aba73e-4288-46ec-a383-f3b82c6f59f8": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f54a44f7-cc32-4b33-a53e-c886c95f3bd5": { + "min": 829, + "max": 829, + "count": 1, + "mean": 829, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bd68dc4-625f-4211-89be-c467ea676112": { + "min": 863, + "max": 863, + "count": 1, + "mean": 863, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2151da93-b0b9-42f7-b063-76f316b581e4": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/22840379-ea26-4966-8554-ae3b83b01cd9": { + "min": 931, + "max": 931, + "count": 1, + "mean": 931, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f30e9f1-4540-41cb-b296-ff8c487839e3": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4efead97-8657-4112-94b8-8c586196db3b": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a8ab234-6d84-427a-ad97-d74d9c343300": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b25b5bce-7db6-4455-ab50-b34bfe39800b": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfd8a9a8-a433-4b85-b519-aff3a99a98be": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/087ff98c-6a00-4012-a802-568a8e9c1892": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dd6439b-2e12-4f6f-892a-8bfadf8184ea": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4b4f4a2-8c2c-4c3f-8ee4-e0b8d0d7bcb0": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0b11e51-f0a5-4d9d-9edf-721d75406056": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7aac1784-631c-43df-923c-6bcf76bf5bf4": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb613959-b868-46f9-a51f-1cad2bb6b259": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef3f239b-6e05-438d-aebc-f70e3e51ab36": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c615e9a1-2c33-46d3-9d66-59b17290e75d": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6943dd72-0cc7-41bb-b3de-5f39d6cda371": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65c4966f-e3c6-4434-a59b-ceb61bc6e38a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6507894d-28d7-40a5-8e3b-44708d7adec6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0f4e771-6187-4ea8-b509-076c65582c87": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f52cf4d-8f08-4182-9af0-92b0b977985b": { + "min": 1005, + "max": 1005, + "count": 1, + "mean": 1005, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfaef76c-af82-4709-b74e-5fb596b0cb9c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/de7b651f-492f-47a2-982f-619e26eb882f": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dab71ca1-f7aa-42b7-95e4-0bdebe8001a1": { + "min": 1072, + "max": 1072, + "count": 1, + "mean": 1072, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de8dc75-7bfd-46b3-a8e9-33ad27b8801e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0fb54f2-0569-4095-abd5-24b3e15cdab0": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b2272118-50ee-4901-8243-2e8ff4f79d94": { + "min": 834, + "max": 834, + "count": 1, + "mean": 834, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b63ff50-e4ab-4de3-bb50-818fd96dc55b": { + "min": 1067, + "max": 1067, + "count": 1, + "mean": 1067, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1791c96a-e71d-4d7c-8622-0efcacb4d3eb": { + "min": 1356, + "max": 1356, + "count": 1, + "mean": 1356, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd1c80da-6b6d-4c22-84e8-fe6bfc815f86": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4c7db-1e91-4a62-aa37-a735bb24a4c7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c6c8183-3850-48dd-8be0-681ca83ff0cf": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa8e7aa0-e2f0-4bc0-ae4c-67ec447ca037": { + "min": 1165, + "max": 1165, + "count": 1, + "mean": 1165, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0286370-bc23-410a-92d8-3f5d27fb2259": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a35f65c-8c1f-463c-a935-1214340e9800": { + "min": 944, + "max": 944, + "count": 1, + "mean": 944, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a983f27-5347-4964-a281-19a124075022": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27999c7e-7bd7-4cdf-8bdd-6fba5f03467a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14f313f5-3772-4221-92c7-61cb1cb4b402": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a59fb1f0-79c3-4429-a511-a5109bb48e71": { + "min": 870, + "max": 870, + "count": 1, + "mean": 870, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/883a0b30-a64f-4750-a527-b56a515ebbd5": { + "min": 1010, + "max": 1010, + "count": 1, + "mean": 1010, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6932fd4c-6954-4c55-a733-1957b45919d1": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/534f0804-462f-45b8-b88b-3263b96eebae": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b9e39dd-17f2-4e57-ae59-0e7b1d0744aa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b33404e-e31d-4559-be89-706ded360580": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f841a916-e670-4d62-a423-9eb7f2adabd8": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e44e818-dbb9-4e3a-8852-9896612e468e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b9e1d62-6b2c-4ac5-af24-9fb902b29606": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc329f23-2b2d-4bee-aaf7-be675835a7b5": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffb7a582-61f5-4fd9-ae05-ff471bf8742d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b7e134d-af1d-4b04-ad94-07457a53d40f": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e076beb-321a-4bbd-92ce-474568a472cc": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90d36bf1-5fc9-4198-8580-4bd3d5678ec0": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78cb0af3-204e-48fb-b946-2494f29462fe": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe73e7f4-7f8b-4411-a401-9b68fe94fe79": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/283cc8d6-2596-4cb8-9e45-b82060f6b4f6": { + "min": 857, + "max": 857, + "count": 1, + "mean": 857, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc872f67-960f-406f-b6ad-2bdfd83e5ae7": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e481373-7bf2-4a78-aeb9-588cc9979db3": { + "min": 1018, + "max": 1018, + "count": 1, + "mean": 1018, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/241baafc-0215-497a-8519-e892918ed99e": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8884069-7d3e-447c-a102-8c6f2103e4fa": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bef4a1ea-9ef4-41cb-a771-23a080bd2019": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca315b10-e474-4377-bfe2-660ad4feb151": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2c6ac8e2-8141-486b-84c3-e3c16f1d3a67": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c4b731b-662b-4067-be30-b1a6b233bb43": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ab0c360-730e-4850-b4db-513f06005ffd": { + "min": 1017, + "max": 1017, + "count": 1, + "mean": 1017, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8050d71e-5968-4347-9d1f-e8fb11cc8197": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b85df4c6-5597-496e-8fe7-82d2f3adf5cc": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/011b0d98-3f27-4850-8980-74df779eabdc": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9937d592-4d8d-42e0-9ae6-7d816db396a8": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b77ede8-09f1-493d-a83e-81eb6abaf71b": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d43a9ef2-c98c-43cb-a223-5665cac8a16e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a460d6c7-0ba0-4d56-be5b-59d981b598d8": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05374f63-a095-402b-9961-b909b7bd0927": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48bc8061-cc12-4f51-89c3-b2aa47fe4c1d": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cbd328cd-e8e6-4f01-9065-8d19029e0840": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/69d63b5d-a553-4a79-bb3a-efca5a5871c8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61521f72-40b5-44fd-ba0c-1e3f5f46d570": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2869e20-69e5-4cfc-bd0c-b34a9c48e176": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7986430-a32d-4242-814a-67e19c06f6fd": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bfaf40c-da4a-4258-b29c-7dd5dc7d48d7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34063397-1c6d-4e5e-aeae-1a1b454116ac": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bc7037f-e90e-444d-ab3b-05432c2bcfaa": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b41e6a6-9c55-47bd-b08d-8d159eb9327c": { + "min": 1281, + "max": 1281, + "count": 1, + "mean": 1281, + "p50": 1274.3, + "median": 1274.3, + "p75": 1274.3, + "p90": 1274.3, + "p95": 1274.3, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96b56e41-019d-4024-b917-0e2a6a6b7d3b": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0efb0182-24e5-4ba1-9b5e-6f35739f20bf": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d96aa0d4-5410-4b98-a3c6-9e451c8ba9aa": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a2b64f6-e256-4917-a99c-d188a937cd44": { + "min": 1038, + "max": 1038, + "count": 1, + "mean": 1038, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0b1d991-130f-4b65-977d-348cef790760": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a073f7a1-b59a-459c-b577-a7a739955b57": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9ac1463e-d695-4597-8781-3fbba0710dcf": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48920ada-ff67-432d-abce-326338086373": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe397143-436d-4e9e-a098-f87ba9ae6ed2": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4d8174c-ea98-45bf-8091-f067216adab5": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/940c27a6-1cb2-4c11-93c7-efb96f08d22a": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24b258f8-5d9e-45dd-937b-f85279be22af": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae26af3e-e0b6-4834-b0be-0447fc984461": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82f1bef3-ea09-4304-81da-b286627d7b22": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7df93b2-d859-492c-b3bf-dd54687c7644": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb483477-b9d6-404f-a7ba-02151d6a2989": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5773b9e-585f-443b-adbf-4c584696c74d": { + "min": 1142, + "max": 1142, + "count": 1, + "mean": 1142, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cf55460-6aa3-4f86-a462-12dac944da3e": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b90fe9fd-1434-4baa-bfca-8e93efc0f3f2": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/70f162bb-d2ba-409d-b0f3-1f1a565a8af7": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8304f58a-481b-4e82-b215-dfcf7d9bd12a": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3821cf50-a908-4b85-a1c8-67194366c1b6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b39542c1-714b-4f62-b142-2836d3aa92dd": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e3706f6-8f2c-43e7-92ac-2b14b8362479": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0771e57-559e-4c66-a16b-5935d21da745": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f64ad05e-b26c-4579-91aa-2e3a880b00af": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82ab489f-b442-4147-bdf6-557f798ebf89": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65d369b2-aa4d-47d5-9225-7b7fae26ed7f": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38f56aff-33af-4860-a01d-ec1bd4cd1db1": { + "min": 363, + "max": 363, + "count": 1, + "mean": 363, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7e859a2-ca34-4fad-a019-da6ced03ab7b": { + "min": 387, + "max": 387, + "count": 1, + "mean": 387, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5660c04f-fb21-4ce4-9f68-237f2ffed2f1": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe7d655d-a647-4650-b53f-90d176d03603": { + "min": 377, + "max": 377, + "count": 1, + "mean": 377, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32fdf00f-0d19-47e0-a666-184be7ca0ed3": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a45b0acb-2e5f-4745-ba62-1e03663168f9": { + "min": 428, + "max": 428, + "count": 1, + "mean": 428, + "p50": 424.2, + "median": 424.2, + "p75": 424.2, + "p90": 424.2, + "p95": 424.2, + "p99": 424.2, + "p999": 424.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46bcdad2-8bb7-4f66-bfee-c49fe79ba48a": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d353cd4-a358-4e24-94af-b90601b6a63e": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/787c979b-c075-40e9-9f61-4c3cccd5139a": { + "min": 705, + "max": 705, + "count": 1, + "mean": 705, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27e60285-c845-4260-b43c-7c79534c39be": { + "min": 728, + "max": 728, + "count": 1, + "mean": 728, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7fe394f-b524-4dd4-85b0-bf09009324ca": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e97f50c7-348e-46c2-9f72-7131c4ebf6e3": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33cecab2-833a-493e-964f-7e069b8695ae": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93d23d49-1e6f-48ef-a338-e01b505efe4b": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ade6646-9f43-438b-a948-70cc3285c2c2": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/872c46f1-63bc-4b25-8d12-caede331490a": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c70d330-cc9a-4f6e-9b62-8eece7c9c8f5": { + "min": 776, + "max": 776, + "count": 1, + "mean": 776, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23be3c84-78f8-4b5c-baaa-389c78bacc31": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fa64832-447f-4dbb-bb8f-5d1b8fade0cd": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7ca54b5f-8219-4193-b294-2c17a5500983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c87153d2-58a5-4788-b8a4-fff31d905145": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1a1f8282-8510-485f-99bd-e76fe4bdd08e": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b71b553f-f7ae-498d-856c-dcdcf6a18b02": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20dada24-5093-4c1e-8916-09fa036cf2ba": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff32a3a6-072e-4ff8-b0db-890f4f54cee9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89ea6b20-2619-4577-8790-d52e6540a5fc": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23f04b3f-656f-4084-ade3-d56c4c9af2b7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9608d262-57e6-4523-a6b8-6c74529a8857": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2314e2a7-0a62-4b97-b3fb-af9892d00730": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/841e03e3-6c21-4464-8fe8-590b3b2412da": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/550c2c07-3bf4-43e3-97d1-abe96b82fcbf": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb9ae528-e853-457e-b22f-8a2bfd67d075": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1196ec0-cef4-4c14-8de7-453fc5eff16c": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11efacf6-e51a-47d4-ace4-1563e8bfe3f2": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b116186-aab7-4f51-93ff-8bee20574778": { + "min": 1217, + "max": 1217, + "count": 1, + "mean": 1217, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/243517b6-510f-4eac-a2ca-600be81ac1a3": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4a99235-dcb1-4ed5-8b90-02cad14a1a53": { + "min": 1022, + "max": 1022, + "count": 1, + "mean": 1022, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a14fad83-3aef-4307-9980-fb6e7fd267f4": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90eb343e-3efc-4c44-8a62-d9459cc85175": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ad5f1d5-2937-44dd-b92d-ff273200521c": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/da83b475-8079-4e6a-b126-181a950df117": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4eeda210-6b89-4cf3-bdde-8653820f04d0": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c02bcef-9080-4035-86c7-1d9f8945fdb4": { + "min": 1038, + "max": 1038, + "count": 1, + "mean": 1038, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0ffb30d-340c-4d1f-85a9-a881337f4678": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cd1f52e-072e-436f-a660-fa815053241f": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65446a04-9ad7-40c2-bf13-d0df9f0abac9": { + "min": 1119, + "max": 1119, + "count": 1, + "mean": 1119, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b7274549-472a-4817-83e6-a0c39c39510b": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03ee2c93-b848-4eaa-88ee-3f9c11676f88": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2803a45-c563-402a-bbdd-010dbbe0edbf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d8269da-52e2-49b8-8f0a-8f142916249c": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f36e406a-441a-4f4a-8752-a277b1959d0f": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0a675b7-df21-4858-b981-afc1a7d19197": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/267e18b0-6a06-40fa-8b2b-2356379ba2a3": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cdabb57-5a52-4981-a9a5-1bc33543508b": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4428a78-050b-41b4-9c41-43cdec803287": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb100c9f-e893-4a95-9ce5-e8c857dd5fd5": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c950336d-5cbe-4c4c-b4fa-e6ca3e60f3ba": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc3a6d1b-c154-4a5a-9938-0a3539fbc4a9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1e8c368-c9a1-49d9-b390-201c5d86a0e6": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df14aa0e-7357-48fb-8336-cff10b69814f": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f60162c7-72d5-4e1f-a62e-eb9db6355059": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e798640-e809-40e0-b067-33099c1344f1": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1f556f8a-55c0-4011-8aee-748104123588": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffcfe519-82a7-4f6c-be23-86be780cb784": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd1eaa9d-0460-467d-a525-045e26bd8faf": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33ec1a4f-b22c-4f89-aa3d-27c31ce41340": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dc2a2124-17ce-441b-a7c8-f221b6a0e948": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123809de-1d52-40da-82fc-5f00e71d1274": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7add20a-6bef-4aa7-9061-3b76e70adfcc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f2499d4-8e2f-4a36-9e7f-c18b7986dcaa": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5206ca6e-b743-43a1-935b-fd4205fd5b1b": { + "min": 1302, + "max": 1302, + "count": 1, + "mean": 1302, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/202a26b6-32ff-452e-b3e1-a1e44be1d3a1": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5373e3ab-e784-4219-b2c5-1a8c974fae1c": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f916881f-a6bf-4923-9cc1-ff333dcc3428": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06cf17a2-0f5c-4160-a730-eebcd4ec147f": { + "min": 1227, + "max": 1227, + "count": 1, + "mean": 1227, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32c4bed9-ad1e-4e5d-9a95-626766ddd16c": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d44106d-10cd-4b72-8773-a5fda6f02856": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12d887cc-54fe-44b2-a7b3-51711141b198": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31037bd0-96db-48f5-9e5a-026f0b4013fa": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e7e43fe-0ebc-4c79-a5d1-98037f30cf52": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73431451-5a1c-40fc-9a22-ae3ea201320e": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a07da492-f6aa-4fbf-a0ed-3924091e167f": { + "min": 1128, + "max": 1128, + "count": 1, + "mean": 1128, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bde5bacc-f00e-4971-9894-ef1e88739b95": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc6048f7-c66d-4b3e-88ec-968e90d7a3c7": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7822d94-872b-4c9f-b17b-0d9554b47b4f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85e2f72b-39ec-4ec7-b597-c7d38116bd05": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cda3a5-759a-46c8-911d-9b611bf04023": { + "min": 862, + "max": 862, + "count": 1, + "mean": 862, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f760880-f902-4ec4-a006-4494218fda39": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18b2c8f-9106-4d50-9171-d58feda61915": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b636a39e-5831-4258-841c-4d92c9758d68": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/673bda91-ecba-440b-b234-7fd48a72254c": { + "min": 993, + "max": 993, + "count": 1, + "mean": 993, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbc85568-5c7b-4e85-9c9a-c9562d0acdb7": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed5c7e73-6eea-4df4-9364-8e128242eb1e": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a0f54ba-1f09-402b-8a54-f682c51eb68b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d14d214-3419-453b-8d90-96ba637eea3d": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/584a05fb-af4f-4ba9-8dfd-c06c716bf5c0": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c6a99ed-80c6-417c-afe9-17a12d1c021e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28482f2b-7608-40c5-b145-b0f806e55cff": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25183d7a-c865-4fd5-84ff-2abe71cd2a34": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d83e40b-6a83-440e-8cd2-95eec3b35cc6": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05f53476-c49b-486a-86d7-9616353158fc": { + "min": 772, + "max": 772, + "count": 1, + "mean": 772, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f37b25f1-e5b9-4ae1-994f-07c093137e29": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8fad810-f9bc-49e1-bb8b-583e80b7e0de": { + "min": 1050, + "max": 1050, + "count": 1, + "mean": 1050, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2824032-e524-439e-846e-86d7131fa081": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6137ee31-7c04-481a-80e8-a59a13f7e4c4": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a507d336-721b-4df3-9d63-ed753c7b43a1": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2ce91c3-7a74-4aee-9871-82804a1721ee": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1775e60e-8eda-4e5d-b5a8-a6588f734e35": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b3070396-303c-4998-8b35-487e9f42b237": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a3312f3-5cde-4680-8b9e-2fdd7f820924": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6d610106-538c-40b7-9b97-876de2317c7e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b952d1ca-4f50-4fc4-afd1-c50f6cfa8b5d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0c4e50f-1463-43a9-b29d-aa8364956d2e": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/098057c8-7020-4c76-9b84-c267bfb868db": { + "min": 6065, + "max": 6065, + "count": 1, + "mean": 6065, + "p50": 6064.7, + "median": 6064.7, + "p75": 6064.7, + "p90": 6064.7, + "p95": 6064.7, + "p99": 6064.7, + "p999": 6064.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb8e904c-d168-4339-b892-b55f75926f68": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/153bd78e-9966-45e0-9723-ccbb7683dcfb": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1817c818-fa3b-4d4b-96dd-b5ae09d3f0f5": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8192c9c1-8f52-41b0-8806-3e821b66a54e": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9375ba37-312b-4e76-8d49-ffc93555243c": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba2a9ba3-8ab8-43e8-b420-dd9be833d86b": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/762ccfef-c0af-4e6a-ad54-a111fe3e0046": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/428e28bb-4805-49a7-94d0-fe7a76a4134d": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5508e7aa-6edd-4c96-9ff8-1c43133b8b26": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55598ce5-fe8d-4da6-8485-1e5567723599": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b97ea2-753c-45e1-8467-c4ad9a0fda63": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05ece630-c369-4f2e-b327-5fc61db6db10": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8ee7e6a-ce3d-4f1f-b352-1a21e9efe34e": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06589ae3-3f89-49a2-9dfc-87d97ba270bc": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a2da9b6-7ad5-462f-8e7d-1b6fda6ea5b7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/18ad1568-41e5-41c5-a771-d5b3575ec1c0": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75642a26-340d-4fc2-aa5c-ad6be6d677ea": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d4edd84-f6fd-478a-87e2-96ced1304c77": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3b0268f-7268-406d-9f65-e00ed8631d72": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75aa6bd0-8ca5-4854-8fec-8b0fa43a0d14": { + "min": 990, + "max": 990, + "count": 1, + "mean": 990, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c80bfdf2-1fa9-4b2b-91a0-67fa4735119f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dcc5e22-78a9-4037-a869-8a86666185e9": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bdcabf13-614b-4027-adcd-a0d2fb3f1ece": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8e2db7a-0c78-420e-8e80-c46a7063f841": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f46f2b2-9b3b-4ff6-81d9-f2dc7f51eb67": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b537ca-21e2-4831-8e6b-480c0e206023": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e872937-6ba6-4d25-8de9-bcd27361eac7": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/99be4855-1c52-4f7b-ad38-7df75d0224b1": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c9af162-77d0-404e-ae1f-f84a39c656fa": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dec2be06-df1a-4030-9296-07f876faa59a": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b0b5d14-dd41-4f00-991a-54e30b0ad61f": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4447341-0e17-47d9-b7a8-c4b3e6a1da81": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ce86c85-cd06-40fa-9897-9ec8bf9b6b90": { + "min": 1205, + "max": 1205, + "count": 1, + "mean": 1205, + "p50": 1200.1, + "median": 1200.1, + "p75": 1200.1, + "p90": 1200.1, + "p95": 1200.1, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/301b7098-f45b-4986-97a7-b06394a883cf": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfa4ee7c-b332-40b5-8833-8593b1840190": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bd19486-e0f1-42cd-ad19-9cba04f78bc5": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fba1b67-eb76-4b11-9bf9-58995e422fcc": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e304b73-59e8-42cb-ae14-1ab0f569583c": { + "min": 1228, + "max": 1228, + "count": 1, + "mean": 1228, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c3a0135-1d0c-4c49-b6c4-98893edd4b37": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a4d3d17-0cdb-4a3d-998b-9e48a52af233": { + "min": 1000, + "max": 1000, + "count": 1, + "mean": 1000, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/45b44e01-2b50-44db-84c6-1e4975079342": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4ad9cd4-d704-48e7-943f-aae51aadc2fb": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d4a34bb-7531-4d4a-abdb-d787df8d7de2": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5f043a9e-f31d-4bd1-8087-ce645c78193e": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53abbaae-f49b-4cea-81ee-7fd0174d20bb": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fcf90e6-64d2-4f08-a3f6-525d378a4864": { + "min": 841, + "max": 841, + "count": 1, + "mean": 841, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ee11ac2-ebc9-42b5-b9ef-70af27fd9b81": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15e58dc1-2a03-40b1-afa5-8800d64700bc": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bcc4f35-2a7f-4a89-9f16-ed568f533628": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ab5a291-49f4-4f9d-b332-87ad381896e2": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aeec797-9eb1-4619-92ba-dbbc36150ba1": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84c641ee-cac7-477c-8377-53b26e74a357": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5990aa40-6543-4f7b-8cae-50864865292b": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + } + }, + "histograms": { + "http.response_time": { + "min": 363, + "max": 6065, + "count": 1800, + "mean": 847.8, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1043.3, + "p95": 1130.2, + "p99": 1353.1, + "p999": 1556.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 723, + "max": 1545, + "count": 900, + "mean": 853.2, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1022.7, + "p95": 1107.9, + "p99": 1353.1, + "p999": 1525.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8e2d906-aebf-4c94-90d1-4d475b0b565e": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11598.4, + "max": 17005.3, + "count": 857, + "mean": 11854.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12459.8, + "p999": 12711.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2dbe0e1-f3c5-4e9b-8a2f-700694bb6ef2": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d19e6d17-0352-4df2-a47b-572ad4b6d816": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/443ef2c4-8f5b-406d-ac2f-f03ca05ad861": { + "min": 956, + "max": 956, + "count": 1, + "mean": 956, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36b96bf0-0418-4cc0-b1d8-5038bcac0ca0": { + "min": 1070, + "max": 1070, + "count": 1, + "mean": 1070, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d94fd7b-8fa4-4781-87af-388edc8b4226": { + "min": 727, + "max": 727, + "count": 1, + "mean": 727, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96b316de-717c-4b3f-b450-b542c77679f9": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e745593-c147-42f2-90e1-1a828a9bff72": { + "min": 968, + "max": 968, + "count": 1, + "mean": 968, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce04db4-6689-443a-879b-302498238049": { + "min": 712, + "max": 712, + "count": 1, + "mean": 712, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78486493-73f6-4d64-9b81-dc53714790b9": { + "min": 697, + "max": 697, + "count": 1, + "mean": 697, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bac1f4ae-7e5c-4961-8cb5-045f7af4f816": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8f10c5-968b-425a-908e-7bdc4cd29117": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a52a3cb-019e-46b5-a061-21758d4ab132": { + "min": 726, + "max": 726, + "count": 1, + "mean": 726, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4e91613-b5fc-44f2-9fa2-5c79ae62ffa6": { + "min": 735, + "max": 735, + "count": 1, + "mean": 735, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dfa90678-45a1-4b91-bb1d-cadcfc0c39ac": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0ef0547-5435-470d-b655-5a425ff00f8f": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6668faa-a1ee-4c98-943e-73c0d2e17120": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5ffc7458-2ed3-4d32-b25c-d373025c1e4d": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b9f0ec10-6127-432d-aecb-1bfc783d6d14": { + "min": 733, + "max": 733, + "count": 1, + "mean": 733, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2099ea74-b6fd-4437-aac9-2fb3c59b7726": { + "min": 1338, + "max": 1338, + "count": 1, + "mean": 1338, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1b804d2-e8b9-434d-8735-6f9699ce2b44": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60af1212-f05a-40d8-be85-fb33171c06c2": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11ba82c2-a2b1-4eac-9d99-034e87a4e057": { + "min": 725, + "max": 725, + "count": 1, + "mean": 725, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5416246e-3e29-4178-b222-f57d5b487d68": { + "min": 706, + "max": 706, + "count": 1, + "mean": 706, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03d32438-f79a-4ad8-8125-f4ebdd486282": { + "min": 707, + "max": 707, + "count": 1, + "mean": 707, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf7ccd97-0469-4abf-bdb1-5ba622f51f7a": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a16eca9-8f18-4098-97c8-1132d506e4b1": { + "min": 954, + "max": 954, + "count": 1, + "mean": 954, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40ddb1fa-c172-4464-8af5-99385c774038": { + "min": 723, + "max": 723, + "count": 1, + "mean": 723, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c63353a0-ad67-4eac-941d-d2e2a9d6a39d": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39906451-3e9e-436a-9df2-087713f8c2ea": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1578ce2e-28c6-4606-bfd2-a593022828a1": { + "min": 1057, + "max": 1057, + "count": 1, + "mean": 1057, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85d90e0b-6fd6-4927-b70f-99fc533dcb4f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5380b7f9-a7ef-4e67-b6a8-24a4a69e19bf": { + "min": 718, + "max": 718, + "count": 1, + "mean": 718, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5abb9c98-388a-4755-b8cb-968862cf407e": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b22be43-e52d-44a4-a341-c3cbf673fe9e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/608b56ef-1398-4b55-aa3d-e46bad8f2293": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16f81463-4ebb-4c27-a3ac-f611cb636c0f": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c4bc06-a3b6-40cd-bdc7-c205e797ba31": { + "min": 949, + "max": 949, + "count": 1, + "mean": 949, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12711097-51a6-4fa3-8067-c9a0b23f9f58": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d3d0edaf-1eea-4299-bb2e-f0fd42e37d5f": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f2ef0ffa-d14b-4ffc-a9a4-9f1bfa0a4af8": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3aefd52e-398e-4886-a2d7-5f2fb0390052": { + "min": 737, + "max": 737, + "count": 1, + "mean": 737, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a761316e-5e04-468e-8de9-43a2c8b786e8": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e89b16cf-d0cf-4aee-9691-381b159d0fe4": { + "min": 703, + "max": 703, + "count": 1, + "mean": 703, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bd979ace-90ef-4795-807f-91cb049c3b54": { + "min": 831, + "max": 831, + "count": 1, + "mean": 831, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12ad7a1c-eac6-4f12-9fe0-a9704f6ad7c6": { + "min": 721, + "max": 721, + "count": 1, + "mean": 721, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e30500bc-82c8-44ed-89a1-28cf7c1e1dc8": { + "min": 1052, + "max": 1052, + "count": 1, + "mean": 1052, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d0ed662-43ce-4d6f-8048-e6dbc7f4ed57": { + "min": 947, + "max": 947, + "count": 1, + "mean": 947, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/88f9c622-6931-407a-9cf5-3513a885785f": { + "min": 714, + "max": 714, + "count": 1, + "mean": 714, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b6054d1-4318-40a5-8209-c4448a1c39bd": { + "min": 709, + "max": 709, + "count": 1, + "mean": 709, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7078a08c-c434-4c18-b703-34e0ca022bd4": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/10dcad79-9020-4ba4-b34d-1759be951a8a": { + "min": 1186, + "max": 1186, + "count": 1, + "mean": 1186, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3907e3ee-6cb8-4bb1-8190-5e7c2c991ccb": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5c5e775-f4f0-450e-8e83-4e0162f2b44f": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a1dd4f6f-3c4f-4296-9cf5-5a0b339e009c": { + "min": 867, + "max": 867, + "count": 1, + "mean": 867, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02db555c-aebe-49b0-b4a2-49dd31b6c082": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d04194a6-c148-4c86-a1ef-b3255a948093": { + "min": 1357, + "max": 1357, + "count": 1, + "mean": 1357, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f610f92-d8f3-4856-9430-908bbe000410": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc96bb99-cf98-42df-b478-d57211b3f525": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4fa4e49-adea-4093-964b-8e76697da82a": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b08269-f9c0-43d4-8c87-f2a703f8f927": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/350c0f30-6593-4d85-a7b7-6b69a983eabb": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eeccd6a0-11a2-4c2b-8ff1-d09039d90d1c": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4ab8f51-2106-4786-889b-f0f7d4f4aefa": { + "min": 936, + "max": 936, + "count": 1, + "mean": 936, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b887fc13-3c6b-4679-9f49-6fc9dbcd38a9": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2b3fe46-1330-4dac-8d94-641cab468f1b": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0efcbf9-6d94-49c8-a565-9d2a33d019c9": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c4e172b-ca9c-46d6-8fd6-bc4c3cbd3ba3": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d27a5e6d-89fb-4580-aea0-b17a35cef8dd": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/652c419a-8ea7-455b-9b21-8b65512e83ed": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b80f176-ad07-49d5-a9f8-aebfb4df2e12": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa65760c-64da-48fc-8e1e-fd22efb79e87": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0e06b0e3-0512-4251-9277-0c1ce5142c26": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6ffc9613-b1f9-42d1-9531-d2082676f272": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5eb8482-2188-4050-8ede-cc570d6c15c1": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b1c996d-fae9-4fb9-82be-d1e043660e16": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/caf13566-343c-469b-9dae-a27735d355ba": { + "min": 979, + "max": 979, + "count": 1, + "mean": 979, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6678299a-9bfe-43a4-8a69-b1d2393ae9e6": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/710ebd9b-5ad8-4281-a3da-7544df1eeab9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/519b7e16-6967-4589-b56b-d67cf1e20010": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/005a3d90-af3b-4bfd-b1e9-0f3334417fa5": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/daf07b8b-5976-4fe4-aaca-fa6ceb7784ae": { + "min": 839, + "max": 839, + "count": 1, + "mean": 839, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef42a540-a7db-46af-bfbb-9f69a1c706aa": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59d0c6dd-222e-4509-a805-d866e92ecd0d": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68a7be8b-a534-45e9-b840-0dc2e6ed8504": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9186f135-26f9-4345-aa5c-bd04cba99639": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92f49267-7538-488f-abbe-a2481a8ad4c9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6782938e-9333-472a-aee4-0fc79511c93d": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f937b707-46ec-4760-a46a-9ebddee2d831": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4ae3d83-a799-44f7-8be4-731d772421e6": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd4f21d4-157d-44dd-895f-5110c76db9e2": { + "min": 907, + "max": 907, + "count": 1, + "mean": 907, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc017078-01c0-4f41-a3f6-58324e6ed951": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5e3bd036-8dad-42bc-975b-66e108c62dbc": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c7625b4-a9a9-4fac-a376-77b6b9ab1b8b": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2da52a7b-d59a-4cbc-a5b0-9a96512e51e5": { + "min": 1154, + "max": 1154, + "count": 1, + "mean": 1154, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0cb18342-b576-45e7-9d47-27537855396f": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44dc9538-8f8b-4db8-9c5c-0783680320b4": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc6427a5-baad-498a-a1be-70c986b5e6a0": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb593041-0967-4de1-9e89-ae994979d8ce": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/833e7169-65bc-4aeb-9e81-44a28db026c2": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/77422a96-76e1-4a57-8475-277b6b8042b6": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a836267-c301-49ff-b7b8-10be331bc4a7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e980eed0-683e-403a-a02e-caaceb2b6379": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1829f710-619f-4b92-b2e5-ddd6e799b1ba": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74e0b843-4010-421d-ab8d-c66f3fa5e528": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0411aa06-d10f-4bb6-9206-64fa17457045": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d5bb94e-dfed-495d-92e7-215e18a204e3": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92cb3eaa-507a-44f7-b391-b8e9bd58118d": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2fdb0fb-8f6b-495f-b4ac-da2265a0044a": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/976cfdbe-fb57-4e7b-98fb-4ba508e5c895": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a427fef3-56a3-4818-8a94-952440f92191": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e286ee42-1a66-4827-9ad4-30019f660f74": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4aa5549c-94ce-4536-bc05-39f1a59815e5": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fc862dc-c906-414c-aabe-227c13c10683": { + "min": 1133, + "max": 1133, + "count": 1, + "mean": 1133, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/727af3be-e931-463b-a49b-53d099cc691e": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a2b3210-fff8-453b-aaad-a7524eedcc6d": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27567d6f-4146-420a-ab41-bb2127572992": { + "min": 916, + "max": 916, + "count": 1, + "mean": 916, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9853fa48-cbee-46e0-97bb-8641591a7801": { + "min": 1040, + "max": 1040, + "count": 1, + "mean": 1040, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03bfa9e5-f456-4f45-9808-2a275e7fffb9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a7a89eb-ebbb-4861-a1de-2a5623a6660d": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1c460bba-f6d5-45a3-b558-8b0b823f8106": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fa08502-a4f3-46dc-a2f1-09bca8c4dd08": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96418975-3b09-484e-97b7-edb6029ad909": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0cacf7c-86c4-47e1-bb4e-67eaf38aaafd": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6996037-7199-4188-b2d7-aafb17a06cd8": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aacda5fe-e227-46dd-bc24-e71da30295ed": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50ac6c69-b81a-425a-b0be-3c4ba11a3158": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/128f3c05-3d9b-419b-aa3d-864cad012024": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b53b3ef5-f0d6-4dd2-aeb0-9d3fc70bc050": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eac691aa-0633-4be6-9c7c-ca3a00d06fe8": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a492fb56-e185-4179-bb30-07bf49b90d49": { + "min": 1712, + "max": 1712, + "count": 1, + "mean": 1712, + "p50": 1720.2, + "median": 1720.2, + "p75": 1720.2, + "p90": 1720.2, + "p95": 1720.2, + "p99": 1720.2, + "p999": 1720.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d79ae022-1099-46c9-bd86-c8c4557868ae": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bee9904d-b4f4-4e10-bdcd-20b01d2c2f89": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f5d7b00-2a03-4211-a116-5de5b380d889": { + "min": 914, + "max": 914, + "count": 1, + "mean": 914, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7224ba15-8eb4-4844-923e-b138d0a24ebf": { + "min": 1345, + "max": 1345, + "count": 1, + "mean": 1345, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc3b2e81-1d90-4561-938f-a1979ca921f8": { + "min": 924, + "max": 924, + "count": 1, + "mean": 924, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b2bfc13-27d9-412e-a654-594f89a97f42": { + "min": 875, + "max": 875, + "count": 1, + "mean": 875, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8839d0b-2d3c-4e53-ab73-9e6a7e1bab66": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60fd0d42-6d1f-4e95-8134-ba3fd0b052e2": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ddc149d9-295a-4ef6-83a7-c75df08de209": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c660f5f-d0eb-470d-9cc3-08eacbbf6072": { + "min": 1143, + "max": 1143, + "count": 1, + "mean": 1143, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0849f003-6974-4e61-ab26-8b1ff0c0c17e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37069c9e-1e19-4695-b876-a1b570c2b8e3": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ccfc9158-c082-455a-80f5-ee1683d8f1df": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/76f93deb-e969-412f-8385-e52334e0be4f": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/985f6465-fbd8-489f-bb2b-23300491c356": { + "min": 901, + "max": 901, + "count": 1, + "mean": 901, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3950da1d-c3c7-465d-a3cd-9f0f1b3243c9": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/481a8225-cca2-45e9-882d-4b8425d5a16e": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cfae259-caf5-4b03-a87e-4067bf459236": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9ef69927-0fbf-42ef-b97d-7e74b335efd4": { + "min": 844, + "max": 844, + "count": 1, + "mean": 844, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c1ec687-b077-4891-be81-37232837adf2": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38ab8dd1-b378-40bb-8ff6-e5a81eaa166f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dcd3b65f-8f8d-437f-a079-8610fe55da61": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc162d42-a5ac-4aa4-a902-5bf2c20eca87": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9baa3bd-cc95-4254-93c4-17bba92e5abc": { + "min": 1425, + "max": 1425, + "count": 1, + "mean": 1425, + "p50": 1436.8, + "median": 1436.8, + "p75": 1436.8, + "p90": 1436.8, + "p95": 1436.8, + "p99": 1436.8, + "p999": 1436.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd88b063-75d7-47a4-923b-ed77ce0a4406": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/904df43f-5367-487a-b06c-a66d0e49b8ef": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f1bfa005-0774-4553-9899-a7a3dbd73cee": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/136a0f66-f9da-4a52-b349-138542778fec": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28eb272a-2a7b-4486-bbc6-953e082a25a5": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e56ae9a-3ed8-42c4-8a86-2a0dedc66cad": { + "min": 1051, + "max": 1051, + "count": 1, + "mean": 1051, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/178b3d7d-2da1-4d15-9e57-8e02c37bfc16": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4787d666-f657-4507-9c07-dee61f8112fc": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c03e84-002d-4718-98b4-5bf816eee983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15394ece-5026-4117-a8ab-3f956da812f9": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afb21a06-305d-4a4b-b228-126fd28ae181": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c7f56d0-8391-452a-80fd-7c049f414745": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e060ed76-1cbb-469a-ad98-20abf5209574": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4797358c-6a40-41b9-b6cf-d71bc13964ca": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca9cfac-818f-4485-868a-aec4b539f7f5": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f7917e4-f0a5-49e2-9ce7-ee4e03969681": { + "min": 1402, + "max": 1402, + "count": 1, + "mean": 1402, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1bf3513f-cf4a-4d15-91b7-2b9170686157": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b586e0-471e-45c5-85e4-9553e1e565f9": { + "min": 873, + "max": 873, + "count": 1, + "mean": 873, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/752b7396-0cdd-48ac-acb8-caed58e3582b": { + "min": 1141, + "max": 1141, + "count": 1, + "mean": 1141, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/375d620f-79e2-4b4e-9818-068746cf8d3a": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a548b75-ed32-4cb5-bd03-04a5c6d41f89": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9a4ad65-f5e5-4fc5-8f46-2939a0199c6f": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7c6e41d-1dfd-43ae-98d3-c1104acbad5a": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b48ea9bb-9868-4561-a55f-208fbf15492d": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37a233bc-3861-4749-8f81-8ebfb8a4f2b2": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/510c6bad-4668-4bbc-8e25-8cc76ff42e28": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c5ba395-7289-4e26-b105-2a35cef4ce41": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/659ac4f1-743b-46d7-acea-5aa06592de4d": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c85fcc3c-6d28-4c8b-8343-999072592519": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5573e323-1ec0-4c50-95e9-3691dc01071b": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34d1b57e-b162-424c-bf77-fd56b3001f07": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cf0886-aab3-4275-b95e-38604cc5cec3": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3b429e8-e09e-4695-aa2f-b096f5ea067e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/888c6b58-f296-4783-a774-b2d2e1e045c1": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce6332a8-8afe-42fa-8903-964eda3fd9f3": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/43355554-0652-4775-85f3-22c86f068000": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aaf13674-66f9-4da3-99af-a6c927d41423": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8322c462-a2a1-4357-a77a-4c8cafe20e09": { + "min": 600, + "max": 600, + "count": 1, + "mean": 600, + "p50": 596, + "median": 596, + "p75": 596, + "p90": 596, + "p95": 596, + "p99": 596, + "p999": 596 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/067bb6d4-d3b1-41b5-aef0-c7b1a58265fe": { + "min": 394, + "max": 394, + "count": 1, + "mean": 394, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ac5a1d0-17ea-49eb-96ce-e1d67dea9450": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31af74f8-81c8-4e10-968b-3924979ef3d1": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbdf0cc4-b6c6-447b-8b11-64381329ece5": { + "min": 365, + "max": 365, + "count": 1, + "mean": 365, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ebe49a5d-3fbe-4de3-bd21-ea336443995e": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b590e35-2380-44e7-8bc2-2ad798bef27d": { + "min": 364, + "max": 364, + "count": 1, + "mean": 364, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82272fea-106b-45ca-86ba-88c61d679647": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d588cfc8-dd95-4e1d-9bab-9dfbd9adf2a0": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123ca86f-47dc-4f82-a585-f999b7d9fe5e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32f9b190-ee13-4b50-8898-dcafa7461ea3": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee6f3b72-b2ea-468c-9d2d-7433d2960ed6": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04eedf52-f526-4742-93bd-3c791362a9da": { + "min": 408, + "max": 408, + "count": 1, + "mean": 408, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c7a5e2-c675-46cb-b1e8-6915fc7925a7": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68de4561-6680-4e6b-96b8-347d7246ebd2": { + "min": 455, + "max": 455, + "count": 1, + "mean": 455, + "p50": 459.5, + "median": 459.5, + "p75": 459.5, + "p90": 459.5, + "p95": 459.5, + "p99": 459.5, + "p999": 459.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/542121b3-7250-4975-95f2-ad3afb8e9a40": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad3525f0-eea2-4022-97bf-0a64b21f5946": { + "min": 736, + "max": 736, + "count": 1, + "mean": 736, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fcf1b6e4-6664-4f87-8ea0-718d3579bcf9": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cff043e1-0f0c-470e-a65d-2db01c5b9142": { + "min": 948, + "max": 948, + "count": 1, + "mean": 948, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/54e3183d-94ae-422b-9e12-b41c5ad6cc72": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e59b06b-10f3-4d1a-a79f-7c4596df3160": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc2e247b-f347-4468-9e7e-4a2040e7b962": { + "min": 1065, + "max": 1065, + "count": 1, + "mean": 1065, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55f617ce-3cc5-44cc-8219-b868d5669d59": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/437cd3d8-b6bb-4ea6-b1ce-2094e6abf14c": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53f7af9d-0891-487c-a487-78cf2353ea31": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a116e20-eaa8-4d4b-8de9-018404aec4f7": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50f57fc1-d294-4913-aa2c-319cc6d30f28": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/894fc871-43e0-4591-ab86-736f214b6a8e": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/363fca68-2a89-4a22-a727-f10c1e51aac4": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3452af7-f0aa-41a2-8ffc-d4ee8f72d057": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef4a452f-a158-410d-9be7-9830be459323": { + "min": 1049, + "max": 1049, + "count": 1, + "mean": 1049, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bdcd915-ef7e-4baf-9f2b-ca44288c48bc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ed9a768-e764-493b-be61-716f735c123b": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/63e232c9-6df4-4121-8834-eae9d7aea43e": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a8bacd9-b08c-4d50-a31a-0981402b8daf": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/95680899-ba26-4f48-a3fe-02b71ba6bb24": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f085365f-c138-4e9a-b520-bddfdf95d184": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27411cb5-f017-4906-86a4-96e6665d1d92": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f85bbad3-85a7-4b21-aa68-36f9489d71f2": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/279b0708-c8df-4d1b-82fd-b2bf51c6c3ba": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e98ee9-b4ca-4897-9117-f41d0d65cc47": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67e46167-5cf7-452b-b099-e19d839540e3": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02b55a7e-0678-407b-9ba7-7de3d3b95d62": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7da4cdab-ae96-47dd-a3d0-d5ca8f23e7e5": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2124f8b-1b7e-4b02-be53-d7f28753a2fe": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27c7cdbd-0050-4d5b-ae10-502303c4390d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/321cefaa-35ba-4299-bde1-e82c4b7d7f74": { + "min": 1280, + "max": 1280, + "count": 1, + "mean": 1280, + "p50": 1274.3, + "median": 1274.3, + "p75": 1274.3, + "p90": 1274.3, + "p95": 1274.3, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7239ca64-68b7-479c-b66d-1c4aa6101d15": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59614b76-8f3d-4150-8311-ab7b3fea55fd": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/052737f5-2a0b-4edc-86a5-c076a1d8ef64": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/395b07e7-3a5c-4c82-b19a-bbd16c1e54ba": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26ca7a88-61e9-4393-90da-1788b067513f": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9bc04a16-637f-40f2-aa28-0da6c9c6980e": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7954d21b-3f2e-46ca-85bb-18f34287819c": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ffc5bf4-5145-4c91-bcce-9e441d4a5862": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/799fe4f5-5597-4983-935a-5d4526d2494e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f256564-3840-4844-9012-3db055025911": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3cd83809-395d-43d4-bc9f-f56057ff0503": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c14cad48-71b6-4acf-897e-0bed6d3edaa2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f3412d0-04f9-414a-9e4f-6447729ad1fb": { + "min": 1115, + "max": 1115, + "count": 1, + "mean": 1115, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e2b3ead-33cc-47d3-b9a1-c02c21211d38": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ea10be8-db75-4661-bf82-cc94b8828180": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/66d776ea-87c2-422e-90bb-fda9f7e2411c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d291094b-6f52-42be-853e-b42f5234a687": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef422163-4912-4a9f-a890-fea79d3765fd": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a9e8333-6eed-476b-b0f1-f43ba97fc5d0": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/acfe8ab0-354b-4236-9c17-d47278576e11": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9b51b75e-848e-4c1b-a4dd-25b3ac619ea8": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c8cd3af-cc8b-48af-a22a-d37591f8e03c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa3e0b2-0766-4929-b587-62a1e537ca5e": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e8f1300-1281-41b9-a5c4-fd7d00bc3385": { + "min": 963, + "max": 963, + "count": 1, + "mean": 963, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba6af3e6-0e24-43a3-bd22-bb9eb4019718": { + "min": 1047, + "max": 1047, + "count": 1, + "mean": 1047, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be922f89-3da0-4cf2-ad29-aa6f4744328c": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/404dc307-aea5-441b-87ef-ade457c75a4e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8a86a05-f686-45b4-bcda-56e67452d67f": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee7a22c9-0574-4f17-be4e-476efa7011be": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5269cd93-9757-43a7-860d-0e82b1b70ef3": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0916824c-adc8-40d5-8614-f4c587c840b4": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa6773d0-054d-488f-a30f-ff8e6cf5e7fa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6e93156-5c27-4674-9bc8-3e07ae36e6a9": { + "min": 824, + "max": 824, + "count": 1, + "mean": 824, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d905de4a-32b4-4b29-b6d7-50ddc66b5062": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58b34bf3-aa7a-45d7-b299-42a63311385d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94c9d03f-91b6-4f43-8dcb-3e72f130939c": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/52b7fbec-ad52-43f2-b572-19ba4a5fe6d3": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19fd0be0-b2b9-4d9f-b9fd-a7939877d783": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3036ce0a-029a-43eb-8551-7ebadc85327b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca32515-7d62-4a4f-9466-58eaaff62bfe": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb120302-ae1b-4011-b4e6-87f6daaac0b7": { + "min": 1288, + "max": 1288, + "count": 1, + "mean": 1288, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4e836-2467-4b46-8bca-aa5e8567b332": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f880203-8840-4853-a310-29738b4f23f3": { + "min": 840, + "max": 840, + "count": 1, + "mean": 840, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/849f7e71-8ce1-483b-aca0-9c7aa087fe07": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5a01c72-78e9-470d-886e-94205307e3ed": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cedac658-4407-46cc-b83c-acea3ffa6976": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/928dc2f1-df9d-45c8-b2d9-d002e43ea7e0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/728370f2-bdf8-4813-ac62-5c2086efea56": { + "min": 1053, + "max": 1053, + "count": 1, + "mean": 1053, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f59c0080-3bef-48d0-9b57-0562d9bd3aee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb8b0da1-045b-41f7-8005-ea013893d31d": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5025220-5bde-427f-a4bc-a95251990af6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fd7562e-c513-432d-9c21-83be4d070d94": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c83c9646-ccbe-4aca-a279-b2557c23e072": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44704b58-2e51-48a4-b8fa-9bcbcc91d11a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15cee875-38f3-4963-86e3-d71d420932a7": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/307228c5-1a72-4688-b6df-b0dd77c9e308": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd671499-6d57-4c08-b203-c770b5699e8e": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5cb846f9-dff0-4308-98de-838e5d3fbb85": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b04b048-c5b8-4e01-8247-7d3dad8aae41": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/35f388e5-b5e5-497a-a58c-ec34b44d504b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f6124d7-f8a3-4d68-93ec-809042860d49": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae2801a7-5ef7-444b-a5ee-2ba23b6a29c2": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df1f2a1b-5fa1-4f40-af98-f90067f6caa3": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21adeb34-b587-4d5e-989d-d95c5b6c8634": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61b1ae5c-4d24-4c7c-9922-3b714e7abda6": { + "min": 1015, + "max": 1015, + "count": 1, + "mean": 1015, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbd5195c-c36c-4241-ac47-060f36ca22a0": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d8327ec-5ca3-4ca0-b623-059784bb0028": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53a5fd1f-4e45-4203-90ac-dc26aadc4fcf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/576c07e7-dd1d-4171-89ca-aa7ce7c2f20f": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4738efea-73aa-4184-a239-96a073c270c2": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/236fa256-ab24-41c3-bc9c-b4b0a065f519": { + "min": 849, + "max": 849, + "count": 1, + "mean": 849, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14227327-158c-488d-82e1-7292a0c0cb42": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f24904a-79ea-4bfe-bce1-535bcb1c00a7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/107f23ad-7639-40f5-8137-c690c34e4f97": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03f15cef-d277-4111-aa0f-5a5b104e8397": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60cccd26-c95c-4ba0-b99a-a1a56bc5a5ae": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27014d01-14da-48ce-8302-18f4041672cf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27dcf41d-8f77-4237-9159-8af2fde0d080": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed9620bc-ec74-4646-a290-d7c93bdf8d72": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/009146f2-586b-4657-a32a-28d6a133212d": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61025564-ebee-4621-afbc-2da92f63896c": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fadc4789-0899-40f2-a452-63aef4272dcd": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ea9dd88-6526-4f7f-8388-ba3f503156ce": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79d2381d-4ad9-4d6e-8535-87e9ea2d26b0": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49696bad-69cc-4e57-8c50-4866fafed85d": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67b8c82c-d0fb-4526-aa64-65be44664932": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/333fd02f-40bf-4b70-9ecf-c867384998f5": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb1f05d1-5dce-4b9d-b8b0-23b681a5e95f": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2078ef3c-4d8f-47fc-9299-49ca3c75b49e": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4f0d8fa-654c-43e7-82de-1be03f2ca071": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f180a874-99db-4897-af13-e1ae406219b2": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0078f259-6c4b-4535-ab16-6062ea5bd995": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26817eee-064b-4db8-bd17-fc42ebd6908c": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c911c3e9-8eee-421a-afb5-7f7727135970": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/72d95de5-bd82-4251-993a-97ff370fd8bd": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a79ac8cf-d2dc-481a-9fe5-fa232c24229f": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a2ff9d5-d984-4af6-bb95-5a3af0f5e063": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/64f0693c-92dc-47f8-9643-00df3a232445": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c64b5b37-cdfa-428f-8506-924af6f571f3": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fee54e55-252e-40ff-ac02-3a263df0d7af": { + "min": 777, + "max": 777, + "count": 1, + "mean": 777, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57f75694-8edc-4fb9-ac7e-c69e8655d3e7": { + "min": 1289, + "max": 1289, + "count": 1, + "mean": 1289, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/624e5c44-31c1-40d8-80e7-f61b62de5eaf": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0993aeb-3993-4e0c-9d2a-77526ea282bd": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5363ec8-fe73-40d4-af86-5d43655e6aec": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f56a8c5-e424-411d-b84e-a43da2f2f05b": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96c13291-f609-4867-af0e-c82713bd3f4d": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49d263b7-0a5f-4689-a243-bb25d811e18b": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e581086-a328-4885-8012-711ef90521c4": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c32463b9-55ad-4402-8a70-bcb7105ec32d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4650a8c-833e-4cf1-8fff-e7a6caaee67c": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78a3eef8-ab31-4654-8552-194221de277c": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7459920d-4e99-4daa-b901-2ceaeb20a70a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee82b1f7-1654-45ae-af49-698038c0aeca": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa7d571b-0d69-4b65-b151-f4acd292bd0a": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a0dffbb3-2b36-4b84-97e1-2be7190488aa": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33727670-49bd-4f22-9295-68cb8a007661": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39fc395c-cf40-44e7-a98a-9a7552de0af1": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50e84ee7-b155-4515-8bbb-00babcdf2adf": { + "min": 1155, + "max": 1155, + "count": 1, + "mean": 1155, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/334cd73b-6470-441a-b441-d42d8c00445b": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46c71398-edfb-4d58-9303-6b236df73d23": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa7e13f-f4b9-4ede-ad07-fd060c32dc2a": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f7261289-c16d-4f37-9570-d23db4e0c3e0": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cfcb31b-23fe-484b-8685-9a7db4d66bbd": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56f8fe86-2d1e-4543-b241-ec0359596d98": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0be3b979-9dc5-4517-ae4e-85e8f685e6e7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b67229d3-ea86-4421-aa29-a5b3e4fa8133": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2eebd2c-af93-4058-9542-95d9f10fcea1": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4e0662da-931d-40a9-b0d1-dc4cb2843d13": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4849201d-6f37-4917-9809-698cea53a8bf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62b8502b-ef32-4e82-bed1-6815267ff670": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9bdc72f-64bd-4278-b67a-355bd78aed16": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf5385d4-fefc-40bf-8bd7-d443f058a857": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b6560986-0fa2-4eca-a109-846bd95e7cd0": { + "min": 891, + "max": 891, + "count": 1, + "mean": 891, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0eac6b2-4606-4d94-86b9-a1e20acbb739": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc06bedf-837e-4049-8f7f-a6c780240cd8": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9a7d139-672d-4c50-ad2e-3f743c502786": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6474d2aa-69ce-4440-941d-407f51bf25dd": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a665308-9111-4b78-a0f1-d051e0090665": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b89be88d-47bc-4529-bc30-384262cecb6b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28d6803c-879e-41e8-9637-35e9786ce01e": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f3f0f3c-c986-4065-83ad-4fd32816689c": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d3776b2-d6a4-4021-b0a3-8570e6c1d56a": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e0d0a07-5e53-401d-a542-89d976919254": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9808f0e5-19cd-4d02-9bcd-3ff434d835f1": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/806803ff-bb1b-4db5-aacf-dc75492708df": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75a07336-9f9a-4e6b-aa86-a4fe73b1264f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4b0328c-bd89-4111-a275-54ab9a169a4c": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ec9d1791-4809-434f-96fa-5c00516165d1": { + "min": 881, + "max": 881, + "count": 1, + "mean": 881, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab719df7-9f85-42b6-94b3-d9ee9f8252ae": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34844e49-c20f-402b-9c3c-9c180a6e6a27": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad9e3655-a668-4f78-89fc-e0022789445f": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c628ebfb-5571-4777-a7e5-336968991fd9": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3175ec85-0765-4cfd-85f9-7854ea27821a": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/726272c3-172c-4d30-8b4d-39ce3e3e6008": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03af49d9-a0e5-46d6-9f88-6e618f4071dc": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bb255ec-4314-4046-b4e6-014d0a4e8074": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b46fad50-60d8-4e93-8c4d-1fc79a3ea437": { + "min": 1138, + "max": 1138, + "count": 1, + "mean": 1138, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/900178fe-7cd7-49ca-a906-0461a6b4fa97": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d51b42b9-1eb7-4d0f-8265-b9a1f377cf0e": { + "min": 940, + "max": 940, + "count": 1, + "mean": 940, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba3e65e3-cfbc-45dc-87eb-158cc71e74cb": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f38e0a53-a31d-428b-a31d-33ea0eb5954e": { + "min": 911, + "max": 911, + "count": 1, + "mean": 911, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6da1b57-3ccb-4ec8-a510-a7a0cbeefd13": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e244c6e1-40a4-4906-8239-57cea67f6962": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8275a37-bb68-4fd7-9d67-77ab57d3a904": { + "min": 917, + "max": 917, + "count": 1, + "mean": 917, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab7b3136-d5b8-45db-bc2b-a754ef1f0d15": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/450c604a-6f3f-49ff-8448-e2a0df137584": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc8ad777-da80-4608-a9cf-061a7b32c2bc": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e797bda8-dcc4-4b76-9029-7f6618cdd07b": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c9c3d3dd-047c-48d5-97fc-729dbe727425": { + "min": 935, + "max": 935, + "count": 1, + "mean": 935, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53aebb11-6450-491f-8c8e-32dea6d1f04a": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aa9eb5d-3007-4033-8cf1-98b113806d9d": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03a52057-0802-451b-8b2c-6f9778fbf5ed": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff00b011-940d-4eb1-8430-131ce87194b2": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2ca2ea6-8fd2-41cd-92ce-4865da1ccdac": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85ca925c-5ba5-4199-a7b9-417655eb802b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6958fceb-a4de-432c-a50f-528f21b23553": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d148447a-c15b-4b89-a345-fe6f0cbaea93": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbca8c5d-a77c-4df6-8925-e76dd0029a08": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c747d7-f1e0-4ff9-ac41-6a8551b06623": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2203a238-8313-49ec-808f-6d3cc3ba6113": { + "min": 830, + "max": 830, + "count": 1, + "mean": 830, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4120710-0798-43fb-88e8-0c822fb7adbd": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b13c23d6-3a80-4dde-8a69-c4f9958eef66": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/179eb0aa-340f-480c-93b6-c2b5fc56a9f4": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25cf6bbc-77d6-4415-b5c7-6816361b8333": { + "min": 1221, + "max": 1221, + "count": 1, + "mean": 1221, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/324891fc-9afe-4d63-85c5-f625a43e4c42": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58c37438-f14f-46c1-be81-708b83384bba": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82814432-01e6-447a-8022-b0de882d381c": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d87aad3-3999-4cbe-a038-238bb5905daa": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14de96c9-a1b6-40e5-a1ad-f09441fa9970": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/096c8f13-d8d9-4ad9-8b70-1f1de909c39d": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/572caebe-4318-4e9e-91c5-3498efb7746d": { + "min": 934, + "max": 934, + "count": 1, + "mean": 934, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7db1ea9-5eb1-487a-895e-d4a471d91ad2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62ac3d84-1adb-4c2b-a759-be21b7d11222": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/804b9379-2edf-49e3-92de-b3b4b53fe3ba": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6ed49b0-d017-4fbb-a199-1342c8171de0": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bc4b3cf-feab-4c2e-9a1b-f30c61e738e4": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27156dee-1d13-4738-af90-d4baa9e09344": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/faae215b-ec4e-4264-840b-7fb46cbb69dd": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/87abc71a-4a68-4fb6-a753-6c0f07443514": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e62234b-f82b-4beb-ad31-d0469e5f5201": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/482fb088-6d2c-4c07-b487-8e1d62f79f37": { + "min": 1404, + "max": 1404, + "count": 1, + "mean": 1404, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a37d28c-a73f-4743-b34e-9c8b848e236c": { + "min": 888, + "max": 888, + "count": 1, + "mean": 888, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6fc9cdc-231b-46e3-a0e2-ffa30dcf8441": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7341750a-2ca2-4543-b9f5-aeec421bb618": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27a6b49d-adab-4113-8a85-841a6c9b1ab3": { + "min": 1089, + "max": 1089, + "count": 1, + "mean": 1089, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8def498-c63b-4049-806c-0657ea72026b": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cab9e3a3-a3a7-4843-9dd1-f44c1e91fd04": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efe8ff88-ffad-4445-a61d-390a7e6ddce9": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94555490-24b9-4272-aac7-9da68c80253c": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96a39a15-f861-488f-88f7-1d7488b3b85d": { + "min": 1035, + "max": 1035, + "count": 1, + "mean": 1035, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40145f1d-2019-4987-aada-499c14204a9a": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/30cc0d4f-3599-448b-ba7b-d076b143a6d0": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c32efad-2f2d-4bd8-a868-788f4ce27600": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93794a87-d60d-4f50-8c87-94fc83375b76": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73eba61f-3979-4dea-aa2a-6b32361ca539": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a710930-2f87-41a1-ae9d-8cec420bc0c4": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/112bfc9e-27d9-4e08-a239-9cbb6908d579": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d13584a1-13d7-4ac1-ab2f-c60c5631ca3c": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c9f587-f385-4c76-8abb-55b58c20a154": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93c65926-e0e8-4276-8976-4b49e2801d27": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19d76e08-294f-4f64-8fa0-37229d2643db": { + "min": 1174, + "max": 1174, + "count": 1, + "mean": 1174, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ad1eb26-342b-4429-adaf-99e1192722ee": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8628dea-494f-46ae-90ff-ba2501ea2ad6": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89f12ace-84a8-45fa-a076-9e60fe82f033": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afa6fcd5-fc1e-47b9-83bc-f5134de92e0e": { + "min": 1081, + "max": 1081, + "count": 1, + "mean": 1081, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9463bca-e5d6-4930-b6f8-422a96b722dd": { + "min": 922, + "max": 922, + "count": 1, + "mean": 922, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb7251b8-027b-4331-ab01-c16b8cd75fd4": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c84e0584-92a3-4523-accd-872ef462ef05": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00fb43d4-7237-4386-950e-ba9b22418a3f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d67661d8-a23f-4010-bed4-4e4faa3c0733": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/263675af-328b-4fc9-bf1d-54a9d319e05a": { + "min": 1412, + "max": 1412, + "count": 1, + "mean": 1412, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2f3ef8-db85-4b7c-8932-a57d46afc0f4": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0afe871-9905-4694-a09f-fdeda1797b9d": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9393c8bf-9884-4b40-a249-3c6ab9fd27d2": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be9f9150-1e25-4ff6-91fb-19171d202024": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6eee342-4250-4abb-98ad-61d5c7d17723": { + "min": 865, + "max": 865, + "count": 1, + "mean": 865, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d02af79-f43f-4180-9761-243cabe42751": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/729ae9d2-948a-4c24-a4bc-01008fa6f815": { + "min": 915, + "max": 915, + "count": 1, + "mean": 915, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29177f39-e811-4188-96c1-4e6f86d42b50": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/abc104bc-945a-401c-b59d-153d56f9270b": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c50ecfd-e6f0-4d1e-afd4-4815088e9478": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5d5b006-c1b5-46de-9db5-fa527139888f": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bda7950e-933b-4be7-a4c5-54177638c717": { + "min": 925, + "max": 925, + "count": 1, + "mean": 925, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/743babbc-b494-4797-b4c4-d21faaaacb4d": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/792b38ba-20f4-4f98-88c3-d74a1f9194de": { + "min": 1125, + "max": 1125, + "count": 1, + "mean": 1125, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bf8a87a7-e622-4246-b841-caed1cbc9153": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d2f10e29-35d5-48ba-a8fa-a4bcdfe94b26": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efa0adc8-1057-4b76-80f8-e360af5fa504": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bcbcdccb-ee49-4700-97b3-e61d6e8b6bd9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdbf2a42-5df4-4727-b410-f357b23275f9": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c45d12-721a-4c5b-b8fb-9a5fc58b5620": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1bb35d5-b264-4026-80c0-9588cc25bf47": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/414f93c9-007e-4097-b16a-6224bd13bd0e": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f9aaba2-18e0-47b2-b5dc-93fe835205ea": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0b64dfa-e48c-464a-983d-bd1306d21821": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/af2bb29c-47d8-4433-a41f-d72a8aedd8e6": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86cfe7d4-2181-4df1-9cb7-878db8aeebe2": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74ad21fb-8639-42b0-8aaa-efd25c76b4c1": { + "min": 861, + "max": 861, + "count": 1, + "mean": 861, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb122faa-845d-4c64-8006-1ed54cbcc112": { + "min": 933, + "max": 933, + "count": 1, + "mean": 933, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9decc5c1-28cd-4396-8c6f-9061a9d68a70": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4cc685d-2504-4b20-89c8-e4c9f8169425": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48fd1a36-aa96-4fc7-bfda-697ab25a775e": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/400fae57-adef-472b-8cb6-978007bdb024": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f536449-f9b2-446d-b0a5-12d36fbd4f2f": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/628eba56-0c6a-4222-b29c-60961941fa4c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8fee3a31-d4f2-4188-8622-68cb3899c9ce": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bad3d923-cdc0-437c-bc61-9d034e957340": { + "min": 908, + "max": 908, + "count": 1, + "mean": 908, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f72e39f8-79bf-4b4a-9ed3-b80c141da770": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/170e996f-22e6-43a5-8c6c-85416bbb1516": { + "min": 1144, + "max": 1144, + "count": 1, + "mean": 1144, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86ad59e3-fca9-4bc2-9f74-daec55e9cdae": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67424e01-514d-4ed6-9e22-f92bb33b867e": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0142016d-7bd5-4e41-aa51-212eb52938ec": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c6aa61b-08f3-47f8-bc93-d32ec3826f7d": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a169ada-55ae-4fe7-801b-b5406b1c2902": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d391aaca-9573-4a4d-8763-f716535fbcd0": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fd5601f-ad20-4248-9aed-dde728eff05a": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b36a38f1-f90a-47fc-ae3a-5a98cd7ab776": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e6d3732-d9bd-421c-9bb8-b0f399aaad8c": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c08070d-5bf3-4400-8076-623370cd6414": { + "min": 895, + "max": 895, + "count": 1, + "mean": 895, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce7847c1-c87c-43c7-ae38-5fe7f99a66b8": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8383a033-0177-40b4-b465-6a76b8366b42": { + "min": 1021, + "max": 1021, + "count": 1, + "mean": 1021, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b2bb0d3-21e2-446a-bdb6-81428d0deb8f": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f842e9db-166e-4075-8056-90657e6ee4a3": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7e25622-0e38-4c3e-ac02-180db547c3a8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad402980-a0dc-408f-88a0-e51c34417f80": { + "min": 1299, + "max": 1299, + "count": 1, + "mean": 1299, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40d623e2-ba09-41ca-9863-2fa2c3021fa0": { + "min": 903, + "max": 903, + "count": 1, + "mean": 903, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9f77711-eadd-44fc-8d25-596623b8d4ea": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27500d18-8a4e-43f3-8531-a8eb348568f7": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94f035f3-0d2c-4494-ac8e-04f7977cccb6": { + "min": 918, + "max": 918, + "count": 1, + "mean": 918, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/707b84fb-3431-4c77-bff3-066153545139": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2ca59aeb-840e-4f00-b4c5-dddca362c929": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4be8bf88-277c-4be4-a0f1-196f5ad30168": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f70e5f83-7c63-420d-b686-7044b15a67c5": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/561f9c50-fe1b-4b05-aedb-75fe6128a38d": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5dd17b8-0b65-4f5b-ad87-e3b2b04b7a05": { + "min": 1124, + "max": 1124, + "count": 1, + "mean": 1124, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/239b3d65-056f-4a88-bd61-3187796e0a13": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39245ca2-1df6-4279-877b-f430ae366c2e": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18d2f50-cdb9-436b-9912-bc93d96e173f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56c0367c-48cf-4fd3-bd81-ec732e3f8c77": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9035c99-4e3f-4a3d-8a43-efa1db2beec0": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca1c5dd3-20fe-4e43-a5a5-c4bacb84cc55": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3c8bd6c-ffbe-4ddf-8713-317c3e6c09f0": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbedecc9-edcb-426d-acf1-1c7ed846ade0": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04f1dfc0-52f7-4dd7-8af2-782d7d60c86b": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e545f0-f017-422f-ab58-54de27f59a18": { + "min": 773, + "max": 773, + "count": 1, + "mean": 773, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7cdb5a8b-d4c2-4762-85d7-8b84dd57ee29": { + "min": 1337, + "max": 1337, + "count": 1, + "mean": 1337, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d721d193-69c1-4153-804d-957eca8532d2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d1cd2d90-5a1c-4108-9367-fca945341cec": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8331ae83-f520-49ed-ba89-fab9d296e7dd": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36de1f1a-4aab-4e43-ae5f-7e7f3b2ca032": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8e64581-d17e-483c-addd-2f5bf0086c78": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8ac9a6e-b921-468e-b5c9-d6e55c245514": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8994d4-f171-48c7-b668-8362d0012041": { + "min": 370, + "max": 370, + "count": 1, + "mean": 370, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e21bad6c-3303-44e1-907f-c8779fde1f59": { + "min": 619, + "max": 619, + "count": 1, + "mean": 619, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/100c1b08-fd5d-4416-b108-a00cc2964f53": { + "min": 403, + "max": 403, + "count": 1, + "mean": 403, + "p50": 399.5, + "median": 399.5, + "p75": 399.5, + "p90": 399.5, + "p95": 399.5, + "p99": 399.5, + "p999": 399.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9346edc-f526-4df6-a06c-cfd03d90365a": { + "min": 379, + "max": 379, + "count": 1, + "mean": 379, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b84045e5-ac3b-4bba-a96e-a8dac9cd2303": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84f79b05-0dbe-4aac-9cd6-cdeb769f1789": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7cf27ab-a846-4777-bce8-522a614c9815": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02ca0ee3-2196-41a9-a953-282efd324182": { + "min": 384, + "max": 384, + "count": 1, + "mean": 384, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d389d68-2ba3-4ca3-a8ff-30550b7506be": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57d17a2a-f85a-42ec-8a2e-37b2125fb454": { + "min": 413, + "max": 413, + "count": 1, + "mean": 413, + "p50": 415.8, + "median": 415.8, + "p75": 415.8, + "p90": 415.8, + "p95": 415.8, + "p99": 415.8, + "p999": 415.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/45fd3921-b4d4-4c8c-be0e-8285a88a7a27": { + "min": 376, + "max": 376, + "count": 1, + "mean": 376, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/618d7955-0948-4999-8531-79490413a58a": { + "min": 746, + "max": 746, + "count": 1, + "mean": 746, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16bd0bf4-fc47-4b54-988f-b5ff5cbb08aa": { + "min": 623, + "max": 623, + "count": 1, + "mean": 623, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/47b5aa1e-54a9-4db0-be63-213fe9410335": { + "min": 406, + "max": 406, + "count": 1, + "mean": 406, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f9a8f3f-8046-4f8f-8c17-be68b2c7e721": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21fdddae-e611-4cda-b078-eb51c401ec21": { + "min": 385, + "max": 385, + "count": 1, + "mean": 385, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20eb6eeb-4382-4d56-b904-c249bdbea292": { + "min": 952, + "max": 952, + "count": 1, + "mean": 952, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d5f4da16-9b14-4445-818e-0a2fd81f47f1": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc941e77-9f07-4d6f-bae1-b4dc88ff1c58": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed1bcefb-6b70-48fa-88b5-d5e82fdd995d": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0eae7ad-7524-4d5b-a1d4-8d15a20c961e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/299353d2-d8f5-44ca-8a1c-71272fd9f7e4": { + "min": 841, + "max": 841, + "count": 1, + "mean": 841, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/494496f9-c417-4d48-a4cd-7e081a2819a0": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d58ce921-5673-4a96-be38-da6fc92351d5": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/286f4a85-caf9-49f8-a363-8c7c08daac15": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ea422c70-b837-4ebc-b34c-e8f9a2c7b807": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f1ee014-07d8-499c-a44b-3e5bb81c2bcf": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/81c6faa6-c75b-4b0b-8f5c-da952c3bc92f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efcc8882-b8d6-4477-94ce-5f02528217ef": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/42fb8478-e07d-4f3e-a29f-118678a7d20e": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/80daa6a5-d8be-4434-b3dc-c675915b48bf": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fe5f5e4-deaa-47a4-b7b7-589cb021850a": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c8f891b-9237-4999-9448-9555201887c7": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2568b0c3-3acc-4e9f-9fb0-fab467d0109e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fe1dc9d-c2b2-4b09-831c-860dd3fe8188": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7bf88501-ef91-40f8-a4d3-8e46b8bb080b": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/08dae10f-954f-47fb-90d1-ddb6c0c4faee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/675c184c-5af4-4723-bcd1-d2525b60760a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c602fd0-a7e1-4514-9d27-086fd8548945": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24752056-944d-43c4-9bf1-3227bce1a7e4": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b134ad2d-b7a8-4dc5-8137-4344bfac9efd": { + "min": 775, + "max": 775, + "count": 1, + "mean": 775, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a64dc9cb-031f-454e-a9f5-22f5b1b2ea18": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c910cd0d-84e7-4ca9-8f70-cd2eed999cbb": { + "min": 1024, + "max": 1024, + "count": 1, + "mean": 1024, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00633c7e-7211-42ca-ab64-1accbe26966b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d69ba16d-7e4d-4bf6-8d09-a4935b2aa0ac": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/07c112fa-f625-46e3-b072-d6b25acefaf7": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3295a4f-0694-4cac-8be6-7418af1ac898": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/377712e6-a204-4efe-b90d-f01a5aa52483": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de17e8e-9949-4088-b96f-4e5bb1c940de": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a25d718-94db-485d-b353-04e1fb1c9c7d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00df482e-802b-43a6-8a63-209879088de4": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d853b44-3f76-4fdb-abcf-409fb0b9587b": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2099c8-95a8-45d9-912b-3f1029c90e9f": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e15aac0e-93dc-4957-a964-6fd3774fb452": { + "min": 854, + "max": 854, + "count": 1, + "mean": 854, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3bda564f-a1b2-4005-9e9c-01770295f620": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4a33d6f-8f55-44c1-9458-df6ec6a4caf8": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9faedf4-b696-40da-be0c-c8c34b75c232": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1881abcb-24ea-4b56-a88f-a202db58c0ef": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a036ad20-b013-40ba-8d84-d3c2511c3bb3": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce162e0-7163-4f3c-a966-e096322ef6fc": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae28b25f-09ae-46ab-8854-a6ddc2d43d61": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bea063f-c0f6-42b5-a87f-d9fddab88b1e": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0180bcf-9faf-4e4b-91f3-091b5d85be86": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdcd2041-e2e7-42a7-bec8-5befb6249361": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d725da29-e71a-416a-b0c7-0ed8f81aac77": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1315fc7d-bee5-4348-b4d9-220355ac18a4": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78b2c1e0-19a0-4323-80bc-c58fb2796b68": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7905c905-a805-4434-8c90-93004d2153d0": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a12019ea-3a9b-4462-a16f-aed71ca706f0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/629df295-2a7c-48b1-b2cd-a41a7c24c3eb": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9aba73e-4288-46ec-a383-f3b82c6f59f8": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f54a44f7-cc32-4b33-a53e-c886c95f3bd5": { + "min": 829, + "max": 829, + "count": 1, + "mean": 829, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bd68dc4-625f-4211-89be-c467ea676112": { + "min": 863, + "max": 863, + "count": 1, + "mean": 863, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2151da93-b0b9-42f7-b063-76f316b581e4": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/22840379-ea26-4966-8554-ae3b83b01cd9": { + "min": 931, + "max": 931, + "count": 1, + "mean": 931, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f30e9f1-4540-41cb-b296-ff8c487839e3": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4efead97-8657-4112-94b8-8c586196db3b": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a8ab234-6d84-427a-ad97-d74d9c343300": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b25b5bce-7db6-4455-ab50-b34bfe39800b": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfd8a9a8-a433-4b85-b519-aff3a99a98be": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/087ff98c-6a00-4012-a802-568a8e9c1892": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dd6439b-2e12-4f6f-892a-8bfadf8184ea": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4b4f4a2-8c2c-4c3f-8ee4-e0b8d0d7bcb0": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0b11e51-f0a5-4d9d-9edf-721d75406056": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7aac1784-631c-43df-923c-6bcf76bf5bf4": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb613959-b868-46f9-a51f-1cad2bb6b259": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef3f239b-6e05-438d-aebc-f70e3e51ab36": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c615e9a1-2c33-46d3-9d66-59b17290e75d": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6943dd72-0cc7-41bb-b3de-5f39d6cda371": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65c4966f-e3c6-4434-a59b-ceb61bc6e38a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6507894d-28d7-40a5-8e3b-44708d7adec6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0f4e771-6187-4ea8-b509-076c65582c87": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f52cf4d-8f08-4182-9af0-92b0b977985b": { + "min": 1005, + "max": 1005, + "count": 1, + "mean": 1005, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfaef76c-af82-4709-b74e-5fb596b0cb9c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/de7b651f-492f-47a2-982f-619e26eb882f": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dab71ca1-f7aa-42b7-95e4-0bdebe8001a1": { + "min": 1072, + "max": 1072, + "count": 1, + "mean": 1072, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de8dc75-7bfd-46b3-a8e9-33ad27b8801e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0fb54f2-0569-4095-abd5-24b3e15cdab0": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b2272118-50ee-4901-8243-2e8ff4f79d94": { + "min": 834, + "max": 834, + "count": 1, + "mean": 834, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b63ff50-e4ab-4de3-bb50-818fd96dc55b": { + "min": 1067, + "max": 1067, + "count": 1, + "mean": 1067, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1791c96a-e71d-4d7c-8622-0efcacb4d3eb": { + "min": 1356, + "max": 1356, + "count": 1, + "mean": 1356, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd1c80da-6b6d-4c22-84e8-fe6bfc815f86": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4c7db-1e91-4a62-aa37-a735bb24a4c7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c6c8183-3850-48dd-8be0-681ca83ff0cf": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa8e7aa0-e2f0-4bc0-ae4c-67ec447ca037": { + "min": 1165, + "max": 1165, + "count": 1, + "mean": 1165, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0286370-bc23-410a-92d8-3f5d27fb2259": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a35f65c-8c1f-463c-a935-1214340e9800": { + "min": 944, + "max": 944, + "count": 1, + "mean": 944, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a983f27-5347-4964-a281-19a124075022": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27999c7e-7bd7-4cdf-8bdd-6fba5f03467a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14f313f5-3772-4221-92c7-61cb1cb4b402": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a59fb1f0-79c3-4429-a511-a5109bb48e71": { + "min": 870, + "max": 870, + "count": 1, + "mean": 870, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/883a0b30-a64f-4750-a527-b56a515ebbd5": { + "min": 1010, + "max": 1010, + "count": 1, + "mean": 1010, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6932fd4c-6954-4c55-a733-1957b45919d1": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/534f0804-462f-45b8-b88b-3263b96eebae": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b9e39dd-17f2-4e57-ae59-0e7b1d0744aa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b33404e-e31d-4559-be89-706ded360580": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f841a916-e670-4d62-a423-9eb7f2adabd8": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e44e818-dbb9-4e3a-8852-9896612e468e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b9e1d62-6b2c-4ac5-af24-9fb902b29606": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc329f23-2b2d-4bee-aaf7-be675835a7b5": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffb7a582-61f5-4fd9-ae05-ff471bf8742d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b7e134d-af1d-4b04-ad94-07457a53d40f": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e076beb-321a-4bbd-92ce-474568a472cc": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90d36bf1-5fc9-4198-8580-4bd3d5678ec0": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78cb0af3-204e-48fb-b946-2494f29462fe": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe73e7f4-7f8b-4411-a401-9b68fe94fe79": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/283cc8d6-2596-4cb8-9e45-b82060f6b4f6": { + "min": 857, + "max": 857, + "count": 1, + "mean": 857, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc872f67-960f-406f-b6ad-2bdfd83e5ae7": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e481373-7bf2-4a78-aeb9-588cc9979db3": { + "min": 1018, + "max": 1018, + "count": 1, + "mean": 1018, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/241baafc-0215-497a-8519-e892918ed99e": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8884069-7d3e-447c-a102-8c6f2103e4fa": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bef4a1ea-9ef4-41cb-a771-23a080bd2019": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca315b10-e474-4377-bfe2-660ad4feb151": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2c6ac8e2-8141-486b-84c3-e3c16f1d3a67": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c4b731b-662b-4067-be30-b1a6b233bb43": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ab0c360-730e-4850-b4db-513f06005ffd": { + "min": 1017, + "max": 1017, + "count": 1, + "mean": 1017, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8050d71e-5968-4347-9d1f-e8fb11cc8197": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b85df4c6-5597-496e-8fe7-82d2f3adf5cc": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/011b0d98-3f27-4850-8980-74df779eabdc": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9937d592-4d8d-42e0-9ae6-7d816db396a8": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b77ede8-09f1-493d-a83e-81eb6abaf71b": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d43a9ef2-c98c-43cb-a223-5665cac8a16e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a460d6c7-0ba0-4d56-be5b-59d981b598d8": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05374f63-a095-402b-9961-b909b7bd0927": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48bc8061-cc12-4f51-89c3-b2aa47fe4c1d": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cbd328cd-e8e6-4f01-9065-8d19029e0840": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/69d63b5d-a553-4a79-bb3a-efca5a5871c8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61521f72-40b5-44fd-ba0c-1e3f5f46d570": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2869e20-69e5-4cfc-bd0c-b34a9c48e176": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7986430-a32d-4242-814a-67e19c06f6fd": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bfaf40c-da4a-4258-b29c-7dd5dc7d48d7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34063397-1c6d-4e5e-aeae-1a1b454116ac": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bc7037f-e90e-444d-ab3b-05432c2bcfaa": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b41e6a6-9c55-47bd-b08d-8d159eb9327c": { + "min": 1281, + "max": 1281, + "count": 1, + "mean": 1281, + "p50": 1274.3, + "median": 1274.3, + "p75": 1274.3, + "p90": 1274.3, + "p95": 1274.3, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96b56e41-019d-4024-b917-0e2a6a6b7d3b": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0efb0182-24e5-4ba1-9b5e-6f35739f20bf": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d96aa0d4-5410-4b98-a3c6-9e451c8ba9aa": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a2b64f6-e256-4917-a99c-d188a937cd44": { + "min": 1038, + "max": 1038, + "count": 1, + "mean": 1038, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0b1d991-130f-4b65-977d-348cef790760": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a073f7a1-b59a-459c-b577-a7a739955b57": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9ac1463e-d695-4597-8781-3fbba0710dcf": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48920ada-ff67-432d-abce-326338086373": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe397143-436d-4e9e-a098-f87ba9ae6ed2": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4d8174c-ea98-45bf-8091-f067216adab5": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/940c27a6-1cb2-4c11-93c7-efb96f08d22a": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24b258f8-5d9e-45dd-937b-f85279be22af": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae26af3e-e0b6-4834-b0be-0447fc984461": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82f1bef3-ea09-4304-81da-b286627d7b22": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7df93b2-d859-492c-b3bf-dd54687c7644": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb483477-b9d6-404f-a7ba-02151d6a2989": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5773b9e-585f-443b-adbf-4c584696c74d": { + "min": 1142, + "max": 1142, + "count": 1, + "mean": 1142, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cf55460-6aa3-4f86-a462-12dac944da3e": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b90fe9fd-1434-4baa-bfca-8e93efc0f3f2": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/70f162bb-d2ba-409d-b0f3-1f1a565a8af7": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8304f58a-481b-4e82-b215-dfcf7d9bd12a": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3821cf50-a908-4b85-a1c8-67194366c1b6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b39542c1-714b-4f62-b142-2836d3aa92dd": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e3706f6-8f2c-43e7-92ac-2b14b8362479": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0771e57-559e-4c66-a16b-5935d21da745": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f64ad05e-b26c-4579-91aa-2e3a880b00af": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82ab489f-b442-4147-bdf6-557f798ebf89": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65d369b2-aa4d-47d5-9225-7b7fae26ed7f": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38f56aff-33af-4860-a01d-ec1bd4cd1db1": { + "min": 363, + "max": 363, + "count": 1, + "mean": 363, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7e859a2-ca34-4fad-a019-da6ced03ab7b": { + "min": 387, + "max": 387, + "count": 1, + "mean": 387, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5660c04f-fb21-4ce4-9f68-237f2ffed2f1": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe7d655d-a647-4650-b53f-90d176d03603": { + "min": 377, + "max": 377, + "count": 1, + "mean": 377, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32fdf00f-0d19-47e0-a666-184be7ca0ed3": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a45b0acb-2e5f-4745-ba62-1e03663168f9": { + "min": 428, + "max": 428, + "count": 1, + "mean": 428, + "p50": 424.2, + "median": 424.2, + "p75": 424.2, + "p90": 424.2, + "p95": 424.2, + "p99": 424.2, + "p999": 424.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46bcdad2-8bb7-4f66-bfee-c49fe79ba48a": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d353cd4-a358-4e24-94af-b90601b6a63e": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/787c979b-c075-40e9-9f61-4c3cccd5139a": { + "min": 705, + "max": 705, + "count": 1, + "mean": 705, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27e60285-c845-4260-b43c-7c79534c39be": { + "min": 728, + "max": 728, + "count": 1, + "mean": 728, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7fe394f-b524-4dd4-85b0-bf09009324ca": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e97f50c7-348e-46c2-9f72-7131c4ebf6e3": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33cecab2-833a-493e-964f-7e069b8695ae": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93d23d49-1e6f-48ef-a338-e01b505efe4b": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ade6646-9f43-438b-a948-70cc3285c2c2": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/872c46f1-63bc-4b25-8d12-caede331490a": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c70d330-cc9a-4f6e-9b62-8eece7c9c8f5": { + "min": 776, + "max": 776, + "count": 1, + "mean": 776, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23be3c84-78f8-4b5c-baaa-389c78bacc31": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fa64832-447f-4dbb-bb8f-5d1b8fade0cd": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7ca54b5f-8219-4193-b294-2c17a5500983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c87153d2-58a5-4788-b8a4-fff31d905145": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1a1f8282-8510-485f-99bd-e76fe4bdd08e": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b71b553f-f7ae-498d-856c-dcdcf6a18b02": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20dada24-5093-4c1e-8916-09fa036cf2ba": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff32a3a6-072e-4ff8-b0db-890f4f54cee9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89ea6b20-2619-4577-8790-d52e6540a5fc": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23f04b3f-656f-4084-ade3-d56c4c9af2b7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9608d262-57e6-4523-a6b8-6c74529a8857": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2314e2a7-0a62-4b97-b3fb-af9892d00730": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/841e03e3-6c21-4464-8fe8-590b3b2412da": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/550c2c07-3bf4-43e3-97d1-abe96b82fcbf": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb9ae528-e853-457e-b22f-8a2bfd67d075": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1196ec0-cef4-4c14-8de7-453fc5eff16c": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11efacf6-e51a-47d4-ace4-1563e8bfe3f2": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b116186-aab7-4f51-93ff-8bee20574778": { + "min": 1217, + "max": 1217, + "count": 1, + "mean": 1217, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/243517b6-510f-4eac-a2ca-600be81ac1a3": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4a99235-dcb1-4ed5-8b90-02cad14a1a53": { + "min": 1022, + "max": 1022, + "count": 1, + "mean": 1022, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a14fad83-3aef-4307-9980-fb6e7fd267f4": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90eb343e-3efc-4c44-8a62-d9459cc85175": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ad5f1d5-2937-44dd-b92d-ff273200521c": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/da83b475-8079-4e6a-b126-181a950df117": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4eeda210-6b89-4cf3-bdde-8653820f04d0": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c02bcef-9080-4035-86c7-1d9f8945fdb4": { + "min": 1038, + "max": 1038, + "count": 1, + "mean": 1038, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0ffb30d-340c-4d1f-85a9-a881337f4678": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cd1f52e-072e-436f-a660-fa815053241f": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65446a04-9ad7-40c2-bf13-d0df9f0abac9": { + "min": 1119, + "max": 1119, + "count": 1, + "mean": 1119, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b7274549-472a-4817-83e6-a0c39c39510b": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03ee2c93-b848-4eaa-88ee-3f9c11676f88": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2803a45-c563-402a-bbdd-010dbbe0edbf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d8269da-52e2-49b8-8f0a-8f142916249c": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f36e406a-441a-4f4a-8752-a277b1959d0f": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0a675b7-df21-4858-b981-afc1a7d19197": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/267e18b0-6a06-40fa-8b2b-2356379ba2a3": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cdabb57-5a52-4981-a9a5-1bc33543508b": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4428a78-050b-41b4-9c41-43cdec803287": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb100c9f-e893-4a95-9ce5-e8c857dd5fd5": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c950336d-5cbe-4c4c-b4fa-e6ca3e60f3ba": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc3a6d1b-c154-4a5a-9938-0a3539fbc4a9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1e8c368-c9a1-49d9-b390-201c5d86a0e6": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df14aa0e-7357-48fb-8336-cff10b69814f": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f60162c7-72d5-4e1f-a62e-eb9db6355059": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e798640-e809-40e0-b067-33099c1344f1": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1f556f8a-55c0-4011-8aee-748104123588": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffcfe519-82a7-4f6c-be23-86be780cb784": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd1eaa9d-0460-467d-a525-045e26bd8faf": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33ec1a4f-b22c-4f89-aa3d-27c31ce41340": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dc2a2124-17ce-441b-a7c8-f221b6a0e948": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123809de-1d52-40da-82fc-5f00e71d1274": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7add20a-6bef-4aa7-9061-3b76e70adfcc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f2499d4-8e2f-4a36-9e7f-c18b7986dcaa": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5206ca6e-b743-43a1-935b-fd4205fd5b1b": { + "min": 1302, + "max": 1302, + "count": 1, + "mean": 1302, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/202a26b6-32ff-452e-b3e1-a1e44be1d3a1": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5373e3ab-e784-4219-b2c5-1a8c974fae1c": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f916881f-a6bf-4923-9cc1-ff333dcc3428": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06cf17a2-0f5c-4160-a730-eebcd4ec147f": { + "min": 1227, + "max": 1227, + "count": 1, + "mean": 1227, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32c4bed9-ad1e-4e5d-9a95-626766ddd16c": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d44106d-10cd-4b72-8773-a5fda6f02856": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12d887cc-54fe-44b2-a7b3-51711141b198": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31037bd0-96db-48f5-9e5a-026f0b4013fa": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e7e43fe-0ebc-4c79-a5d1-98037f30cf52": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73431451-5a1c-40fc-9a22-ae3ea201320e": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a07da492-f6aa-4fbf-a0ed-3924091e167f": { + "min": 1128, + "max": 1128, + "count": 1, + "mean": 1128, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bde5bacc-f00e-4971-9894-ef1e88739b95": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc6048f7-c66d-4b3e-88ec-968e90d7a3c7": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7822d94-872b-4c9f-b17b-0d9554b47b4f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85e2f72b-39ec-4ec7-b597-c7d38116bd05": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cda3a5-759a-46c8-911d-9b611bf04023": { + "min": 862, + "max": 862, + "count": 1, + "mean": 862, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f760880-f902-4ec4-a006-4494218fda39": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18b2c8f-9106-4d50-9171-d58feda61915": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b636a39e-5831-4258-841c-4d92c9758d68": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/673bda91-ecba-440b-b234-7fd48a72254c": { + "min": 993, + "max": 993, + "count": 1, + "mean": 993, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbc85568-5c7b-4e85-9c9a-c9562d0acdb7": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed5c7e73-6eea-4df4-9364-8e128242eb1e": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a0f54ba-1f09-402b-8a54-f682c51eb68b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d14d214-3419-453b-8d90-96ba637eea3d": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/584a05fb-af4f-4ba9-8dfd-c06c716bf5c0": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c6a99ed-80c6-417c-afe9-17a12d1c021e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28482f2b-7608-40c5-b145-b0f806e55cff": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25183d7a-c865-4fd5-84ff-2abe71cd2a34": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d83e40b-6a83-440e-8cd2-95eec3b35cc6": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05f53476-c49b-486a-86d7-9616353158fc": { + "min": 772, + "max": 772, + "count": 1, + "mean": 772, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f37b25f1-e5b9-4ae1-994f-07c093137e29": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8fad810-f9bc-49e1-bb8b-583e80b7e0de": { + "min": 1050, + "max": 1050, + "count": 1, + "mean": 1050, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2824032-e524-439e-846e-86d7131fa081": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6137ee31-7c04-481a-80e8-a59a13f7e4c4": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a507d336-721b-4df3-9d63-ed753c7b43a1": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2ce91c3-7a74-4aee-9871-82804a1721ee": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1775e60e-8eda-4e5d-b5a8-a6588f734e35": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b3070396-303c-4998-8b35-487e9f42b237": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a3312f3-5cde-4680-8b9e-2fdd7f820924": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6d610106-538c-40b7-9b97-876de2317c7e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b952d1ca-4f50-4fc4-afd1-c50f6cfa8b5d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0c4e50f-1463-43a9-b29d-aa8364956d2e": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/098057c8-7020-4c76-9b84-c267bfb868db": { + "min": 6065, + "max": 6065, + "count": 1, + "mean": 6065, + "p50": 6064.7, + "median": 6064.7, + "p75": 6064.7, + "p90": 6064.7, + "p95": 6064.7, + "p99": 6064.7, + "p999": 6064.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb8e904c-d168-4339-b892-b55f75926f68": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/153bd78e-9966-45e0-9723-ccbb7683dcfb": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1817c818-fa3b-4d4b-96dd-b5ae09d3f0f5": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8192c9c1-8f52-41b0-8806-3e821b66a54e": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9375ba37-312b-4e76-8d49-ffc93555243c": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba2a9ba3-8ab8-43e8-b420-dd9be833d86b": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/762ccfef-c0af-4e6a-ad54-a111fe3e0046": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/428e28bb-4805-49a7-94d0-fe7a76a4134d": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5508e7aa-6edd-4c96-9ff8-1c43133b8b26": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55598ce5-fe8d-4da6-8485-1e5567723599": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b97ea2-753c-45e1-8467-c4ad9a0fda63": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05ece630-c369-4f2e-b327-5fc61db6db10": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8ee7e6a-ce3d-4f1f-b352-1a21e9efe34e": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06589ae3-3f89-49a2-9dfc-87d97ba270bc": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a2da9b6-7ad5-462f-8e7d-1b6fda6ea5b7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/18ad1568-41e5-41c5-a771-d5b3575ec1c0": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75642a26-340d-4fc2-aa5c-ad6be6d677ea": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d4edd84-f6fd-478a-87e2-96ced1304c77": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3b0268f-7268-406d-9f65-e00ed8631d72": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75aa6bd0-8ca5-4854-8fec-8b0fa43a0d14": { + "min": 990, + "max": 990, + "count": 1, + "mean": 990, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c80bfdf2-1fa9-4b2b-91a0-67fa4735119f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dcc5e22-78a9-4037-a869-8a86666185e9": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bdcabf13-614b-4027-adcd-a0d2fb3f1ece": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8e2db7a-0c78-420e-8e80-c46a7063f841": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f46f2b2-9b3b-4ff6-81d9-f2dc7f51eb67": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b537ca-21e2-4831-8e6b-480c0e206023": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e872937-6ba6-4d25-8de9-bcd27361eac7": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/99be4855-1c52-4f7b-ad38-7df75d0224b1": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c9af162-77d0-404e-ae1f-f84a39c656fa": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dec2be06-df1a-4030-9296-07f876faa59a": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b0b5d14-dd41-4f00-991a-54e30b0ad61f": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4447341-0e17-47d9-b7a8-c4b3e6a1da81": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ce86c85-cd06-40fa-9897-9ec8bf9b6b90": { + "min": 1205, + "max": 1205, + "count": 1, + "mean": 1205, + "p50": 1200.1, + "median": 1200.1, + "p75": 1200.1, + "p90": 1200.1, + "p95": 1200.1, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/301b7098-f45b-4986-97a7-b06394a883cf": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfa4ee7c-b332-40b5-8833-8593b1840190": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bd19486-e0f1-42cd-ad19-9cba04f78bc5": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fba1b67-eb76-4b11-9bf9-58995e422fcc": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e304b73-59e8-42cb-ae14-1ab0f569583c": { + "min": 1228, + "max": 1228, + "count": 1, + "mean": 1228, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c3a0135-1d0c-4c49-b6c4-98893edd4b37": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a4d3d17-0cdb-4a3d-998b-9e48a52af233": { + "min": 1000, + "max": 1000, + "count": 1, + "mean": 1000, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/45b44e01-2b50-44db-84c6-1e4975079342": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4ad9cd4-d704-48e7-943f-aae51aadc2fb": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d4a34bb-7531-4d4a-abdb-d787df8d7de2": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5f043a9e-f31d-4bd1-8087-ce645c78193e": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53abbaae-f49b-4cea-81ee-7fd0174d20bb": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fcf90e6-64d2-4f08-a3f6-525d378a4864": { + "min": 841, + "max": 841, + "count": 1, + "mean": 841, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ee11ac2-ebc9-42b5-b9ef-70af27fd9b81": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15e58dc1-2a03-40b1-afa5-8800d64700bc": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bcc4f35-2a7f-4a89-9f16-ed568f533628": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ab5a291-49f4-4f9d-b332-87ad381896e2": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aeec797-9eb1-4619-92ba-dbbc36150ba1": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84c641ee-cac7-477c-8377-53b26e74a357": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5990aa40-6543-4f7b-8cae-50864865292b": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + } + } + }, + "intermediate": [ + { + "counters": { + "vusers.created_by_name.Crawl a URL": 6, + "vusers.created": 6, + "http.requests": 6, + "http.codes.200": 5, + "http.responses": 5, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 5 + }, + "rates": { + "http.request_rate": 1 + }, + "firstCounterAt": 1716485714822, + "firstHistogramAt": 1716485715843, + "lastCounterAt": 1716485719891, + "lastHistogramAt": 1716485719891, + "firstMetricAt": 1716485714822, + "lastMetricAt": 1716485719891, + "period": "1716485710000", + "http.request_rate": null, + "summaries": { + "http.response_time": { + "min": 881, + "max": 1183, + "count": 5, + "mean": 978.8, + "p50": 925.4, + "median": 925.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 881, + "max": 1183, + "count": 5, + "mean": 978.8, + "p50": 925.4, + "median": 925.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + } + }, + "histograms": { + "http.response_time": { + "min": 881, + "max": 1183, + "count": 5, + "mean": 978.8, + "p50": 925.4, + "median": 925.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 881, + "max": 1183, + "count": 5, + "mean": 978.8, + "p50": 925.4, + "median": 925.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + } + } + }, + { + "counters": { + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "http.requests": 15, + "http.codes.200": 14, + "http.responses": 14, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/c8e2d906-aebf-4c94-90d1-4d475b0b565e.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 4, + "plugins.metrics-by-endpoint./v0/crawl/status/e2dbe0e1-f3c5-4e9b-8a2f-700694bb6ef2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d19e6d17-0352-4df2-a47b-572ad4b6d816.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/443ef2c4-8f5b-406d-ac2f-f03ca05ad861.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716485720821, + "firstHistogramAt": 1716485720915, + "lastCounterAt": 1716485729895, + "lastHistogramAt": 1716485729812, + "firstMetricAt": 1716485720821, + "lastMetricAt": 1716485729895, + "period": "1716485720000", + "summaries": { + "http.response_time": { + "min": 713, + "max": 1030, + "count": 14, + "mean": 818.4, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 871.5, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 751, + "max": 1030, + "count": 10, + "mean": 815.5, + "p50": 772.9, + "median": 772.9, + "p75": 804.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8e2d906-aebf-4c94-90d1-4d475b0b565e": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11816.8, + "max": 12143.6, + "count": 4, + "mean": 11947.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2dbe0e1-f3c5-4e9b-8a2f-700694bb6ef2": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d19e6d17-0352-4df2-a47b-572ad4b6d816": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/443ef2c4-8f5b-406d-ac2f-f03ca05ad861": { + "min": 956, + "max": 956, + "count": 1, + "mean": 956, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + } + }, + "histograms": { + "http.response_time": { + "min": 713, + "max": 1030, + "count": 14, + "mean": 818.4, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 871.5, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 751, + "max": 1030, + "count": 10, + "mean": 815.5, + "p50": 772.9, + "median": 772.9, + "p75": 804.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8e2d906-aebf-4c94-90d1-4d475b0b565e": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11816.8, + "max": 12143.6, + "count": 4, + "mean": 11947.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2dbe0e1-f3c5-4e9b-8a2f-700694bb6ef2": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d19e6d17-0352-4df2-a47b-572ad4b6d816": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/443ef2c4-8f5b-406d-ac2f-f03ca05ad861": { + "min": 956, + "max": 956, + "count": 1, + "mean": 956, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + } + } + }, + { + "counters": { + "http.codes.200": 19, + "http.responses": 19, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 9, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "http.requests": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/36b96bf0-0418-4cc0-b1d8-5038bcac0ca0.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/9d94fd7b-8fa4-4781-87af-388edc8b4226.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96b316de-717c-4b3f-b450-b542c77679f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7e745593-c147-42f2-90e1-1a828a9bff72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0ce04db4-6689-443a-879b-302498238049.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78486493-73f6-4d64-9b81-dc53714790b9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bac1f4ae-7e5c-4961-8cb5-045f7af4f816.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2a8f10c5-968b-425a-908e-7bdc4cd29117.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5a52a3cb-019e-46b5-a061-21758d4ab132.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4e91613-b5fc-44f2-9fa2-5c79ae62ffa6.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716485730648, + "firstHistogramAt": 1716485730648, + "lastCounterAt": 1716485739823, + "lastHistogramAt": 1716485739444, + "firstMetricAt": 1716485730648, + "lastMetricAt": 1716485739823, + "period": "1716485730000", + "summaries": { + "http.response_time": { + "min": 697, + "max": 1102, + "count": 19, + "mean": 810.9, + "p50": 757.6, + "median": 757.6, + "p75": 854.2, + "p90": 963.1, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 758, + "max": 1102, + "count": 9, + "mean": 835.2, + "p50": 772.9, + "median": 772.9, + "p75": 854.2, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36b96bf0-0418-4cc0-b1d8-5038bcac0ca0": { + "min": 1070, + "max": 1070, + "count": 1, + "mean": 1070, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "vusers.session_length": { + "min": 11598.4, + "max": 12208.6, + "count": 10, + "mean": 11760.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d94fd7b-8fa4-4781-87af-388edc8b4226": { + "min": 727, + "max": 727, + "count": 1, + "mean": 727, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96b316de-717c-4b3f-b450-b542c77679f9": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e745593-c147-42f2-90e1-1a828a9bff72": { + "min": 968, + "max": 968, + "count": 1, + "mean": 968, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce04db4-6689-443a-879b-302498238049": { + "min": 712, + "max": 712, + "count": 1, + "mean": 712, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78486493-73f6-4d64-9b81-dc53714790b9": { + "min": 697, + "max": 697, + "count": 1, + "mean": 697, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bac1f4ae-7e5c-4961-8cb5-045f7af4f816": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8f10c5-968b-425a-908e-7bdc4cd29117": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a52a3cb-019e-46b5-a061-21758d4ab132": { + "min": 726, + "max": 726, + "count": 1, + "mean": 726, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4e91613-b5fc-44f2-9fa2-5c79ae62ffa6": { + "min": 735, + "max": 735, + "count": 1, + "mean": 735, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + } + }, + "histograms": { + "http.response_time": { + "min": 697, + "max": 1102, + "count": 19, + "mean": 810.9, + "p50": 757.6, + "median": 757.6, + "p75": 854.2, + "p90": 963.1, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 758, + "max": 1102, + "count": 9, + "mean": 835.2, + "p50": 772.9, + "median": 772.9, + "p75": 854.2, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36b96bf0-0418-4cc0-b1d8-5038bcac0ca0": { + "min": 1070, + "max": 1070, + "count": 1, + "mean": 1070, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "vusers.session_length": { + "min": 11598.4, + "max": 12208.6, + "count": 10, + "mean": 11760.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d94fd7b-8fa4-4781-87af-388edc8b4226": { + "min": 727, + "max": 727, + "count": 1, + "mean": 727, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96b316de-717c-4b3f-b450-b542c77679f9": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e745593-c147-42f2-90e1-1a828a9bff72": { + "min": 968, + "max": 968, + "count": 1, + "mean": 968, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce04db4-6689-443a-879b-302498238049": { + "min": 712, + "max": 712, + "count": 1, + "mean": 712, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78486493-73f6-4d64-9b81-dc53714790b9": { + "min": 697, + "max": 697, + "count": 1, + "mean": 697, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bac1f4ae-7e5c-4961-8cb5-045f7af4f816": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8f10c5-968b-425a-908e-7bdc4cd29117": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a52a3cb-019e-46b5-a061-21758d4ab132": { + "min": 726, + "max": 726, + "count": 1, + "mean": 726, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4e91613-b5fc-44f2-9fa2-5c79ae62ffa6": { + "min": 735, + "max": 735, + "count": 1, + "mean": 735, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + } + } + }, + { + "counters": { + "http.codes.200": 21, + "http.responses": 21, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 11, + "plugins.metrics-by-endpoint./v0/crawl/status/dfa90678-45a1-4b91-bb1d-cadcfc0c39ac.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "http.requests": 19, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/c0ef0547-5435-470d-b655-5a425ff00f8f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d6668faa-a1ee-4c98-943e-73c0d2e17120.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5ffc7458-2ed3-4d32-b25c-d373025c1e4d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b9f0ec10-6127-432d-aecb-1bfc783d6d14.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2099ea74-b6fd-4437-aac9-2fb3c59b7726.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b1b804d2-e8b9-434d-8735-6f9699ce2b44.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/60af1212-f05a-40d8-be85-fb33171c06c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/11ba82c2-a2b1-4eac-9d99-034e87a4e057.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5416246e-3e29-4178-b222-f57d5b487d68.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716485740026, + "firstHistogramAt": 1716485740026, + "lastCounterAt": 1716485749824, + "lastHistogramAt": 1716485749676, + "firstMetricAt": 1716485740026, + "lastMetricAt": 1716485749824, + "period": "1716485740000", + "summaries": { + "http.response_time": { + "min": 701, + "max": 1338, + "count": 21, + "mean": 829.7, + "p50": 772.9, + "median": 772.9, + "p75": 854.2, + "p90": 1064.4, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 748, + "max": 1136, + "count": 11, + "mean": 856.7, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dfa90678-45a1-4b91-bb1d-cadcfc0c39ac": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "vusers.session_length": { + "min": 11607.4, + "max": 12345.8, + "count": 10, + "mean": 11782.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0ef0547-5435-470d-b655-5a425ff00f8f": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6668faa-a1ee-4c98-943e-73c0d2e17120": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5ffc7458-2ed3-4d32-b25c-d373025c1e4d": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b9f0ec10-6127-432d-aecb-1bfc783d6d14": { + "min": 733, + "max": 733, + "count": 1, + "mean": 733, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2099ea74-b6fd-4437-aac9-2fb3c59b7726": { + "min": 1338, + "max": 1338, + "count": 1, + "mean": 1338, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1b804d2-e8b9-434d-8735-6f9699ce2b44": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60af1212-f05a-40d8-be85-fb33171c06c2": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11ba82c2-a2b1-4eac-9d99-034e87a4e057": { + "min": 725, + "max": 725, + "count": 1, + "mean": 725, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5416246e-3e29-4178-b222-f57d5b487d68": { + "min": 706, + "max": 706, + "count": 1, + "mean": 706, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + } + }, + "histograms": { + "http.response_time": { + "min": 701, + "max": 1338, + "count": 21, + "mean": 829.7, + "p50": 772.9, + "median": 772.9, + "p75": 854.2, + "p90": 1064.4, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 748, + "max": 1136, + "count": 11, + "mean": 856.7, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dfa90678-45a1-4b91-bb1d-cadcfc0c39ac": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "vusers.session_length": { + "min": 11607.4, + "max": 12345.8, + "count": 10, + "mean": 11782.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0ef0547-5435-470d-b655-5a425ff00f8f": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6668faa-a1ee-4c98-943e-73c0d2e17120": { + "min": 710, + "max": 710, + "count": 1, + "mean": 710, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5ffc7458-2ed3-4d32-b25c-d373025c1e4d": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b9f0ec10-6127-432d-aecb-1bfc783d6d14": { + "min": 733, + "max": 733, + "count": 1, + "mean": 733, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2099ea74-b6fd-4437-aac9-2fb3c59b7726": { + "min": 1338, + "max": 1338, + "count": 1, + "mean": 1338, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1b804d2-e8b9-434d-8735-6f9699ce2b44": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60af1212-f05a-40d8-be85-fb33171c06c2": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11ba82c2-a2b1-4eac-9d99-034e87a4e057": { + "min": 725, + "max": 725, + "count": 1, + "mean": 725, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5416246e-3e29-4178-b222-f57d5b487d68": { + "min": 706, + "max": 706, + "count": 1, + "mean": 706, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + } + } + }, + { + "counters": { + "http.requests": 21, + "http.codes.200": 19, + "http.responses": 19, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 9, + "plugins.metrics-by-endpoint./v0/crawl/status/03d32438-f79a-4ad8-8125-f4ebdd486282.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/cf7ccd97-0469-4abf-bdb1-5ba622f51f7a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2a16eca9-8f18-4098-97c8-1132d506e4b1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/40ddb1fa-c172-4464-8af5-99385c774038.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c63353a0-ad67-4eac-941d-d2e2a9d6a39d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/39906451-3e9e-436a-9df2-087713f8c2ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1578ce2e-28c6-4606-bfd2-a593022828a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/85d90e0b-6fd6-4927-b70f-99fc533dcb4f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5380b7f9-a7ef-4e67-b6a8-24a4a69e19bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5abb9c98-388a-4755-b8cb-968862cf407e.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716485750031, + "firstHistogramAt": 1716485750648, + "lastCounterAt": 1716485759823, + "lastHistogramAt": 1716485759442, + "firstMetricAt": 1716485750031, + "lastMetricAt": 1716485759823, + "period": "1716485750000", + "summaries": { + "http.response_time": { + "min": 707, + "max": 1108, + "count": 19, + "mean": 837.7, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1002.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 741, + "max": 1108, + "count": 9, + "mean": 858, + "p50": 804.5, + "median": 804.5, + "p75": 925.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03d32438-f79a-4ad8-8125-f4ebdd486282": { + "min": 707, + "max": 707, + "count": 1, + "mean": 707, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11620.1, + "max": 12119.2, + "count": 10, + "mean": 11822.7, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf7ccd97-0469-4abf-bdb1-5ba622f51f7a": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a16eca9-8f18-4098-97c8-1132d506e4b1": { + "min": 954, + "max": 954, + "count": 1, + "mean": 954, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40ddb1fa-c172-4464-8af5-99385c774038": { + "min": 723, + "max": 723, + "count": 1, + "mean": 723, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c63353a0-ad67-4eac-941d-d2e2a9d6a39d": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39906451-3e9e-436a-9df2-087713f8c2ea": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1578ce2e-28c6-4606-bfd2-a593022828a1": { + "min": 1057, + "max": 1057, + "count": 1, + "mean": 1057, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85d90e0b-6fd6-4927-b70f-99fc533dcb4f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5380b7f9-a7ef-4e67-b6a8-24a4a69e19bf": { + "min": 718, + "max": 718, + "count": 1, + "mean": 718, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5abb9c98-388a-4755-b8cb-968862cf407e": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + } + }, + "histograms": { + "http.response_time": { + "min": 707, + "max": 1108, + "count": 19, + "mean": 837.7, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1002.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 741, + "max": 1108, + "count": 9, + "mean": 858, + "p50": 804.5, + "median": 804.5, + "p75": 925.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03d32438-f79a-4ad8-8125-f4ebdd486282": { + "min": 707, + "max": 707, + "count": 1, + "mean": 707, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11620.1, + "max": 12119.2, + "count": 10, + "mean": 11822.7, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf7ccd97-0469-4abf-bdb1-5ba622f51f7a": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a16eca9-8f18-4098-97c8-1132d506e4b1": { + "min": 954, + "max": 954, + "count": 1, + "mean": 954, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40ddb1fa-c172-4464-8af5-99385c774038": { + "min": 723, + "max": 723, + "count": 1, + "mean": 723, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c63353a0-ad67-4eac-941d-d2e2a9d6a39d": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39906451-3e9e-436a-9df2-087713f8c2ea": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1578ce2e-28c6-4606-bfd2-a593022828a1": { + "min": 1057, + "max": 1057, + "count": 1, + "mean": 1057, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85d90e0b-6fd6-4927-b70f-99fc533dcb4f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5380b7f9-a7ef-4e67-b6a8-24a4a69e19bf": { + "min": 718, + "max": 718, + "count": 1, + "mean": 718, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5abb9c98-388a-4755-b8cb-968862cf407e": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + } + } + }, + { + "counters": { + "http.codes.200": 21, + "http.responses": 21, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 11, + "plugins.metrics-by-endpoint./v0/crawl/status/1b22be43-e52d-44a4-a341-c3cbf673fe9e.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "http.requests": 19, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/608b56ef-1398-4b55-aa3d-e46bad8f2293.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/16f81463-4ebb-4c27-a3ac-f611cb636c0f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/79c4bc06-a3b6-40cd-bdc7-c205e797ba31.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/12711097-51a6-4fa3-8067-c9a0b23f9f58.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d3d0edaf-1eea-4299-bb2e-f0fd42e37d5f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f2ef0ffa-d14b-4ffc-a9a4-9f1bfa0a4af8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3aefd52e-398e-4886-a2d7-5f2fb0390052.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a761316e-5e04-468e-8de9-43a2c8b786e8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e89b16cf-d0cf-4aee-9691-381b159d0fe4.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716485760036, + "firstHistogramAt": 1716485760036, + "lastCounterAt": 1716485769825, + "lastHistogramAt": 1716485769773, + "firstMetricAt": 1716485760036, + "lastMetricAt": 1716485769825, + "period": "1716485760000", + "summaries": { + "http.response_time": { + "min": 703, + "max": 1153, + "count": 21, + "mean": 882.4, + "p50": 820.7, + "median": 820.7, + "p75": 1022.7, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 790, + "max": 1153, + "count": 11, + "mean": 954.1, + "p50": 925.4, + "median": 925.4, + "p75": 1022.7, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b22be43-e52d-44a4-a341-c3cbf673fe9e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11605.8, + "max": 12099.6, + "count": 10, + "mean": 11783.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/608b56ef-1398-4b55-aa3d-e46bad8f2293": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16f81463-4ebb-4c27-a3ac-f611cb636c0f": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c4bc06-a3b6-40cd-bdc7-c205e797ba31": { + "min": 949, + "max": 949, + "count": 1, + "mean": 949, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12711097-51a6-4fa3-8067-c9a0b23f9f58": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d3d0edaf-1eea-4299-bb2e-f0fd42e37d5f": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f2ef0ffa-d14b-4ffc-a9a4-9f1bfa0a4af8": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3aefd52e-398e-4886-a2d7-5f2fb0390052": { + "min": 737, + "max": 737, + "count": 1, + "mean": 737, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a761316e-5e04-468e-8de9-43a2c8b786e8": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e89b16cf-d0cf-4aee-9691-381b159d0fe4": { + "min": 703, + "max": 703, + "count": 1, + "mean": 703, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + } + }, + "histograms": { + "http.response_time": { + "min": 703, + "max": 1153, + "count": 21, + "mean": 882.4, + "p50": 820.7, + "median": 820.7, + "p75": 1022.7, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 790, + "max": 1153, + "count": 11, + "mean": 954.1, + "p50": 925.4, + "median": 925.4, + "p75": 1022.7, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b22be43-e52d-44a4-a341-c3cbf673fe9e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11605.8, + "max": 12099.6, + "count": 10, + "mean": 11783.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/608b56ef-1398-4b55-aa3d-e46bad8f2293": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16f81463-4ebb-4c27-a3ac-f611cb636c0f": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c4bc06-a3b6-40cd-bdc7-c205e797ba31": { + "min": 949, + "max": 949, + "count": 1, + "mean": 949, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12711097-51a6-4fa3-8067-c9a0b23f9f58": { + "min": 716, + "max": 716, + "count": 1, + "mean": 716, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d3d0edaf-1eea-4299-bb2e-f0fd42e37d5f": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f2ef0ffa-d14b-4ffc-a9a4-9f1bfa0a4af8": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3aefd52e-398e-4886-a2d7-5f2fb0390052": { + "min": 737, + "max": 737, + "count": 1, + "mean": 737, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a761316e-5e04-468e-8de9-43a2c8b786e8": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e89b16cf-d0cf-4aee-9691-381b159d0fe4": { + "min": 703, + "max": 703, + "count": 1, + "mean": 703, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + } + } + }, + { + "counters": { + "http.requests": 27, + "http.codes.200": 25, + "http.responses": 25, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 15, + "vusers.created_by_name.Crawl a URL": 16, + "vusers.created": 16, + "plugins.metrics-by-endpoint./v0/crawl/status/bd979ace-90ef-4795-807f-91cb049c3b54.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/12ad7a1c-eac6-4f12-9fe0-a9704f6ad7c6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e30500bc-82c8-44ed-89a1-28cf7c1e1dc8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7d0ed662-43ce-4d6f-8048-e6dbc7f4ed57.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/88f9c622-6931-407a-9cf5-3513a885785f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2b6054d1-4318-40a5-8209-c4448a1c39bd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7078a08c-c434-4c18-b703-34e0ca022bd4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/10dcad79-9020-4ba4-b34d-1759be951a8a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3907e3ee-6cb8-4bb1-8190-5e7c2c991ccb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c5c5e775-f4f0-450e-8e83-4e0162f2b44f.codes.200": 1 + }, + "rates": { + "http.request_rate": 3 + }, + "firstCounterAt": 1716485770042, + "firstHistogramAt": 1716485770628, + "lastCounterAt": 1716485779879, + "lastHistogramAt": 1716485779769, + "firstMetricAt": 1716485770042, + "lastMetricAt": 1716485779879, + "period": "1716485770000", + "http.request_rate": null, + "summaries": { + "http.response_time": { + "min": 701, + "max": 1186, + "count": 25, + "mean": 858, + "p50": 788.5, + "median": 788.5, + "p75": 944, + "p90": 1043.3, + "p95": 1085.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 735, + "max": 1111, + "count": 15, + "mean": 863.5, + "p50": 788.5, + "median": 788.5, + "p75": 907, + "p90": 1022.7, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bd979ace-90ef-4795-807f-91cb049c3b54": { + "min": 831, + "max": 831, + "count": 1, + "mean": 831, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "vusers.session_length": { + "min": 11630.3, + "max": 12423.3, + "count": 10, + "mean": 11949.4, + "p50": 11971.2, + "median": 11971.2, + "p75": 12213.1, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12ad7a1c-eac6-4f12-9fe0-a9704f6ad7c6": { + "min": 721, + "max": 721, + "count": 1, + "mean": 721, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e30500bc-82c8-44ed-89a1-28cf7c1e1dc8": { + "min": 1052, + "max": 1052, + "count": 1, + "mean": 1052, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d0ed662-43ce-4d6f-8048-e6dbc7f4ed57": { + "min": 947, + "max": 947, + "count": 1, + "mean": 947, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/88f9c622-6931-407a-9cf5-3513a885785f": { + "min": 714, + "max": 714, + "count": 1, + "mean": 714, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b6054d1-4318-40a5-8209-c4448a1c39bd": { + "min": 709, + "max": 709, + "count": 1, + "mean": 709, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7078a08c-c434-4c18-b703-34e0ca022bd4": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/10dcad79-9020-4ba4-b34d-1759be951a8a": { + "min": 1186, + "max": 1186, + "count": 1, + "mean": 1186, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3907e3ee-6cb8-4bb1-8190-5e7c2c991ccb": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5c5e775-f4f0-450e-8e83-4e0162f2b44f": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 701, + "max": 1186, + "count": 25, + "mean": 858, + "p50": 788.5, + "median": 788.5, + "p75": 944, + "p90": 1043.3, + "p95": 1085.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 735, + "max": 1111, + "count": 15, + "mean": 863.5, + "p50": 788.5, + "median": 788.5, + "p75": 907, + "p90": 1022.7, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bd979ace-90ef-4795-807f-91cb049c3b54": { + "min": 831, + "max": 831, + "count": 1, + "mean": 831, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "vusers.session_length": { + "min": 11630.3, + "max": 12423.3, + "count": 10, + "mean": 11949.4, + "p50": 11971.2, + "median": 11971.2, + "p75": 12213.1, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12ad7a1c-eac6-4f12-9fe0-a9704f6ad7c6": { + "min": 721, + "max": 721, + "count": 1, + "mean": 721, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e30500bc-82c8-44ed-89a1-28cf7c1e1dc8": { + "min": 1052, + "max": 1052, + "count": 1, + "mean": 1052, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d0ed662-43ce-4d6f-8048-e6dbc7f4ed57": { + "min": 947, + "max": 947, + "count": 1, + "mean": 947, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/88f9c622-6931-407a-9cf5-3513a885785f": { + "min": 714, + "max": 714, + "count": 1, + "mean": 714, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b6054d1-4318-40a5-8209-c4448a1c39bd": { + "min": 709, + "max": 709, + "count": 1, + "mean": 709, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7078a08c-c434-4c18-b703-34e0ca022bd4": { + "min": 701, + "max": 701, + "count": 1, + "mean": 701, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/10dcad79-9020-4ba4-b34d-1759be951a8a": { + "min": 1186, + "max": 1186, + "count": 1, + "mean": 1186, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3907e3ee-6cb8-4bb1-8190-5e7c2c991ccb": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5c5e775-f4f0-450e-8e83-4e0162f2b44f": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 34, + "http.responses": 34, + "plugins.metrics-by-endpoint./v0/crawl/status/a1dd4f6f-3c4f-4296-9cf5-5a0b339e009c.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 14, + "http.requests": 35, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 20, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/02db555c-aebe-49b0-b4a2-49dd31b6c082.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d04194a6-c148-4c86-a1ef-b3255a948093.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7f610f92-d8f3-4856-9430-908bbe000410.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc96bb99-cf98-42df-b478-d57211b3f525.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e4fa4e49-adea-4093-964b-8e76697da82a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57b08269-f9c0-43d4-8c87-f2a703f8f927.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/350c0f30-6593-4d85-a7b7-6b69a983eabb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eeccd6a0-11a2-4c2b-8ff1-d09039d90d1c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4ab8f51-2106-4786-889b-f0f7d4f4aefa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b13c23d6-3a80-4dde-8a69-c4f9958eef66.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/179eb0aa-340f-480c-93b6-c2b5fc56a9f4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/25cf6bbc-77d6-4415-b5c7-6816361b8333.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/324891fc-9afe-4d63-85c5-f625a43e4c42.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485780618, + "firstHistogramAt": 1716485780618, + "lastCounterAt": 1716485789878, + "lastHistogramAt": 1716485789867, + "firstMetricAt": 1716485780618, + "lastMetricAt": 1716485789878, + "period": "1716485780000", + "summaries": { + "http.response_time": { + "min": 735, + "max": 1357, + "count": 34, + "mean": 909.3, + "p50": 854.2, + "median": 854.2, + "p75": 925.4, + "p90": 1130.2, + "p95": 1224.4, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a1dd4f6f-3c4f-4296-9cf5-5a0b339e009c": { + "min": 867, + "max": 867, + "count": 1, + "mean": 867, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "vusers.session_length": { + "min": 11660.8, + "max": 12377.8, + "count": 14, + "mean": 11928.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 735, + "max": 1271, + "count": 20, + "mean": 902.2, + "p50": 854.2, + "median": 854.2, + "p75": 925.4, + "p90": 1085.9, + "p95": 1200.1, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02db555c-aebe-49b0-b4a2-49dd31b6c082": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d04194a6-c148-4c86-a1ef-b3255a948093": { + "min": 1357, + "max": 1357, + "count": 1, + "mean": 1357, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f610f92-d8f3-4856-9430-908bbe000410": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc96bb99-cf98-42df-b478-d57211b3f525": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4fa4e49-adea-4093-964b-8e76697da82a": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b08269-f9c0-43d4-8c87-f2a703f8f927": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/350c0f30-6593-4d85-a7b7-6b69a983eabb": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eeccd6a0-11a2-4c2b-8ff1-d09039d90d1c": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4ab8f51-2106-4786-889b-f0f7d4f4aefa": { + "min": 936, + "max": 936, + "count": 1, + "mean": 936, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b13c23d6-3a80-4dde-8a69-c4f9958eef66": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/179eb0aa-340f-480c-93b6-c2b5fc56a9f4": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25cf6bbc-77d6-4415-b5c7-6816361b8333": { + "min": 1221, + "max": 1221, + "count": 1, + "mean": 1221, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/324891fc-9afe-4d63-85c5-f625a43e4c42": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 735, + "max": 1357, + "count": 34, + "mean": 909.3, + "p50": 854.2, + "median": 854.2, + "p75": 925.4, + "p90": 1130.2, + "p95": 1224.4, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a1dd4f6f-3c4f-4296-9cf5-5a0b339e009c": { + "min": 867, + "max": 867, + "count": 1, + "mean": 867, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "vusers.session_length": { + "min": 11660.8, + "max": 12377.8, + "count": 14, + "mean": 11928.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 735, + "max": 1271, + "count": 20, + "mean": 902.2, + "p50": 854.2, + "median": 854.2, + "p75": 925.4, + "p90": 1085.9, + "p95": 1200.1, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02db555c-aebe-49b0-b4a2-49dd31b6c082": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d04194a6-c148-4c86-a1ef-b3255a948093": { + "min": 1357, + "max": 1357, + "count": 1, + "mean": 1357, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f610f92-d8f3-4856-9430-908bbe000410": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc96bb99-cf98-42df-b478-d57211b3f525": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4fa4e49-adea-4093-964b-8e76697da82a": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b08269-f9c0-43d4-8c87-f2a703f8f927": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/350c0f30-6593-4d85-a7b7-6b69a983eabb": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eeccd6a0-11a2-4c2b-8ff1-d09039d90d1c": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4ab8f51-2106-4786-889b-f0f7d4f4aefa": { + "min": 936, + "max": 936, + "count": 1, + "mean": 936, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b13c23d6-3a80-4dde-8a69-c4f9958eef66": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/179eb0aa-340f-480c-93b6-c2b5fc56a9f4": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25cf6bbc-77d6-4415-b5c7-6816361b8333": { + "min": 1221, + "max": 1221, + "count": 1, + "mean": 1221, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/324891fc-9afe-4d63-85c5-f625a43e4c42": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 40, + "http.responses": 40, + "plugins.metrics-by-endpoint./v0/crawl/status/b887fc13-3c6b-4679-9f49-6fc9dbcd38a9.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 20, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 20, + "http.requests": 40, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/e2b3fe46-1330-4dac-8d94-641cab468f1b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0efcbf9-6d94-49c8-a565-9d2a33d019c9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3c4e172b-ca9c-46d6-8fd6-bc4c3cbd3ba3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d27a5e6d-89fb-4580-aea0-b17a35cef8dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/652c419a-8ea7-455b-9b21-8b65512e83ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b80f176-ad07-49d5-a9f8-aebfb4df2e12.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa65760c-64da-48fc-8e1e-fd22efb79e87.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0e06b0e3-0512-4251-9277-0c1ce5142c26.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6ffc9613-b1f9-42d1-9531-d2082676f272.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/58c37438-f14f-46c1-be81-708b83384bba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82814432-01e6-447a-8022-b0de882d381c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d87aad3-3999-4cbe-a038-238bb5905daa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/14de96c9-a1b6-40e5-a1ad-f09441fa9970.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/096c8f13-d8d9-4ad9-8b70-1f1de909c39d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/572caebe-4318-4e9e-91c5-3498efb7746d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e7db1ea9-5eb1-487a-895e-d4a471d91ad2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/62ac3d84-1adb-4c2b-a759-be21b7d11222.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/804b9379-2edf-49e3-92de-b3b4b53fe3ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a6ed49b0-d017-4fbb-a199-1342c8171de0.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485790567, + "firstHistogramAt": 1716485790567, + "lastCounterAt": 1716485799891, + "lastHistogramAt": 1716485799891, + "firstMetricAt": 1716485790567, + "lastMetricAt": 1716485799891, + "period": "1716485790000", + "summaries": { + "http.response_time": { + "min": 742, + "max": 1156, + "count": 40, + "mean": 867, + "p50": 820.7, + "median": 820.7, + "p75": 907, + "p90": 1043.3, + "p95": 1085.9, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b887fc13-3c6b-4679-9f49-6fc9dbcd38a9": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11680.9, + "max": 12304.4, + "count": 20, + "mean": 11865.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 742, + "max": 1156, + "count": 20, + "mean": 892.8, + "p50": 837.3, + "median": 837.3, + "p75": 925.4, + "p90": 1085.9, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2b3fe46-1330-4dac-8d94-641cab468f1b": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0efcbf9-6d94-49c8-a565-9d2a33d019c9": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c4e172b-ca9c-46d6-8fd6-bc4c3cbd3ba3": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d27a5e6d-89fb-4580-aea0-b17a35cef8dd": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/652c419a-8ea7-455b-9b21-8b65512e83ed": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b80f176-ad07-49d5-a9f8-aebfb4df2e12": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa65760c-64da-48fc-8e1e-fd22efb79e87": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0e06b0e3-0512-4251-9277-0c1ce5142c26": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6ffc9613-b1f9-42d1-9531-d2082676f272": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58c37438-f14f-46c1-be81-708b83384bba": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82814432-01e6-447a-8022-b0de882d381c": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d87aad3-3999-4cbe-a038-238bb5905daa": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14de96c9-a1b6-40e5-a1ad-f09441fa9970": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/096c8f13-d8d9-4ad9-8b70-1f1de909c39d": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/572caebe-4318-4e9e-91c5-3498efb7746d": { + "min": 934, + "max": 934, + "count": 1, + "mean": 934, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7db1ea9-5eb1-487a-895e-d4a471d91ad2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62ac3d84-1adb-4c2b-a759-be21b7d11222": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/804b9379-2edf-49e3-92de-b3b4b53fe3ba": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6ed49b0-d017-4fbb-a199-1342c8171de0": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 742, + "max": 1156, + "count": 40, + "mean": 867, + "p50": 820.7, + "median": 820.7, + "p75": 907, + "p90": 1043.3, + "p95": 1085.9, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b887fc13-3c6b-4679-9f49-6fc9dbcd38a9": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11680.9, + "max": 12304.4, + "count": 20, + "mean": 11865.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 742, + "max": 1156, + "count": 20, + "mean": 892.8, + "p50": 837.3, + "median": 837.3, + "p75": 925.4, + "p90": 1085.9, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2b3fe46-1330-4dac-8d94-641cab468f1b": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0efcbf9-6d94-49c8-a565-9d2a33d019c9": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c4e172b-ca9c-46d6-8fd6-bc4c3cbd3ba3": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d27a5e6d-89fb-4580-aea0-b17a35cef8dd": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/652c419a-8ea7-455b-9b21-8b65512e83ed": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b80f176-ad07-49d5-a9f8-aebfb4df2e12": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa65760c-64da-48fc-8e1e-fd22efb79e87": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0e06b0e3-0512-4251-9277-0c1ce5142c26": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6ffc9613-b1f9-42d1-9531-d2082676f272": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58c37438-f14f-46c1-be81-708b83384bba": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82814432-01e6-447a-8022-b0de882d381c": { + "min": 884, + "max": 884, + "count": 1, + "mean": 884, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d87aad3-3999-4cbe-a038-238bb5905daa": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14de96c9-a1b6-40e5-a1ad-f09441fa9970": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/096c8f13-d8d9-4ad9-8b70-1f1de909c39d": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/572caebe-4318-4e9e-91c5-3498efb7746d": { + "min": 934, + "max": 934, + "count": 1, + "mean": 934, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7db1ea9-5eb1-487a-895e-d4a471d91ad2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62ac3d84-1adb-4c2b-a759-be21b7d11222": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/804b9379-2edf-49e3-92de-b3b4b53fe3ba": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6ed49b0-d017-4fbb-a199-1342c8171de0": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 38, + "http.responses": 38, + "plugins.metrics-by-endpoint./v0/crawl/status/c5eb8482-2188-4050-8ede-cc570d6c15c1.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 19, + "http.requests": 40, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 19, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/3b1c996d-fae9-4fb9-82be-d1e043660e16.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/caf13566-343c-469b-9dae-a27735d355ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6678299a-9bfe-43a4-8a69-b1d2393ae9e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/710ebd9b-5ad8-4281-a3da-7544df1eeab9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/519b7e16-6967-4589-b56b-d67cf1e20010.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/005a3d90-af3b-4bfd-b1e9-0f3334417fa5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/daf07b8b-5976-4fe4-aaca-fa6ceb7784ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef42a540-a7db-46af-bfbb-9f69a1c706aa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/59d0c6dd-222e-4509-a805-d866e92ecd0d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6bc4b3cf-feab-4c2e-9a1b-f30c61e738e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27156dee-1d13-4738-af90-d4baa9e09344.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/faae215b-ec4e-4264-840b-7fb46cbb69dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/87abc71a-4a68-4fb6-a753-6c0f07443514.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6e62234b-f82b-4beb-ad31-d0469e5f5201.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/482fb088-6d2c-4c07-b487-8e1d62f79f37.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a37d28c-a73f-4743-b34e-9c8b848e236c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a6fc9cdc-231b-46e3-a0e2-ffa30dcf8441.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7341750a-2ca2-4543-b9f5-aeec421bb618.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485800501, + "firstHistogramAt": 1716485800501, + "lastCounterAt": 1716485809888, + "lastHistogramAt": 1716485809888, + "firstMetricAt": 1716485800501, + "lastMetricAt": 1716485809888, + "period": "1716485800000", + "summaries": { + "http.response_time": { + "min": 745, + "max": 1404, + "count": 38, + "mean": 869.7, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 982.6, + "p95": 1043.3, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5eb8482-2188-4050-8ede-cc570d6c15c1": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11652.9, + "max": 12288.7, + "count": 19, + "mean": 11913.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 745, + "max": 1391, + "count": 19, + "mean": 852, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 907, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b1c996d-fae9-4fb9-82be-d1e043660e16": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/caf13566-343c-469b-9dae-a27735d355ba": { + "min": 979, + "max": 979, + "count": 1, + "mean": 979, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6678299a-9bfe-43a4-8a69-b1d2393ae9e6": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/710ebd9b-5ad8-4281-a3da-7544df1eeab9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/519b7e16-6967-4589-b56b-d67cf1e20010": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/005a3d90-af3b-4bfd-b1e9-0f3334417fa5": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/daf07b8b-5976-4fe4-aaca-fa6ceb7784ae": { + "min": 839, + "max": 839, + "count": 1, + "mean": 839, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef42a540-a7db-46af-bfbb-9f69a1c706aa": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59d0c6dd-222e-4509-a805-d866e92ecd0d": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bc4b3cf-feab-4c2e-9a1b-f30c61e738e4": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27156dee-1d13-4738-af90-d4baa9e09344": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/faae215b-ec4e-4264-840b-7fb46cbb69dd": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/87abc71a-4a68-4fb6-a753-6c0f07443514": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e62234b-f82b-4beb-ad31-d0469e5f5201": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/482fb088-6d2c-4c07-b487-8e1d62f79f37": { + "min": 1404, + "max": 1404, + "count": 1, + "mean": 1404, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a37d28c-a73f-4743-b34e-9c8b848e236c": { + "min": 888, + "max": 888, + "count": 1, + "mean": 888, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6fc9cdc-231b-46e3-a0e2-ffa30dcf8441": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7341750a-2ca2-4543-b9f5-aeec421bb618": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + } + }, + "histograms": { + "http.response_time": { + "min": 745, + "max": 1404, + "count": 38, + "mean": 869.7, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 982.6, + "p95": 1043.3, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5eb8482-2188-4050-8ede-cc570d6c15c1": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11652.9, + "max": 12288.7, + "count": 19, + "mean": 11913.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 745, + "max": 1391, + "count": 19, + "mean": 852, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 907, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b1c996d-fae9-4fb9-82be-d1e043660e16": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/caf13566-343c-469b-9dae-a27735d355ba": { + "min": 979, + "max": 979, + "count": 1, + "mean": 979, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6678299a-9bfe-43a4-8a69-b1d2393ae9e6": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/710ebd9b-5ad8-4281-a3da-7544df1eeab9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/519b7e16-6967-4589-b56b-d67cf1e20010": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/005a3d90-af3b-4bfd-b1e9-0f3334417fa5": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/daf07b8b-5976-4fe4-aaca-fa6ceb7784ae": { + "min": 839, + "max": 839, + "count": 1, + "mean": 839, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef42a540-a7db-46af-bfbb-9f69a1c706aa": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59d0c6dd-222e-4509-a805-d866e92ecd0d": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bc4b3cf-feab-4c2e-9a1b-f30c61e738e4": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27156dee-1d13-4738-af90-d4baa9e09344": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/faae215b-ec4e-4264-840b-7fb46cbb69dd": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/87abc71a-4a68-4fb6-a753-6c0f07443514": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e62234b-f82b-4beb-ad31-d0469e5f5201": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/482fb088-6d2c-4c07-b487-8e1d62f79f37": { + "min": 1404, + "max": 1404, + "count": 1, + "mean": 1404, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a37d28c-a73f-4743-b34e-9c8b848e236c": { + "min": 888, + "max": 888, + "count": 1, + "mean": 888, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6fc9cdc-231b-46e3-a0e2-ffa30dcf8441": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7341750a-2ca2-4543-b9f5-aeec421bb618": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + } + } + }, + { + "counters": { + "http.codes.200": 42, + "http.responses": 42, + "plugins.metrics-by-endpoint./v0/crawl/status/68a7be8b-a534-45e9-b840-0dc2e6ed8504.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 21, + "http.requests": 39, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 21, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/9186f135-26f9-4345-aa5c-bd04cba99639.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/92f49267-7538-488f-abbe-a2481a8ad4c9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6782938e-9333-472a-aee4-0fc79511c93d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f937b707-46ec-4760-a46a-9ebddee2d831.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4ae3d83-a799-44f7-8be4-731d772421e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cd4f21d4-157d-44dd-895f-5110c76db9e2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc017078-01c0-4f41-a3f6-58324e6ed951.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5e3bd036-8dad-42bc-975b-66e108c62dbc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6c7625b4-a9a9-4fac-a376-77b6b9ab1b8b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27a6b49d-adab-4113-8a85-841a6c9b1ab3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c8def498-c63b-4049-806c-0657ea72026b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cab9e3a3-a3a7-4843-9dd1-f44c1e91fd04.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/efe8ff88-ffad-4445-a61d-390a7e6ddce9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/94555490-24b9-4272-aac7-9da68c80253c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96a39a15-f861-488f-88f7-1d7488b3b85d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/40145f1d-2019-4987-aada-499c14204a9a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/30cc0d4f-3599-448b-ba7b-d076b143a6d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c32efad-2f2d-4bd8-a868-788f4ce27600.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/93794a87-d60d-4f50-8c87-94fc83375b76.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/73eba61f-3979-4dea-aa2a-6b32361ca539.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485810062, + "firstHistogramAt": 1716485810062, + "lastCounterAt": 1716485819879, + "lastHistogramAt": 1716485819844, + "firstMetricAt": 1716485810062, + "lastMetricAt": 1716485819879, + "period": "1716485810000", + "summaries": { + "http.response_time": { + "min": 760, + "max": 1353, + "count": 42, + "mean": 887.4, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1002.4, + "p95": 1085.9, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68a7be8b-a534-45e9-b840-0dc2e6ed8504": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11666.4, + "max": 12439.2, + "count": 21, + "mean": 11873, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 760, + "max": 1353, + "count": 21, + "mean": 903.6, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1085.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9186f135-26f9-4345-aa5c-bd04cba99639": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92f49267-7538-488f-abbe-a2481a8ad4c9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6782938e-9333-472a-aee4-0fc79511c93d": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f937b707-46ec-4760-a46a-9ebddee2d831": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4ae3d83-a799-44f7-8be4-731d772421e6": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd4f21d4-157d-44dd-895f-5110c76db9e2": { + "min": 907, + "max": 907, + "count": 1, + "mean": 907, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc017078-01c0-4f41-a3f6-58324e6ed951": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5e3bd036-8dad-42bc-975b-66e108c62dbc": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c7625b4-a9a9-4fac-a376-77b6b9ab1b8b": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27a6b49d-adab-4113-8a85-841a6c9b1ab3": { + "min": 1089, + "max": 1089, + "count": 1, + "mean": 1089, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8def498-c63b-4049-806c-0657ea72026b": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cab9e3a3-a3a7-4843-9dd1-f44c1e91fd04": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efe8ff88-ffad-4445-a61d-390a7e6ddce9": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94555490-24b9-4272-aac7-9da68c80253c": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96a39a15-f861-488f-88f7-1d7488b3b85d": { + "min": 1035, + "max": 1035, + "count": 1, + "mean": 1035, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40145f1d-2019-4987-aada-499c14204a9a": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/30cc0d4f-3599-448b-ba7b-d076b143a6d0": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c32efad-2f2d-4bd8-a868-788f4ce27600": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93794a87-d60d-4f50-8c87-94fc83375b76": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73eba61f-3979-4dea-aa2a-6b32361ca539": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + } + }, + "histograms": { + "http.response_time": { + "min": 760, + "max": 1353, + "count": 42, + "mean": 887.4, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1002.4, + "p95": 1085.9, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68a7be8b-a534-45e9-b840-0dc2e6ed8504": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11666.4, + "max": 12439.2, + "count": 21, + "mean": 11873, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 760, + "max": 1353, + "count": 21, + "mean": 903.6, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1085.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9186f135-26f9-4345-aa5c-bd04cba99639": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92f49267-7538-488f-abbe-a2481a8ad4c9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6782938e-9333-472a-aee4-0fc79511c93d": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f937b707-46ec-4760-a46a-9ebddee2d831": { + "min": 851, + "max": 851, + "count": 1, + "mean": 851, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4ae3d83-a799-44f7-8be4-731d772421e6": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd4f21d4-157d-44dd-895f-5110c76db9e2": { + "min": 907, + "max": 907, + "count": 1, + "mean": 907, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc017078-01c0-4f41-a3f6-58324e6ed951": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5e3bd036-8dad-42bc-975b-66e108c62dbc": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c7625b4-a9a9-4fac-a376-77b6b9ab1b8b": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27a6b49d-adab-4113-8a85-841a6c9b1ab3": { + "min": 1089, + "max": 1089, + "count": 1, + "mean": 1089, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8def498-c63b-4049-806c-0657ea72026b": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cab9e3a3-a3a7-4843-9dd1-f44c1e91fd04": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efe8ff88-ffad-4445-a61d-390a7e6ddce9": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94555490-24b9-4272-aac7-9da68c80253c": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96a39a15-f861-488f-88f7-1d7488b3b85d": { + "min": 1035, + "max": 1035, + "count": 1, + "mean": 1035, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40145f1d-2019-4987-aada-499c14204a9a": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/30cc0d4f-3599-448b-ba7b-d076b143a6d0": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c32efad-2f2d-4bd8-a868-788f4ce27600": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93794a87-d60d-4f50-8c87-94fc83375b76": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73eba61f-3979-4dea-aa2a-6b32361ca539": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + } + } + }, + { + "counters": { + "http.codes.200": 39, + "http.responses": 39, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 19, + "http.requests": 41, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/2da52a7b-d59a-4cbc-a5b0-9a96512e51e5.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/0cb18342-b576-45e7-9d47-27537855396f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/44dc9538-8f8b-4db8-9c5c-0783680320b4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc6427a5-baad-498a-a1be-70c986b5e6a0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb593041-0967-4de1-9e89-ae994979d8ce.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/833e7169-65bc-4aeb-9e81-44a28db026c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/77422a96-76e1-4a57-8475-277b6b8042b6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4a836267-c301-49ff-b7b8-10be331bc4a7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e980eed0-683e-403a-a02e-caaceb2b6379.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1829f710-619f-4b92-b2e5-ddd6e799b1ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5a710930-2f87-41a1-ae9d-8cec420bc0c4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/112bfc9e-27d9-4e08-a239-9cbb6908d579.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d13584a1-13d7-4ac1-ab2f-c60c5631ca3c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49c9f587-f385-4c76-8abb-55b58c20a154.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/93c65926-e0e8-4276-8976-4b49e2801d27.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/19d76e08-294f-4f64-8fa0-37229d2643db.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4ad1eb26-342b-4429-adaf-99e1192722ee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b8628dea-494f-46ae-90ff-ba2501ea2ad6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/89f12ace-84a8-45fa-a076-9e60fe82f033.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/afa6fcd5-fc1e-47b9-83bc-f5134de92e0e.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485820066, + "firstHistogramAt": 1716485820659, + "lastCounterAt": 1716485829941, + "lastHistogramAt": 1716485829941, + "firstMetricAt": 1716485820066, + "lastMetricAt": 1716485829941, + "period": "1716485820000", + "summaries": { + "http.response_time": { + "min": 739, + "max": 1350, + "count": 39, + "mean": 893.8, + "p50": 820.7, + "median": 820.7, + "p75": 944, + "p90": 1130.2, + "p95": 1153.1, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 739, + "max": 1350, + "count": 19, + "mean": 896.2, + "p50": 837.3, + "median": 837.3, + "p75": 944, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2da52a7b-d59a-4cbc-a5b0-9a96512e51e5": { + "min": 1154, + "max": 1154, + "count": 1, + "mean": 1154, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "vusers.session_length": { + "min": 11676.1, + "max": 12322.9, + "count": 20, + "mean": 11949.2, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0cb18342-b576-45e7-9d47-27537855396f": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44dc9538-8f8b-4db8-9c5c-0783680320b4": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc6427a5-baad-498a-a1be-70c986b5e6a0": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb593041-0967-4de1-9e89-ae994979d8ce": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/833e7169-65bc-4aeb-9e81-44a28db026c2": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/77422a96-76e1-4a57-8475-277b6b8042b6": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a836267-c301-49ff-b7b8-10be331bc4a7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e980eed0-683e-403a-a02e-caaceb2b6379": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1829f710-619f-4b92-b2e5-ddd6e799b1ba": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a710930-2f87-41a1-ae9d-8cec420bc0c4": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/112bfc9e-27d9-4e08-a239-9cbb6908d579": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d13584a1-13d7-4ac1-ab2f-c60c5631ca3c": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c9f587-f385-4c76-8abb-55b58c20a154": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93c65926-e0e8-4276-8976-4b49e2801d27": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19d76e08-294f-4f64-8fa0-37229d2643db": { + "min": 1174, + "max": 1174, + "count": 1, + "mean": 1174, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ad1eb26-342b-4429-adaf-99e1192722ee": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8628dea-494f-46ae-90ff-ba2501ea2ad6": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89f12ace-84a8-45fa-a076-9e60fe82f033": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afa6fcd5-fc1e-47b9-83bc-f5134de92e0e": { + "min": 1081, + "max": 1081, + "count": 1, + "mean": 1081, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + } + }, + "histograms": { + "http.response_time": { + "min": 739, + "max": 1350, + "count": 39, + "mean": 893.8, + "p50": 820.7, + "median": 820.7, + "p75": 944, + "p90": 1130.2, + "p95": 1153.1, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 739, + "max": 1350, + "count": 19, + "mean": 896.2, + "p50": 837.3, + "median": 837.3, + "p75": 944, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2da52a7b-d59a-4cbc-a5b0-9a96512e51e5": { + "min": 1154, + "max": 1154, + "count": 1, + "mean": 1154, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "vusers.session_length": { + "min": 11676.1, + "max": 12322.9, + "count": 20, + "mean": 11949.2, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0cb18342-b576-45e7-9d47-27537855396f": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44dc9538-8f8b-4db8-9c5c-0783680320b4": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc6427a5-baad-498a-a1be-70c986b5e6a0": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb593041-0967-4de1-9e89-ae994979d8ce": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/833e7169-65bc-4aeb-9e81-44a28db026c2": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/77422a96-76e1-4a57-8475-277b6b8042b6": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a836267-c301-49ff-b7b8-10be331bc4a7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e980eed0-683e-403a-a02e-caaceb2b6379": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1829f710-619f-4b92-b2e5-ddd6e799b1ba": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5a710930-2f87-41a1-ae9d-8cec420bc0c4": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/112bfc9e-27d9-4e08-a239-9cbb6908d579": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d13584a1-13d7-4ac1-ab2f-c60c5631ca3c": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c9f587-f385-4c76-8abb-55b58c20a154": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93c65926-e0e8-4276-8976-4b49e2801d27": { + "min": 905, + "max": 905, + "count": 1, + "mean": 905, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19d76e08-294f-4f64-8fa0-37229d2643db": { + "min": 1174, + "max": 1174, + "count": 1, + "mean": 1174, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ad1eb26-342b-4429-adaf-99e1192722ee": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8628dea-494f-46ae-90ff-ba2501ea2ad6": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89f12ace-84a8-45fa-a076-9e60fe82f033": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afa6fcd5-fc1e-47b9-83bc-f5134de92e0e": { + "min": 1081, + "max": 1081, + "count": 1, + "mean": 1081, + "p50": 1085.9, + "median": 1085.9, + "p75": 1085.9, + "p90": 1085.9, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + } + } + }, + { + "counters": { + "http.codes.200": 37, + "http.responses": 37, + "plugins.metrics-by-endpoint./v0/crawl/status/74e0b843-4010-421d-ab8d-c66f3fa5e528.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 18, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 19, + "http.requests": 39, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/0411aa06-d10f-4bb6-9206-64fa17457045.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4d5bb94e-dfed-495d-92e7-215e18a204e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/92cb3eaa-507a-44f7-b391-b8e9bd58118d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2fdb0fb-8f6b-495f-b4ac-da2265a0044a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/976cfdbe-fb57-4e7b-98fb-4ba508e5c895.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a427fef3-56a3-4818-8a94-952440f92191.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e286ee42-1a66-4827-9ad4-30019f660f74.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4aa5549c-94ce-4536-bc05-39f1a59815e5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d9463bca-e5d6-4930-b6f8-422a96b722dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eb7251b8-027b-4331-ab01-c16b8cd75fd4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c84e0584-92a3-4523-accd-872ef462ef05.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/00fb43d4-7237-4386-950e-ba9b22418a3f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d67661d8-a23f-4010-bed4-4e4faa3c0733.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/263675af-328b-4fc9-bf1d-54a9d319e05a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4f2f3ef8-db85-4b7c-8932-a57d46afc0f4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0afe871-9905-4694-a09f-fdeda1797b9d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9393c8bf-9884-4b40-a249-3c6ab9fd27d2.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485830060, + "firstHistogramAt": 1716485830060, + "lastCounterAt": 1716485839879, + "lastHistogramAt": 1716485838820, + "firstMetricAt": 1716485830060, + "lastMetricAt": 1716485839879, + "period": "1716485830000", + "summaries": { + "http.response_time": { + "min": 759, + "max": 1412, + "count": 37, + "mean": 882.1, + "p50": 854.2, + "median": 854.2, + "p75": 907, + "p90": 1002.4, + "p95": 1130.2, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74e0b843-4010-421d-ab8d-c66f3fa5e528": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "vusers.session_length": { + "min": 11678.8, + "max": 12578.8, + "count": 18, + "mean": 11903.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 759, + "max": 1142, + "count": 19, + "mean": 890.9, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1002.4, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0411aa06-d10f-4bb6-9206-64fa17457045": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d5bb94e-dfed-495d-92e7-215e18a204e3": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92cb3eaa-507a-44f7-b391-b8e9bd58118d": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2fdb0fb-8f6b-495f-b4ac-da2265a0044a": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/976cfdbe-fb57-4e7b-98fb-4ba508e5c895": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a427fef3-56a3-4818-8a94-952440f92191": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e286ee42-1a66-4827-9ad4-30019f660f74": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4aa5549c-94ce-4536-bc05-39f1a59815e5": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9463bca-e5d6-4930-b6f8-422a96b722dd": { + "min": 922, + "max": 922, + "count": 1, + "mean": 922, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb7251b8-027b-4331-ab01-c16b8cd75fd4": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c84e0584-92a3-4523-accd-872ef462ef05": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00fb43d4-7237-4386-950e-ba9b22418a3f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d67661d8-a23f-4010-bed4-4e4faa3c0733": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/263675af-328b-4fc9-bf1d-54a9d319e05a": { + "min": 1412, + "max": 1412, + "count": 1, + "mean": 1412, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2f3ef8-db85-4b7c-8932-a57d46afc0f4": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0afe871-9905-4694-a09f-fdeda1797b9d": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9393c8bf-9884-4b40-a249-3c6ab9fd27d2": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 759, + "max": 1412, + "count": 37, + "mean": 882.1, + "p50": 854.2, + "median": 854.2, + "p75": 907, + "p90": 1002.4, + "p95": 1130.2, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74e0b843-4010-421d-ab8d-c66f3fa5e528": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "vusers.session_length": { + "min": 11678.8, + "max": 12578.8, + "count": 18, + "mean": 11903.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 759, + "max": 1142, + "count": 19, + "mean": 890.9, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1002.4, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0411aa06-d10f-4bb6-9206-64fa17457045": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d5bb94e-dfed-495d-92e7-215e18a204e3": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/92cb3eaa-507a-44f7-b391-b8e9bd58118d": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2fdb0fb-8f6b-495f-b4ac-da2265a0044a": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/976cfdbe-fb57-4e7b-98fb-4ba508e5c895": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a427fef3-56a3-4818-8a94-952440f92191": { + "min": 902, + "max": 902, + "count": 1, + "mean": 902, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e286ee42-1a66-4827-9ad4-30019f660f74": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4aa5549c-94ce-4536-bc05-39f1a59815e5": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9463bca-e5d6-4930-b6f8-422a96b722dd": { + "min": 922, + "max": 922, + "count": 1, + "mean": 922, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb7251b8-027b-4331-ab01-c16b8cd75fd4": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c84e0584-92a3-4523-accd-872ef462ef05": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00fb43d4-7237-4386-950e-ba9b22418a3f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d67661d8-a23f-4010-bed4-4e4faa3c0733": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/263675af-328b-4fc9-bf1d-54a9d319e05a": { + "min": 1412, + "max": 1412, + "count": 1, + "mean": 1412, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2f3ef8-db85-4b7c-8932-a57d46afc0f4": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0afe871-9905-4694-a09f-fdeda1797b9d": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9393c8bf-9884-4b40-a249-3c6ab9fd27d2": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 42, + "http.responses": 42, + "plugins.metrics-by-endpoint./v0/crawl/status/1fc862dc-c906-414c-aabe-227c13c10683.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 20, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 22, + "plugins.metrics-by-endpoint./v0/crawl/status/727af3be-e931-463b-a49b-53d099cc691e.codes.200": 1, + "http.requests": 39, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/0a2b3210-fff8-453b-aaad-a7524eedcc6d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27567d6f-4146-420a-ab41-bb2127572992.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9853fa48-cbee-46e0-97bb-8641591a7801.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03bfa9e5-f456-4f45-9808-2a275e7fffb9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a7a89eb-ebbb-4861-a1de-2a5623a6660d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1c460bba-f6d5-45a3-b558-8b0b823f8106.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2fa08502-a4f3-46dc-a2f1-09bca8c4dd08.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/96418975-3b09-484e-97b7-edb6029ad909.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/be9f9150-1e25-4ff6-91fb-19171d202024.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d6eee342-4250-4abb-98ad-61d5c7d17723.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d02af79-f43f-4180-9761-243cabe42751.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/729ae9d2-948a-4c24-a4bc-01008fa6f815.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/29177f39-e811-4188-96c1-4e6f86d42b50.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/abc104bc-945a-401c-b59d-153d56f9270b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c50ecfd-e6f0-4d1e-afd4-4815088e9478.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c5d5b006-c1b5-46de-9db5-fa527139888f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bda7950e-933b-4be7-a4c5-54177638c717.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/743babbc-b494-4797-b4c4-d21faaaacb4d.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485840055, + "firstHistogramAt": 1716485840055, + "lastCounterAt": 1716485849880, + "lastHistogramAt": 1716485849837, + "firstMetricAt": 1716485840055, + "lastMetricAt": 1716485849880, + "period": "1716485840000", + "summaries": { + "http.response_time": { + "min": 749, + "max": 1148, + "count": 42, + "mean": 900.3, + "p50": 871.5, + "median": 871.5, + "p75": 925.4, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fc862dc-c906-414c-aabe-227c13c10683": { + "min": 1133, + "max": 1133, + "count": 1, + "mean": 1133, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "vusers.session_length": { + "min": 11696.1, + "max": 12233.4, + "count": 20, + "mean": 11922.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 749, + "max": 1144, + "count": 22, + "mean": 898.5, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/727af3be-e931-463b-a49b-53d099cc691e": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a2b3210-fff8-453b-aaad-a7524eedcc6d": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27567d6f-4146-420a-ab41-bb2127572992": { + "min": 916, + "max": 916, + "count": 1, + "mean": 916, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9853fa48-cbee-46e0-97bb-8641591a7801": { + "min": 1040, + "max": 1040, + "count": 1, + "mean": 1040, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03bfa9e5-f456-4f45-9808-2a275e7fffb9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a7a89eb-ebbb-4861-a1de-2a5623a6660d": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1c460bba-f6d5-45a3-b558-8b0b823f8106": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fa08502-a4f3-46dc-a2f1-09bca8c4dd08": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96418975-3b09-484e-97b7-edb6029ad909": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be9f9150-1e25-4ff6-91fb-19171d202024": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6eee342-4250-4abb-98ad-61d5c7d17723": { + "min": 865, + "max": 865, + "count": 1, + "mean": 865, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d02af79-f43f-4180-9761-243cabe42751": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/729ae9d2-948a-4c24-a4bc-01008fa6f815": { + "min": 915, + "max": 915, + "count": 1, + "mean": 915, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29177f39-e811-4188-96c1-4e6f86d42b50": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/abc104bc-945a-401c-b59d-153d56f9270b": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c50ecfd-e6f0-4d1e-afd4-4815088e9478": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5d5b006-c1b5-46de-9db5-fa527139888f": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bda7950e-933b-4be7-a4c5-54177638c717": { + "min": 925, + "max": 925, + "count": 1, + "mean": 925, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/743babbc-b494-4797-b4c4-d21faaaacb4d": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 749, + "max": 1148, + "count": 42, + "mean": 900.3, + "p50": 871.5, + "median": 871.5, + "p75": 925.4, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fc862dc-c906-414c-aabe-227c13c10683": { + "min": 1133, + "max": 1133, + "count": 1, + "mean": 1133, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "vusers.session_length": { + "min": 11696.1, + "max": 12233.4, + "count": 20, + "mean": 11922.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 749, + "max": 1144, + "count": 22, + "mean": 898.5, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/727af3be-e931-463b-a49b-53d099cc691e": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a2b3210-fff8-453b-aaad-a7524eedcc6d": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27567d6f-4146-420a-ab41-bb2127572992": { + "min": 916, + "max": 916, + "count": 1, + "mean": 916, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9853fa48-cbee-46e0-97bb-8641591a7801": { + "min": 1040, + "max": 1040, + "count": 1, + "mean": 1040, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03bfa9e5-f456-4f45-9808-2a275e7fffb9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a7a89eb-ebbb-4861-a1de-2a5623a6660d": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1c460bba-f6d5-45a3-b558-8b0b823f8106": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fa08502-a4f3-46dc-a2f1-09bca8c4dd08": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96418975-3b09-484e-97b7-edb6029ad909": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be9f9150-1e25-4ff6-91fb-19171d202024": { + "min": 1148, + "max": 1148, + "count": 1, + "mean": 1148, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d6eee342-4250-4abb-98ad-61d5c7d17723": { + "min": 865, + "max": 865, + "count": 1, + "mean": 865, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d02af79-f43f-4180-9761-243cabe42751": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/729ae9d2-948a-4c24-a4bc-01008fa6f815": { + "min": 915, + "max": 915, + "count": 1, + "mean": 915, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29177f39-e811-4188-96c1-4e6f86d42b50": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/abc104bc-945a-401c-b59d-153d56f9270b": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c50ecfd-e6f0-4d1e-afd4-4815088e9478": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c5d5b006-c1b5-46de-9db5-fa527139888f": { + "min": 1137, + "max": 1137, + "count": 1, + "mean": 1137, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bda7950e-933b-4be7-a4c5-54177638c717": { + "min": 925, + "max": 925, + "count": 1, + "mean": 925, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/743babbc-b494-4797-b4c4-d21faaaacb4d": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 42, + "http.responses": 42, + "plugins.metrics-by-endpoint./v0/crawl/status/d0cacf7c-86c4-47e1-bb4e-67eaf38aaafd.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 22, + "http.requests": 42, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 20, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/e6996037-7199-4188-b2d7-aafb17a06cd8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/aacda5fe-e227-46dd-bc24-e71da30295ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/50ac6c69-b81a-425a-b0be-3c4ba11a3158.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/128f3c05-3d9b-419b-aa3d-864cad012024.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b53b3ef5-f0d6-4dd2-aeb0-9d3fc70bc050.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eac691aa-0633-4be6-9c7c-ca3a00d06fe8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a492fb56-e185-4179-bb30-07bf49b90d49.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d79ae022-1099-46c9-bd86-c8c4557868ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bee9904d-b4f4-4e10-bdcd-20b01d2c2f89.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9f5d7b00-2a03-4211-a116-5de5b380d889.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/792b38ba-20f4-4f98-88c3-d74a1f9194de.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bf8a87a7-e622-4246-b841-caed1cbc9153.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d2f10e29-35d5-48ba-a8fa-a4bcdfe94b26.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/efa0adc8-1057-4b76-80f8-e360af5fa504.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bcbcdccb-ee49-4700-97b3-e61d6e8b6bd9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fdbf2a42-5df4-4727-b410-f357b23275f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49c45d12-721a-4c5b-b8fb-9a5fc58b5620.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e1bb35d5-b264-4026-80c0-9588cc25bf47.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/414f93c9-007e-4097-b16a-6224bd13bd0e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6f9aaba2-18e0-47b2-b5dc-93fe835205ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0b64dfa-e48c-464a-983d-bd1306d21821.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485850008, + "firstHistogramAt": 1716485850008, + "lastCounterAt": 1716485859880, + "lastHistogramAt": 1716485859844, + "firstMetricAt": 1716485850008, + "lastMetricAt": 1716485859880, + "period": "1716485850000", + "summaries": { + "http.response_time": { + "min": 748, + "max": 1712, + "count": 42, + "mean": 905.9, + "p50": 837.3, + "median": 837.3, + "p75": 907, + "p90": 1043.3, + "p95": 1130.2, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0cacf7c-86c4-47e1-bb4e-67eaf38aaafd": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "vusers.session_length": { + "min": 11687.7, + "max": 12652.6, + "count": 22, + "mean": 11947.3, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 748, + "max": 1378, + "count": 20, + "mean": 896.4, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 944, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6996037-7199-4188-b2d7-aafb17a06cd8": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aacda5fe-e227-46dd-bc24-e71da30295ed": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50ac6c69-b81a-425a-b0be-3c4ba11a3158": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/128f3c05-3d9b-419b-aa3d-864cad012024": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b53b3ef5-f0d6-4dd2-aeb0-9d3fc70bc050": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eac691aa-0633-4be6-9c7c-ca3a00d06fe8": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a492fb56-e185-4179-bb30-07bf49b90d49": { + "min": 1712, + "max": 1712, + "count": 1, + "mean": 1712, + "p50": 1720.2, + "median": 1720.2, + "p75": 1720.2, + "p90": 1720.2, + "p95": 1720.2, + "p99": 1720.2, + "p999": 1720.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d79ae022-1099-46c9-bd86-c8c4557868ae": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bee9904d-b4f4-4e10-bdcd-20b01d2c2f89": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f5d7b00-2a03-4211-a116-5de5b380d889": { + "min": 914, + "max": 914, + "count": 1, + "mean": 914, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/792b38ba-20f4-4f98-88c3-d74a1f9194de": { + "min": 1125, + "max": 1125, + "count": 1, + "mean": 1125, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bf8a87a7-e622-4246-b841-caed1cbc9153": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d2f10e29-35d5-48ba-a8fa-a4bcdfe94b26": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efa0adc8-1057-4b76-80f8-e360af5fa504": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bcbcdccb-ee49-4700-97b3-e61d6e8b6bd9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdbf2a42-5df4-4727-b410-f357b23275f9": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c45d12-721a-4c5b-b8fb-9a5fc58b5620": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1bb35d5-b264-4026-80c0-9588cc25bf47": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/414f93c9-007e-4097-b16a-6224bd13bd0e": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f9aaba2-18e0-47b2-b5dc-93fe835205ea": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0b64dfa-e48c-464a-983d-bd1306d21821": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + }, + "histograms": { + "http.response_time": { + "min": 748, + "max": 1712, + "count": 42, + "mean": 905.9, + "p50": 837.3, + "median": 837.3, + "p75": 907, + "p90": 1043.3, + "p95": 1130.2, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0cacf7c-86c4-47e1-bb4e-67eaf38aaafd": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "vusers.session_length": { + "min": 11687.7, + "max": 12652.6, + "count": 22, + "mean": 11947.3, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 748, + "max": 1378, + "count": 20, + "mean": 896.4, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 944, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6996037-7199-4188-b2d7-aafb17a06cd8": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aacda5fe-e227-46dd-bc24-e71da30295ed": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50ac6c69-b81a-425a-b0be-3c4ba11a3158": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/128f3c05-3d9b-419b-aa3d-864cad012024": { + "min": 893, + "max": 893, + "count": 1, + "mean": 893, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b53b3ef5-f0d6-4dd2-aeb0-9d3fc70bc050": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eac691aa-0633-4be6-9c7c-ca3a00d06fe8": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a492fb56-e185-4179-bb30-07bf49b90d49": { + "min": 1712, + "max": 1712, + "count": 1, + "mean": 1712, + "p50": 1720.2, + "median": 1720.2, + "p75": 1720.2, + "p90": 1720.2, + "p95": 1720.2, + "p99": 1720.2, + "p999": 1720.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d79ae022-1099-46c9-bd86-c8c4557868ae": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bee9904d-b4f4-4e10-bdcd-20b01d2c2f89": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f5d7b00-2a03-4211-a116-5de5b380d889": { + "min": 914, + "max": 914, + "count": 1, + "mean": 914, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/792b38ba-20f4-4f98-88c3-d74a1f9194de": { + "min": 1125, + "max": 1125, + "count": 1, + "mean": 1125, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bf8a87a7-e622-4246-b841-caed1cbc9153": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d2f10e29-35d5-48ba-a8fa-a4bcdfe94b26": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efa0adc8-1057-4b76-80f8-e360af5fa504": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bcbcdccb-ee49-4700-97b3-e61d6e8b6bd9": { + "min": 910, + "max": 910, + "count": 1, + "mean": 910, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdbf2a42-5df4-4727-b410-f357b23275f9": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49c45d12-721a-4c5b-b8fb-9a5fc58b5620": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1bb35d5-b264-4026-80c0-9588cc25bf47": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/414f93c9-007e-4097-b16a-6224bd13bd0e": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f9aaba2-18e0-47b2-b5dc-93fe835205ea": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0b64dfa-e48c-464a-983d-bd1306d21821": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + } + }, + { + "counters": { + "http.codes.200": 39, + "http.responses": 39, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 19, + "http.requests": 40, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/7224ba15-8eb4-4844-923e-b138d0a24ebf.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/bc3b2e81-1d90-4561-938f-a1979ca921f8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1b2bfc13-27d9-412e-a654-594f89a97f42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e8839d0b-2d3c-4e53-ab73-9e6a7e1bab66.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/60fd0d42-6d1f-4e95-8134-ba3fd0b052e2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ddc149d9-295a-4ef6-83a7-c75df08de209.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c660f5f-d0eb-470d-9cc3-08eacbbf6072.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0849f003-6974-4e61-ab26-8b1ff0c0c17e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/37069c9e-1e19-4695-b876-a1b570c2b8e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ccfc9158-c082-455a-80f5-ee1683d8f1df.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/af2bb29c-47d8-4433-a41f-d72a8aedd8e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/86cfe7d4-2181-4df1-9cb7-878db8aeebe2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/74ad21fb-8639-42b0-8aaa-efd25c76b4c1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eb122faa-845d-4c64-8006-1ed54cbcc112.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9decc5c1-28cd-4396-8c6f-9061a9d68a70.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4cc685d-2504-4b20-89c8-e4c9f8169425.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/48fd1a36-aa96-4fc7-bfda-697ab25a775e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/400fae57-adef-472b-8cb6-978007bdb024.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2f536449-f9b2-446d-b0a5-12d36fbd4f2f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/628eba56-0c6a-4222-b29c-60961941fa4c.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485860701, + "firstHistogramAt": 1716485860701, + "lastCounterAt": 1716485869880, + "lastHistogramAt": 1716485869648, + "firstMetricAt": 1716485860701, + "lastMetricAt": 1716485869880, + "period": "1716485860000", + "summaries": { + "http.response_time": { + "min": 760, + "max": 1345, + "count": 39, + "mean": 899.6, + "p50": 854.2, + "median": 854.2, + "p75": 925.4, + "p90": 1085.9, + "p95": 1153.1, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 760, + "max": 1188, + "count": 19, + "mean": 900.8, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1022.7, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7224ba15-8eb4-4844-923e-b138d0a24ebf": { + "min": 1345, + "max": 1345, + "count": 1, + "mean": 1345, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "vusers.session_length": { + "min": 11691.3, + "max": 12446.4, + "count": 20, + "mean": 11926.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12459.8, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc3b2e81-1d90-4561-938f-a1979ca921f8": { + "min": 924, + "max": 924, + "count": 1, + "mean": 924, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b2bfc13-27d9-412e-a654-594f89a97f42": { + "min": 875, + "max": 875, + "count": 1, + "mean": 875, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8839d0b-2d3c-4e53-ab73-9e6a7e1bab66": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60fd0d42-6d1f-4e95-8134-ba3fd0b052e2": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ddc149d9-295a-4ef6-83a7-c75df08de209": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c660f5f-d0eb-470d-9cc3-08eacbbf6072": { + "min": 1143, + "max": 1143, + "count": 1, + "mean": 1143, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0849f003-6974-4e61-ab26-8b1ff0c0c17e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37069c9e-1e19-4695-b876-a1b570c2b8e3": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ccfc9158-c082-455a-80f5-ee1683d8f1df": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/af2bb29c-47d8-4433-a41f-d72a8aedd8e6": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86cfe7d4-2181-4df1-9cb7-878db8aeebe2": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74ad21fb-8639-42b0-8aaa-efd25c76b4c1": { + "min": 861, + "max": 861, + "count": 1, + "mean": 861, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb122faa-845d-4c64-8006-1ed54cbcc112": { + "min": 933, + "max": 933, + "count": 1, + "mean": 933, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9decc5c1-28cd-4396-8c6f-9061a9d68a70": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4cc685d-2504-4b20-89c8-e4c9f8169425": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48fd1a36-aa96-4fc7-bfda-697ab25a775e": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/400fae57-adef-472b-8cb6-978007bdb024": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f536449-f9b2-446d-b0a5-12d36fbd4f2f": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/628eba56-0c6a-4222-b29c-60961941fa4c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 760, + "max": 1345, + "count": 39, + "mean": 899.6, + "p50": 854.2, + "median": 854.2, + "p75": 925.4, + "p90": 1085.9, + "p95": 1153.1, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 760, + "max": 1188, + "count": 19, + "mean": 900.8, + "p50": 871.5, + "median": 871.5, + "p75": 907, + "p90": 1022.7, + "p95": 1085.9, + "p99": 1085.9, + "p999": 1085.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7224ba15-8eb4-4844-923e-b138d0a24ebf": { + "min": 1345, + "max": 1345, + "count": 1, + "mean": 1345, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "vusers.session_length": { + "min": 11691.3, + "max": 12446.4, + "count": 20, + "mean": 11926.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12459.8, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc3b2e81-1d90-4561-938f-a1979ca921f8": { + "min": 924, + "max": 924, + "count": 1, + "mean": 924, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b2bfc13-27d9-412e-a654-594f89a97f42": { + "min": 875, + "max": 875, + "count": 1, + "mean": 875, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8839d0b-2d3c-4e53-ab73-9e6a7e1bab66": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60fd0d42-6d1f-4e95-8134-ba3fd0b052e2": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ddc149d9-295a-4ef6-83a7-c75df08de209": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c660f5f-d0eb-470d-9cc3-08eacbbf6072": { + "min": 1143, + "max": 1143, + "count": 1, + "mean": 1143, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0849f003-6974-4e61-ab26-8b1ff0c0c17e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37069c9e-1e19-4695-b876-a1b570c2b8e3": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ccfc9158-c082-455a-80f5-ee1683d8f1df": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/af2bb29c-47d8-4433-a41f-d72a8aedd8e6": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86cfe7d4-2181-4df1-9cb7-878db8aeebe2": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/74ad21fb-8639-42b0-8aaa-efd25c76b4c1": { + "min": 861, + "max": 861, + "count": 1, + "mean": 861, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb122faa-845d-4c64-8006-1ed54cbcc112": { + "min": 933, + "max": 933, + "count": 1, + "mean": 933, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9decc5c1-28cd-4396-8c6f-9061a9d68a70": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4cc685d-2504-4b20-89c8-e4c9f8169425": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48fd1a36-aa96-4fc7-bfda-697ab25a775e": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/400fae57-adef-472b-8cb6-978007bdb024": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f536449-f9b2-446d-b0a5-12d36fbd4f2f": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/628eba56-0c6a-4222-b29c-60961941fa4c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.requests": 39, + "http.codes.200": 41, + "http.responses": 41, + "plugins.metrics-by-endpoint./v0/crawl/status/76f93deb-e969-412f-8385-e52334e0be4f.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 20, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 21, + "plugins.metrics-by-endpoint./v0/crawl/status/985f6465-fbd8-489f-bb2b-23300491c356.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3950da1d-c3c7-465d-a3cd-9f0f1b3243c9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/481a8225-cca2-45e9-882d-4b8425d5a16e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6cfae259-caf5-4b03-a87e-4067bf459236.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9ef69927-0fbf-42ef-b97d-7e74b335efd4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8c1ec687-b077-4891-be81-37232837adf2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38ab8dd1-b378-40bb-8ff6-e5a81eaa166f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dcd3b65f-8f8d-437f-a079-8610fe55da61.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc162d42-a5ac-4aa4-a902-5bf2c20eca87.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8fee3a31-d4f2-4188-8622-68cb3899c9ce.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bad3d923-cdc0-437c-bc61-9d034e957340.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f72e39f8-79bf-4b4a-9ed3-b80c141da770.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/170e996f-22e6-43a5-8c6c-85416bbb1516.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/86ad59e3-fca9-4bc2-9f74-daec55e9cdae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/67424e01-514d-4ed6-9e22-f92bb33b867e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0142016d-7bd5-4e41-aa51-212eb52938ec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8c6aa61b-08f3-47f8-bc93-d32ec3826f7d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a169ada-55ae-4fe7-801b-b5406b1c2902.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d391aaca-9573-4a4d-8763-f716535fbcd0.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485870066, + "firstHistogramAt": 1716485870066, + "lastCounterAt": 1716485879879, + "lastHistogramAt": 1716485879725, + "firstMetricAt": 1716485870066, + "lastMetricAt": 1716485879879, + "period": "1716485870000", + "summaries": { + "http.response_time": { + "min": 738, + "max": 1144, + "count": 41, + "mean": 895.7, + "p50": 871.5, + "median": 871.5, + "p75": 1022.7, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/76f93deb-e969-412f-8385-e52334e0be4f": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11699.2, + "max": 12257.5, + "count": 20, + "mean": 11947.9, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 738, + "max": 1124, + "count": 21, + "mean": 880.6, + "p50": 871.5, + "median": 871.5, + "p75": 889.1, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/985f6465-fbd8-489f-bb2b-23300491c356": { + "min": 901, + "max": 901, + "count": 1, + "mean": 901, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3950da1d-c3c7-465d-a3cd-9f0f1b3243c9": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/481a8225-cca2-45e9-882d-4b8425d5a16e": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cfae259-caf5-4b03-a87e-4067bf459236": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9ef69927-0fbf-42ef-b97d-7e74b335efd4": { + "min": 844, + "max": 844, + "count": 1, + "mean": 844, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c1ec687-b077-4891-be81-37232837adf2": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38ab8dd1-b378-40bb-8ff6-e5a81eaa166f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dcd3b65f-8f8d-437f-a079-8610fe55da61": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc162d42-a5ac-4aa4-a902-5bf2c20eca87": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8fee3a31-d4f2-4188-8622-68cb3899c9ce": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bad3d923-cdc0-437c-bc61-9d034e957340": { + "min": 908, + "max": 908, + "count": 1, + "mean": 908, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f72e39f8-79bf-4b4a-9ed3-b80c141da770": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/170e996f-22e6-43a5-8c6c-85416bbb1516": { + "min": 1144, + "max": 1144, + "count": 1, + "mean": 1144, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86ad59e3-fca9-4bc2-9f74-daec55e9cdae": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67424e01-514d-4ed6-9e22-f92bb33b867e": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0142016d-7bd5-4e41-aa51-212eb52938ec": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c6aa61b-08f3-47f8-bc93-d32ec3826f7d": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a169ada-55ae-4fe7-801b-b5406b1c2902": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d391aaca-9573-4a4d-8763-f716535fbcd0": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 738, + "max": 1144, + "count": 41, + "mean": 895.7, + "p50": 871.5, + "median": 871.5, + "p75": 1022.7, + "p90": 1107.9, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/76f93deb-e969-412f-8385-e52334e0be4f": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11699.2, + "max": 12257.5, + "count": 20, + "mean": 11947.9, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 738, + "max": 1124, + "count": 21, + "mean": 880.6, + "p50": 871.5, + "median": 871.5, + "p75": 889.1, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/985f6465-fbd8-489f-bb2b-23300491c356": { + "min": 901, + "max": 901, + "count": 1, + "mean": 901, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3950da1d-c3c7-465d-a3cd-9f0f1b3243c9": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/481a8225-cca2-45e9-882d-4b8425d5a16e": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cfae259-caf5-4b03-a87e-4067bf459236": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9ef69927-0fbf-42ef-b97d-7e74b335efd4": { + "min": 844, + "max": 844, + "count": 1, + "mean": 844, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c1ec687-b077-4891-be81-37232837adf2": { + "min": 1131, + "max": 1131, + "count": 1, + "mean": 1131, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38ab8dd1-b378-40bb-8ff6-e5a81eaa166f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dcd3b65f-8f8d-437f-a079-8610fe55da61": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc162d42-a5ac-4aa4-a902-5bf2c20eca87": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8fee3a31-d4f2-4188-8622-68cb3899c9ce": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bad3d923-cdc0-437c-bc61-9d034e957340": { + "min": 908, + "max": 908, + "count": 1, + "mean": 908, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f72e39f8-79bf-4b4a-9ed3-b80c141da770": { + "min": 845, + "max": 845, + "count": 1, + "mean": 845, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/170e996f-22e6-43a5-8c6c-85416bbb1516": { + "min": 1144, + "max": 1144, + "count": 1, + "mean": 1144, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/86ad59e3-fca9-4bc2-9f74-daec55e9cdae": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67424e01-514d-4ed6-9e22-f92bb33b867e": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0142016d-7bd5-4e41-aa51-212eb52938ec": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c6aa61b-08f3-47f8-bc93-d32ec3826f7d": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a169ada-55ae-4fe7-801b-b5406b1c2902": { + "min": 1028, + "max": 1028, + "count": 1, + "mean": 1028, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d391aaca-9573-4a4d-8763-f716535fbcd0": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 38, + "http.responses": 38, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 19, + "vusers.created_by_name.Crawl a URL": 20, + "vusers.created": 20, + "http.requests": 41, + "plugins.metrics-by-endpoint./v0/crawl/status/e9baa3bd-cc95-4254-93c4-17bba92e5abc.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 19, + "plugins.metrics-by-endpoint./v0/crawl/status/fd88b063-75d7-47a4-923b-ed77ce0a4406.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/904df43f-5367-487a-b06c-a66d0e49b8ef.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f1bfa005-0774-4553-9899-a7a3dbd73cee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/136a0f66-f9da-4a52-b349-138542778fec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28eb272a-2a7b-4486-bbc6-953e082a25a5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2e56ae9a-3ed8-42c4-8a86-2a0dedc66cad.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/178b3d7d-2da1-4d15-9e57-8e02c37bfc16.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4787d666-f657-4507-9c07-dee61f8112fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/79c03e84-002d-4718-98b4-5bf816eee983.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fd5601f-ad20-4248-9aed-dde728eff05a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b36a38f1-f90a-47fc-ae3a-5a98cd7ab776.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3e6d3732-d9bd-421c-9bb8-b0f399aaad8c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c08070d-5bf3-4400-8076-623370cd6414.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ce7847c1-c87c-43c7-ae38-5fe7f99a66b8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8383a033-0177-40b4-b465-6a76b8366b42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b2bb0d3-21e2-446a-bdb6-81428d0deb8f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f842e9db-166e-4075-8056-90657e6ee4a3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d7e25622-0e38-4c3e-ac02-180db547c3a8.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716485880073, + "firstHistogramAt": 1716485880676, + "lastCounterAt": 1716485889881, + "lastHistogramAt": 1716485889733, + "firstMetricAt": 1716485880073, + "lastMetricAt": 1716485889881, + "period": "1716485880000", + "summaries": { + "http.response_time": { + "min": 744, + "max": 1425, + "count": 38, + "mean": 872.2, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1249.1, + "p999": 1249.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 744, + "max": 1249, + "count": 19, + "mean": 848.8, + "p50": 820.7, + "median": 820.7, + "p75": 871.5, + "p90": 907, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9baa3bd-cc95-4254-93c4-17bba92e5abc": { + "min": 1425, + "max": 1425, + "count": 1, + "mean": 1425, + "p50": 1436.8, + "median": 1436.8, + "p75": 1436.8, + "p90": 1436.8, + "p95": 1436.8, + "p99": 1436.8, + "p999": 1436.8 + }, + "vusers.session_length": { + "min": 11667.9, + "max": 12314.2, + "count": 19, + "mean": 11900.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd88b063-75d7-47a4-923b-ed77ce0a4406": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/904df43f-5367-487a-b06c-a66d0e49b8ef": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f1bfa005-0774-4553-9899-a7a3dbd73cee": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/136a0f66-f9da-4a52-b349-138542778fec": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28eb272a-2a7b-4486-bbc6-953e082a25a5": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e56ae9a-3ed8-42c4-8a86-2a0dedc66cad": { + "min": 1051, + "max": 1051, + "count": 1, + "mean": 1051, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/178b3d7d-2da1-4d15-9e57-8e02c37bfc16": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4787d666-f657-4507-9c07-dee61f8112fc": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c03e84-002d-4718-98b4-5bf816eee983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fd5601f-ad20-4248-9aed-dde728eff05a": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b36a38f1-f90a-47fc-ae3a-5a98cd7ab776": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e6d3732-d9bd-421c-9bb8-b0f399aaad8c": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c08070d-5bf3-4400-8076-623370cd6414": { + "min": 895, + "max": 895, + "count": 1, + "mean": 895, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce7847c1-c87c-43c7-ae38-5fe7f99a66b8": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8383a033-0177-40b4-b465-6a76b8366b42": { + "min": 1021, + "max": 1021, + "count": 1, + "mean": 1021, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b2bb0d3-21e2-446a-bdb6-81428d0deb8f": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f842e9db-166e-4075-8056-90657e6ee4a3": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7e25622-0e38-4c3e-ac02-180db547c3a8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 744, + "max": 1425, + "count": 38, + "mean": 872.2, + "p50": 804.5, + "median": 804.5, + "p75": 889.1, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1249.1, + "p999": 1249.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 744, + "max": 1249, + "count": 19, + "mean": 848.8, + "p50": 820.7, + "median": 820.7, + "p75": 871.5, + "p90": 907, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9baa3bd-cc95-4254-93c4-17bba92e5abc": { + "min": 1425, + "max": 1425, + "count": 1, + "mean": 1425, + "p50": 1436.8, + "median": 1436.8, + "p75": 1436.8, + "p90": 1436.8, + "p95": 1436.8, + "p99": 1436.8, + "p999": 1436.8 + }, + "vusers.session_length": { + "min": 11667.9, + "max": 12314.2, + "count": 19, + "mean": 11900.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd88b063-75d7-47a4-923b-ed77ce0a4406": { + "min": 880, + "max": 880, + "count": 1, + "mean": 880, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/904df43f-5367-487a-b06c-a66d0e49b8ef": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f1bfa005-0774-4553-9899-a7a3dbd73cee": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/136a0f66-f9da-4a52-b349-138542778fec": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28eb272a-2a7b-4486-bbc6-953e082a25a5": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e56ae9a-3ed8-42c4-8a86-2a0dedc66cad": { + "min": 1051, + "max": 1051, + "count": 1, + "mean": 1051, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/178b3d7d-2da1-4d15-9e57-8e02c37bfc16": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4787d666-f657-4507-9c07-dee61f8112fc": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79c03e84-002d-4718-98b4-5bf816eee983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fd5601f-ad20-4248-9aed-dde728eff05a": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b36a38f1-f90a-47fc-ae3a-5a98cd7ab776": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e6d3732-d9bd-421c-9bb8-b0f399aaad8c": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c08070d-5bf3-4400-8076-623370cd6414": { + "min": 895, + "max": 895, + "count": 1, + "mean": 895, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce7847c1-c87c-43c7-ae38-5fe7f99a66b8": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8383a033-0177-40b4-b465-6a76b8366b42": { + "min": 1021, + "max": 1021, + "count": 1, + "mean": 1021, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b2bb0d3-21e2-446a-bdb6-81428d0deb8f": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f842e9db-166e-4075-8056-90657e6ee4a3": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7e25622-0e38-4c3e-ac02-180db547c3a8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 47, + "http.responses": 47, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 26, + "plugins.metrics-by-endpoint./v0/crawl/status/15394ece-5026-4117-a8ab-3f956da812f9.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 21, + "http.requests": 45, + "vusers.created_by_name.Crawl a URL": 26, + "vusers.created": 26, + "plugins.metrics-by-endpoint./v0/crawl/status/afb21a06-305d-4a4b-b228-126fd28ae181.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3c7f56d0-8391-452a-80fd-7c049f414745.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e060ed76-1cbb-469a-ad98-20abf5209574.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4797358c-6a40-41b9-b6cf-d71bc13964ca.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bca9cfac-818f-4485-868a-aec4b539f7f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f7917e4-f0a5-49e2-9ce7-ee4e03969681.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1bf3513f-cf4a-4d15-91b7-2b9170686157.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57b586e0-471e-45c5-85e4-9553e1e565f9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/752b7396-0cdd-48ac-acb8-caed58e3582b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ad402980-a0dc-408f-88a0-e51c34417f80.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/40d623e2-ba09-41ca-9863-2fa2c3021fa0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9f77711-eadd-44fc-8d25-596623b8d4ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27500d18-8a4e-43f3-8531-a8eb348568f7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/94f035f3-0d2c-4494-ac8e-04f7977cccb6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/707b84fb-3431-4c77-bff3-066153545139.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2ca59aeb-840e-4f00-b4c5-dddca362c929.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4be8bf88-277c-4be4-a0f1-196f5ad30168.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f70e5f83-7c63-420d-b686-7044b15a67c5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/561f9c50-fe1b-4b05-aedb-75fe6128a38d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b5dd17b8-0b65-4f5b-ad87-e3b2b04b7a05.codes.200": 1 + }, + "rates": { + "http.request_rate": 5 + }, + "firstCounterAt": 1716485890415, + "firstHistogramAt": 1716485890415, + "lastCounterAt": 1716485899935, + "lastHistogramAt": 1716485899917, + "firstMetricAt": 1716485890415, + "lastMetricAt": 1716485899935, + "period": "1716485890000", + "http.request_rate": null, + "summaries": { + "http.response_time": { + "min": 745, + "max": 1529, + "count": 47, + "mean": 890.1, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 745, + "max": 1529, + "count": 26, + "mean": 869.3, + "p50": 854.2, + "median": 854.2, + "p75": 889.1, + "p90": 907, + "p95": 925.4, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15394ece-5026-4117-a8ab-3f956da812f9": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11669, + "max": 12536.9, + "count": 21, + "mean": 11906.3, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12459.8, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afb21a06-305d-4a4b-b228-126fd28ae181": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c7f56d0-8391-452a-80fd-7c049f414745": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e060ed76-1cbb-469a-ad98-20abf5209574": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4797358c-6a40-41b9-b6cf-d71bc13964ca": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca9cfac-818f-4485-868a-aec4b539f7f5": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f7917e4-f0a5-49e2-9ce7-ee4e03969681": { + "min": 1402, + "max": 1402, + "count": 1, + "mean": 1402, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1bf3513f-cf4a-4d15-91b7-2b9170686157": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b586e0-471e-45c5-85e4-9553e1e565f9": { + "min": 873, + "max": 873, + "count": 1, + "mean": 873, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/752b7396-0cdd-48ac-acb8-caed58e3582b": { + "min": 1141, + "max": 1141, + "count": 1, + "mean": 1141, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad402980-a0dc-408f-88a0-e51c34417f80": { + "min": 1299, + "max": 1299, + "count": 1, + "mean": 1299, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40d623e2-ba09-41ca-9863-2fa2c3021fa0": { + "min": 903, + "max": 903, + "count": 1, + "mean": 903, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9f77711-eadd-44fc-8d25-596623b8d4ea": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27500d18-8a4e-43f3-8531-a8eb348568f7": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94f035f3-0d2c-4494-ac8e-04f7977cccb6": { + "min": 918, + "max": 918, + "count": 1, + "mean": 918, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/707b84fb-3431-4c77-bff3-066153545139": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2ca59aeb-840e-4f00-b4c5-dddca362c929": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4be8bf88-277c-4be4-a0f1-196f5ad30168": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f70e5f83-7c63-420d-b686-7044b15a67c5": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/561f9c50-fe1b-4b05-aedb-75fe6128a38d": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5dd17b8-0b65-4f5b-ad87-e3b2b04b7a05": { + "min": 1124, + "max": 1124, + "count": 1, + "mean": 1124, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + } + }, + "histograms": { + "http.response_time": { + "min": 745, + "max": 1529, + "count": 47, + "mean": 890.1, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 745, + "max": 1529, + "count": 26, + "mean": 869.3, + "p50": 854.2, + "median": 854.2, + "p75": 889.1, + "p90": 907, + "p95": 925.4, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15394ece-5026-4117-a8ab-3f956da812f9": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11669, + "max": 12536.9, + "count": 21, + "mean": 11906.3, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12459.8, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/afb21a06-305d-4a4b-b228-126fd28ae181": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c7f56d0-8391-452a-80fd-7c049f414745": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e060ed76-1cbb-469a-ad98-20abf5209574": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4797358c-6a40-41b9-b6cf-d71bc13964ca": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca9cfac-818f-4485-868a-aec4b539f7f5": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f7917e4-f0a5-49e2-9ce7-ee4e03969681": { + "min": 1402, + "max": 1402, + "count": 1, + "mean": 1402, + "p50": 1408.4, + "median": 1408.4, + "p75": 1408.4, + "p90": 1408.4, + "p95": 1408.4, + "p99": 1408.4, + "p999": 1408.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1bf3513f-cf4a-4d15-91b7-2b9170686157": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57b586e0-471e-45c5-85e4-9553e1e565f9": { + "min": 873, + "max": 873, + "count": 1, + "mean": 873, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/752b7396-0cdd-48ac-acb8-caed58e3582b": { + "min": 1141, + "max": 1141, + "count": 1, + "mean": 1141, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad402980-a0dc-408f-88a0-e51c34417f80": { + "min": 1299, + "max": 1299, + "count": 1, + "mean": 1299, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/40d623e2-ba09-41ca-9863-2fa2c3021fa0": { + "min": 903, + "max": 903, + "count": 1, + "mean": 903, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9f77711-eadd-44fc-8d25-596623b8d4ea": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27500d18-8a4e-43f3-8531-a8eb348568f7": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94f035f3-0d2c-4494-ac8e-04f7977cccb6": { + "min": 918, + "max": 918, + "count": 1, + "mean": 918, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/707b84fb-3431-4c77-bff3-066153545139": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2ca59aeb-840e-4f00-b4c5-dddca362c929": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4be8bf88-277c-4be4-a0f1-196f5ad30168": { + "min": 1129, + "max": 1129, + "count": 1, + "mean": 1129, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f70e5f83-7c63-420d-b686-7044b15a67c5": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/561f9c50-fe1b-4b05-aedb-75fe6128a38d": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5dd17b8-0b65-4f5b-ad87-e3b2b04b7a05": { + "min": 1124, + "max": 1124, + "count": 1, + "mean": 1124, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + } + } + }, + { + "counters": { + "http.requests": 56, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "http.codes.200": 54, + "http.responses": 54, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/375d620f-79e2-4b4e-9818-068746cf8d3a.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 24, + "plugins.metrics-by-endpoint./v0/crawl/status/8a548b75-ed32-4cb5-bd03-04a5c6d41f89.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d9a4ad65-f5e5-4fc5-8f46-2939a0199c6f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a7c6e41d-1dfd-43ae-98d3-c1104acbad5a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b48ea9bb-9868-4561-a55f-208fbf15492d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/37a233bc-3861-4749-8f81-8ebfb8a4f2b2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/510c6bad-4668-4bbc-8e25-8cc76ff42e28.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c5ba395-7289-4e26-b105-2a35cef4ce41.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/659ac4f1-743b-46d7-acea-5aa06592de4d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c85fcc3c-6d28-4c8b-8343-999072592519.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/239b3d65-056f-4a88-bd61-3187796e0a13.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/39245ca2-1df6-4279-877b-f430ae366c2e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f18d2f50-cdb9-436b-9912-bc93d96e173f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/56c0367c-48cf-4fd3-bd81-ec732e3f8c77.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9035c99-4e3f-4a3d-8a43-efa1db2beec0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ca1c5dd3-20fe-4e43-a5a5-c4bacb84cc55.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a3c8bd6c-ffbe-4ddf-8713-317c3e6c09f0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dbedecc9-edcb-426d-acf1-1c7ed846ade0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/04f1dfc0-52f7-4dd7-8af2-782d7d60c86b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02e545f0-f017-422f-ab58-54de27f59a18.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb483477-b9d6-404f-a7ba-02151d6a2989.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e5773b9e-585f-443b-adbf-4c584696c74d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9cf55460-6aa3-4f86-a462-12dac944da3e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b90fe9fd-1434-4baa-bfca-8e93efc0f3f2.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485900424, + "firstHistogramAt": 1716485900617, + "lastCounterAt": 1716485909935, + "lastHistogramAt": 1716485909757, + "firstMetricAt": 1716485900424, + "lastMetricAt": 1716485909935, + "period": "1716485900000", + "summaries": { + "http.response_time": { + "min": 740, + "max": 1142, + "count": 54, + "mean": 852.4, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 740, + "max": 1128, + "count": 30, + "mean": 842.8, + "p50": 772.9, + "median": 772.9, + "p75": 889.1, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/375d620f-79e2-4b4e-9818-068746cf8d3a": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11693.4, + "max": 12451.5, + "count": 24, + "mean": 11861.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a548b75-ed32-4cb5-bd03-04a5c6d41f89": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9a4ad65-f5e5-4fc5-8f46-2939a0199c6f": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7c6e41d-1dfd-43ae-98d3-c1104acbad5a": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b48ea9bb-9868-4561-a55f-208fbf15492d": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37a233bc-3861-4749-8f81-8ebfb8a4f2b2": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/510c6bad-4668-4bbc-8e25-8cc76ff42e28": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c5ba395-7289-4e26-b105-2a35cef4ce41": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/659ac4f1-743b-46d7-acea-5aa06592de4d": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c85fcc3c-6d28-4c8b-8343-999072592519": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/239b3d65-056f-4a88-bd61-3187796e0a13": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39245ca2-1df6-4279-877b-f430ae366c2e": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18d2f50-cdb9-436b-9912-bc93d96e173f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56c0367c-48cf-4fd3-bd81-ec732e3f8c77": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9035c99-4e3f-4a3d-8a43-efa1db2beec0": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca1c5dd3-20fe-4e43-a5a5-c4bacb84cc55": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3c8bd6c-ffbe-4ddf-8713-317c3e6c09f0": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbedecc9-edcb-426d-acf1-1c7ed846ade0": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04f1dfc0-52f7-4dd7-8af2-782d7d60c86b": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e545f0-f017-422f-ab58-54de27f59a18": { + "min": 773, + "max": 773, + "count": 1, + "mean": 773, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb483477-b9d6-404f-a7ba-02151d6a2989": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5773b9e-585f-443b-adbf-4c584696c74d": { + "min": 1142, + "max": 1142, + "count": 1, + "mean": 1142, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cf55460-6aa3-4f86-a462-12dac944da3e": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b90fe9fd-1434-4baa-bfca-8e93efc0f3f2": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 740, + "max": 1142, + "count": 54, + "mean": 852.4, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 740, + "max": 1128, + "count": 30, + "mean": 842.8, + "p50": 772.9, + "median": 772.9, + "p75": 889.1, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/375d620f-79e2-4b4e-9818-068746cf8d3a": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11693.4, + "max": 12451.5, + "count": 24, + "mean": 11861.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a548b75-ed32-4cb5-bd03-04a5c6d41f89": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d9a4ad65-f5e5-4fc5-8f46-2939a0199c6f": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7c6e41d-1dfd-43ae-98d3-c1104acbad5a": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b48ea9bb-9868-4561-a55f-208fbf15492d": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/37a233bc-3861-4749-8f81-8ebfb8a4f2b2": { + "min": 1048, + "max": 1048, + "count": 1, + "mean": 1048, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/510c6bad-4668-4bbc-8e25-8cc76ff42e28": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c5ba395-7289-4e26-b105-2a35cef4ce41": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/659ac4f1-743b-46d7-acea-5aa06592de4d": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c85fcc3c-6d28-4c8b-8343-999072592519": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/239b3d65-056f-4a88-bd61-3187796e0a13": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39245ca2-1df6-4279-877b-f430ae366c2e": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18d2f50-cdb9-436b-9912-bc93d96e173f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56c0367c-48cf-4fd3-bd81-ec732e3f8c77": { + "min": 878, + "max": 878, + "count": 1, + "mean": 878, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9035c99-4e3f-4a3d-8a43-efa1db2beec0": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca1c5dd3-20fe-4e43-a5a5-c4bacb84cc55": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3c8bd6c-ffbe-4ddf-8713-317c3e6c09f0": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbedecc9-edcb-426d-acf1-1c7ed846ade0": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04f1dfc0-52f7-4dd7-8af2-782d7d60c86b": { + "min": 858, + "max": 858, + "count": 1, + "mean": 858, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e545f0-f017-422f-ab58-54de27f59a18": { + "min": 773, + "max": 773, + "count": 1, + "mean": 773, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb483477-b9d6-404f-a7ba-02151d6a2989": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5773b9e-585f-443b-adbf-4c584696c74d": { + "min": 1142, + "max": 1142, + "count": 1, + "mean": 1142, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cf55460-6aa3-4f86-a462-12dac944da3e": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b90fe9fd-1434-4baa-bfca-8e93efc0f3f2": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 51, + "http.responses": 60, + "plugins.metrics-by-endpoint./v0/crawl/status/5573e323-1ec0-4c50-95e9-3691dc01071b.codes.200": 1, + "vusers.failed": 9, + "vusers.completed": 21, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "http.requests": 60, + "plugins.metrics-by-endpoint./v0/crawl/status/34d1b57e-b162-424c-bf77-fd56b3001f07.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03cf0886-aab3-4275-b95e-38604cc5cec3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a3b429e8-e09e-4695-aa2f-b096f5ea067e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/888c6b58-f296-4783-a774-b2d2e1e045c1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ce6332a8-8afe-42fa-8903-964eda3fd9f3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/43355554-0652-4775-85f3-22c86f068000.codes.200": 1, + "http.codes.404": 9, + "plugins.metrics-by-endpoint./v0/crawl/status/aaf13674-66f9-4da3-99af-a6c927d41423.codes.404": 1, + "errors.Failed capture or match": 9, + "plugins.metrics-by-endpoint./v0/crawl/status/8322c462-a2a1-4357-a77a-4c8cafe20e09.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/067bb6d4-d3b1-41b5-aef0-c7b1a58265fe.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7cdb5a8b-d4c2-4762-85d7-8b84dd57ee29.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d721d193-69c1-4153-804d-957eca8532d2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d1cd2d90-5a1c-4108-9367-fca945341cec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8331ae83-f520-49ed-ba89-fab9d296e7dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/36de1f1a-4aab-4e43-ae5f-7e7f3b2ca032.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e8e64581-d17e-483c-addd-2f5bf0086c78.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b8ac9a6e-b921-468e-b5c9-d6e55c245514.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2a8994d4-f171-48c7-b668-8362d0012041.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e21bad6c-3303-44e1-907f-c8779fde1f59.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/100c1b08-fd5d-4416-b108-a00cc2964f53.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/70f162bb-d2ba-409d-b0f3-1f1a565a8af7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8304f58a-481b-4e82-b215-dfcf7d9bd12a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3821cf50-a908-4b85-a1c8-67194366c1b6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b39542c1-714b-4f62-b142-2836d3aa92dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7e3706f6-8f2c-43e7-92ac-2b14b8362479.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b0771e57-559e-4c66-a16b-5935d21da745.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f64ad05e-b26c-4579-91aa-2e3a880b00af.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82ab489f-b442-4147-bdf6-557f798ebf89.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/65d369b2-aa4d-47d5-9225-7b7fae26ed7f.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38f56aff-33af-4860-a01d-ec1bd4cd1db1.codes.404": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485910499, + "firstHistogramAt": 1716485910499, + "lastCounterAt": 1716485919935, + "lastHistogramAt": 1716485919875, + "firstMetricAt": 1716485910499, + "lastMetricAt": 1716485919935, + "period": "1716485910000", + "summaries": { + "http.response_time": { + "min": 363, + "max": 1337, + "count": 60, + "mean": 776.1, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 925.4, + "p95": 1043.3, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5573e323-1ec0-4c50-95e9-3691dc01071b": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11664.1, + "max": 12384.8, + "count": 21, + "mean": 11832.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 741, + "max": 1226, + "count": 30, + "mean": 830.4, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 925.4, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34d1b57e-b162-424c-bf77-fd56b3001f07": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cf0886-aab3-4275-b95e-38604cc5cec3": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3b429e8-e09e-4695-aa2f-b096f5ea067e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/888c6b58-f296-4783-a774-b2d2e1e045c1": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce6332a8-8afe-42fa-8903-964eda3fd9f3": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/43355554-0652-4775-85f3-22c86f068000": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aaf13674-66f9-4da3-99af-a6c927d41423": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8322c462-a2a1-4357-a77a-4c8cafe20e09": { + "min": 600, + "max": 600, + "count": 1, + "mean": 600, + "p50": 596, + "median": 596, + "p75": 596, + "p90": 596, + "p95": 596, + "p99": 596, + "p999": 596 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/067bb6d4-d3b1-41b5-aef0-c7b1a58265fe": { + "min": 394, + "max": 394, + "count": 1, + "mean": 394, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7cdb5a8b-d4c2-4762-85d7-8b84dd57ee29": { + "min": 1337, + "max": 1337, + "count": 1, + "mean": 1337, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d721d193-69c1-4153-804d-957eca8532d2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d1cd2d90-5a1c-4108-9367-fca945341cec": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8331ae83-f520-49ed-ba89-fab9d296e7dd": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36de1f1a-4aab-4e43-ae5f-7e7f3b2ca032": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8e64581-d17e-483c-addd-2f5bf0086c78": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8ac9a6e-b921-468e-b5c9-d6e55c245514": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8994d4-f171-48c7-b668-8362d0012041": { + "min": 370, + "max": 370, + "count": 1, + "mean": 370, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e21bad6c-3303-44e1-907f-c8779fde1f59": { + "min": 619, + "max": 619, + "count": 1, + "mean": 619, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/100c1b08-fd5d-4416-b108-a00cc2964f53": { + "min": 403, + "max": 403, + "count": 1, + "mean": 403, + "p50": 399.5, + "median": 399.5, + "p75": 399.5, + "p90": 399.5, + "p95": 399.5, + "p99": 399.5, + "p999": 399.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/70f162bb-d2ba-409d-b0f3-1f1a565a8af7": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8304f58a-481b-4e82-b215-dfcf7d9bd12a": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3821cf50-a908-4b85-a1c8-67194366c1b6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b39542c1-714b-4f62-b142-2836d3aa92dd": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e3706f6-8f2c-43e7-92ac-2b14b8362479": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0771e57-559e-4c66-a16b-5935d21da745": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f64ad05e-b26c-4579-91aa-2e3a880b00af": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82ab489f-b442-4147-bdf6-557f798ebf89": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65d369b2-aa4d-47d5-9225-7b7fae26ed7f": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38f56aff-33af-4860-a01d-ec1bd4cd1db1": { + "min": 363, + "max": 363, + "count": 1, + "mean": 363, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + } + }, + "histograms": { + "http.response_time": { + "min": 363, + "max": 1337, + "count": 60, + "mean": 776.1, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 925.4, + "p95": 1043.3, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5573e323-1ec0-4c50-95e9-3691dc01071b": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11664.1, + "max": 12384.8, + "count": 21, + "mean": 11832.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 741, + "max": 1226, + "count": 30, + "mean": 830.4, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 925.4, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34d1b57e-b162-424c-bf77-fd56b3001f07": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cf0886-aab3-4275-b95e-38604cc5cec3": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a3b429e8-e09e-4695-aa2f-b096f5ea067e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/888c6b58-f296-4783-a774-b2d2e1e045c1": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ce6332a8-8afe-42fa-8903-964eda3fd9f3": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/43355554-0652-4775-85f3-22c86f068000": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/aaf13674-66f9-4da3-99af-a6c927d41423": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8322c462-a2a1-4357-a77a-4c8cafe20e09": { + "min": 600, + "max": 600, + "count": 1, + "mean": 600, + "p50": 596, + "median": 596, + "p75": 596, + "p90": 596, + "p95": 596, + "p99": 596, + "p999": 596 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/067bb6d4-d3b1-41b5-aef0-c7b1a58265fe": { + "min": 394, + "max": 394, + "count": 1, + "mean": 394, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7cdb5a8b-d4c2-4762-85d7-8b84dd57ee29": { + "min": 1337, + "max": 1337, + "count": 1, + "mean": 1337, + "p50": 1326.4, + "median": 1326.4, + "p75": 1326.4, + "p90": 1326.4, + "p95": 1326.4, + "p99": 1326.4, + "p999": 1326.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d721d193-69c1-4153-804d-957eca8532d2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d1cd2d90-5a1c-4108-9367-fca945341cec": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8331ae83-f520-49ed-ba89-fab9d296e7dd": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/36de1f1a-4aab-4e43-ae5f-7e7f3b2ca032": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8e64581-d17e-483c-addd-2f5bf0086c78": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8ac9a6e-b921-468e-b5c9-d6e55c245514": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2a8994d4-f171-48c7-b668-8362d0012041": { + "min": 370, + "max": 370, + "count": 1, + "mean": 370, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e21bad6c-3303-44e1-907f-c8779fde1f59": { + "min": 619, + "max": 619, + "count": 1, + "mean": 619, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/100c1b08-fd5d-4416-b108-a00cc2964f53": { + "min": 403, + "max": 403, + "count": 1, + "mean": 403, + "p50": 399.5, + "median": 399.5, + "p75": 399.5, + "p90": 399.5, + "p95": 399.5, + "p99": 399.5, + "p999": 399.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/70f162bb-d2ba-409d-b0f3-1f1a565a8af7": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8304f58a-481b-4e82-b215-dfcf7d9bd12a": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3821cf50-a908-4b85-a1c8-67194366c1b6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b39542c1-714b-4f62-b142-2836d3aa92dd": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e3706f6-8f2c-43e7-92ac-2b14b8362479": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0771e57-559e-4c66-a16b-5935d21da745": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f64ad05e-b26c-4579-91aa-2e3a880b00af": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82ab489f-b442-4147-bdf6-557f798ebf89": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65d369b2-aa4d-47d5-9225-7b7fae26ed7f": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38f56aff-33af-4860-a01d-ec1bd4cd1db1": { + "min": 363, + "max": 363, + "count": 1, + "mean": 363, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + } + } + }, + { + "counters": { + "http.codes.404": 25, + "http.responses": 60, + "plugins.metrics-by-endpoint./v0/crawl/status/8ac5a1d0-17ea-49eb-96ce-e1d67dea9450.codes.404": 1, + "errors.Failed capture or match": 25, + "vusers.failed": 25, + "http.requests": 60, + "http.codes.200": 35, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/31af74f8-81c8-4e10-968b-3924979ef3d1.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fbdf0cc4-b6c6-447b-8b11-64381329ece5.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ebe49a5d-3fbe-4de3-bd21-ea336443995e.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b590e35-2380-44e7-8bc2-2ad798bef27d.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82272fea-106b-45ca-86ba-88c61d679647.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d588cfc8-dd95-4e1d-9bab-9dfbd9adf2a0.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/123ca86f-47dc-4f82-a585-f999b7d9fe5e.codes.200": 1, + "vusers.completed": 5, + "plugins.metrics-by-endpoint./v0/crawl/status/32f9b190-ee13-4b50-8898-dcafa7461ea3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ee6f3b72-b2ea-468c-9d2d-7433d2960ed6.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f9346edc-f526-4df6-a06c-cfd03d90365a.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b84045e5-ac3b-4bba-a96e-a8dac9cd2303.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/84f79b05-0dbe-4aac-9cd6-cdeb769f1789.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c7cf27ab-a846-4777-bce8-522a614c9815.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02ca0ee3-2196-41a9-a953-282efd324182.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0d389d68-2ba3-4ca3-a8ff-30550b7506be.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57d17a2a-f85a-42ec-8a2e-37b2125fb454.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/45fd3921-b4d4-4c8c-be0e-8285a88a7a27.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/618d7955-0948-4999-8531-79490413a58a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/16bd0bf4-fc47-4b54-988f-b5ff5cbb08aa.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c7e859a2-ca34-4fad-a019-da6ced03ab7b.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5660c04f-fb21-4ce4-9f68-237f2ffed2f1.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fe7d655d-a647-4650-b53f-90d176d03603.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/32fdf00f-0d19-47e0-a666-184be7ca0ed3.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a45b0acb-2e5f-4745-ba62-1e03663168f9.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/46bcdad2-8bb7-4f66-bfee-c49fe79ba48a.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7d353cd4-a358-4e24-94af-b90601b6a63e.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/787c979b-c075-40e9-9f61-4c3cccd5139a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27e60285-c845-4260-b43c-7c79534c39be.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d7fe394f-b524-4dd4-85b0-bf09009324ca.codes.404": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485920113, + "firstHistogramAt": 1716485920113, + "lastCounterAt": 1716485929935, + "lastHistogramAt": 1716485929775, + "firstMetricAt": 1716485920113, + "lastMetricAt": 1716485929935, + "period": "1716485920000", + "summaries": { + "http.response_time": { + "min": 364, + "max": 1332, + "count": 60, + "mean": 634.6, + "p50": 742.6, + "median": 742.6, + "p75": 772.9, + "p90": 837.3, + "p95": 889.1, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ac5a1d0-17ea-49eb-96ce-e1d67dea9450": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 737, + "max": 1332, + "count": 30, + "mean": 820.8, + "p50": 772.9, + "median": 772.9, + "p75": 820.7, + "p90": 889.1, + "p95": 889.1, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31af74f8-81c8-4e10-968b-3924979ef3d1": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbdf0cc4-b6c6-447b-8b11-64381329ece5": { + "min": 365, + "max": 365, + "count": 1, + "mean": 365, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ebe49a5d-3fbe-4de3-bd21-ea336443995e": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b590e35-2380-44e7-8bc2-2ad798bef27d": { + "min": 364, + "max": 364, + "count": 1, + "mean": 364, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82272fea-106b-45ca-86ba-88c61d679647": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d588cfc8-dd95-4e1d-9bab-9dfbd9adf2a0": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123ca86f-47dc-4f82-a585-f999b7d9fe5e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "vusers.session_length": { + "min": 11659.6, + "max": 11986.1, + "count": 5, + "mean": 11746.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11734.2, + "p95": 11734.2, + "p99": 11734.2, + "p999": 11734.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32f9b190-ee13-4b50-8898-dcafa7461ea3": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee6f3b72-b2ea-468c-9d2d-7433d2960ed6": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9346edc-f526-4df6-a06c-cfd03d90365a": { + "min": 379, + "max": 379, + "count": 1, + "mean": 379, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b84045e5-ac3b-4bba-a96e-a8dac9cd2303": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84f79b05-0dbe-4aac-9cd6-cdeb769f1789": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7cf27ab-a846-4777-bce8-522a614c9815": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02ca0ee3-2196-41a9-a953-282efd324182": { + "min": 384, + "max": 384, + "count": 1, + "mean": 384, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d389d68-2ba3-4ca3-a8ff-30550b7506be": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57d17a2a-f85a-42ec-8a2e-37b2125fb454": { + "min": 413, + "max": 413, + "count": 1, + "mean": 413, + "p50": 415.8, + "median": 415.8, + "p75": 415.8, + "p90": 415.8, + "p95": 415.8, + "p99": 415.8, + "p999": 415.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/45fd3921-b4d4-4c8c-be0e-8285a88a7a27": { + "min": 376, + "max": 376, + "count": 1, + "mean": 376, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/618d7955-0948-4999-8531-79490413a58a": { + "min": 746, + "max": 746, + "count": 1, + "mean": 746, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16bd0bf4-fc47-4b54-988f-b5ff5cbb08aa": { + "min": 623, + "max": 623, + "count": 1, + "mean": 623, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7e859a2-ca34-4fad-a019-da6ced03ab7b": { + "min": 387, + "max": 387, + "count": 1, + "mean": 387, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5660c04f-fb21-4ce4-9f68-237f2ffed2f1": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe7d655d-a647-4650-b53f-90d176d03603": { + "min": 377, + "max": 377, + "count": 1, + "mean": 377, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32fdf00f-0d19-47e0-a666-184be7ca0ed3": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a45b0acb-2e5f-4745-ba62-1e03663168f9": { + "min": 428, + "max": 428, + "count": 1, + "mean": 428, + "p50": 424.2, + "median": 424.2, + "p75": 424.2, + "p90": 424.2, + "p95": 424.2, + "p99": 424.2, + "p999": 424.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46bcdad2-8bb7-4f66-bfee-c49fe79ba48a": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d353cd4-a358-4e24-94af-b90601b6a63e": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/787c979b-c075-40e9-9f61-4c3cccd5139a": { + "min": 705, + "max": 705, + "count": 1, + "mean": 705, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27e60285-c845-4260-b43c-7c79534c39be": { + "min": 728, + "max": 728, + "count": 1, + "mean": 728, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7fe394f-b524-4dd4-85b0-bf09009324ca": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + } + }, + "histograms": { + "http.response_time": { + "min": 364, + "max": 1332, + "count": 60, + "mean": 634.6, + "p50": 742.6, + "median": 742.6, + "p75": 772.9, + "p90": 837.3, + "p95": 889.1, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ac5a1d0-17ea-49eb-96ce-e1d67dea9450": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 737, + "max": 1332, + "count": 30, + "mean": 820.8, + "p50": 772.9, + "median": 772.9, + "p75": 820.7, + "p90": 889.1, + "p95": 889.1, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31af74f8-81c8-4e10-968b-3924979ef3d1": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbdf0cc4-b6c6-447b-8b11-64381329ece5": { + "min": 365, + "max": 365, + "count": 1, + "mean": 365, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ebe49a5d-3fbe-4de3-bd21-ea336443995e": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b590e35-2380-44e7-8bc2-2ad798bef27d": { + "min": 364, + "max": 364, + "count": 1, + "mean": 364, + "p50": 361.5, + "median": 361.5, + "p75": 361.5, + "p90": 361.5, + "p95": 361.5, + "p99": 361.5, + "p999": 361.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82272fea-106b-45ca-86ba-88c61d679647": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d588cfc8-dd95-4e1d-9bab-9dfbd9adf2a0": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123ca86f-47dc-4f82-a585-f999b7d9fe5e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "vusers.session_length": { + "min": 11659.6, + "max": 11986.1, + "count": 5, + "mean": 11746.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11734.2, + "p95": 11734.2, + "p99": 11734.2, + "p999": 11734.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32f9b190-ee13-4b50-8898-dcafa7461ea3": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee6f3b72-b2ea-468c-9d2d-7433d2960ed6": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9346edc-f526-4df6-a06c-cfd03d90365a": { + "min": 379, + "max": 379, + "count": 1, + "mean": 379, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b84045e5-ac3b-4bba-a96e-a8dac9cd2303": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84f79b05-0dbe-4aac-9cd6-cdeb769f1789": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7cf27ab-a846-4777-bce8-522a614c9815": { + "min": 368, + "max": 368, + "count": 1, + "mean": 368, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02ca0ee3-2196-41a9-a953-282efd324182": { + "min": 384, + "max": 384, + "count": 1, + "mean": 384, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d389d68-2ba3-4ca3-a8ff-30550b7506be": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57d17a2a-f85a-42ec-8a2e-37b2125fb454": { + "min": 413, + "max": 413, + "count": 1, + "mean": 413, + "p50": 415.8, + "median": 415.8, + "p75": 415.8, + "p90": 415.8, + "p95": 415.8, + "p99": 415.8, + "p999": 415.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/45fd3921-b4d4-4c8c-be0e-8285a88a7a27": { + "min": 376, + "max": 376, + "count": 1, + "mean": 376, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/618d7955-0948-4999-8531-79490413a58a": { + "min": 746, + "max": 746, + "count": 1, + "mean": 746, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/16bd0bf4-fc47-4b54-988f-b5ff5cbb08aa": { + "min": 623, + "max": 623, + "count": 1, + "mean": 623, + "p50": 620.3, + "median": 620.3, + "p75": 620.3, + "p90": 620.3, + "p95": 620.3, + "p99": 620.3, + "p999": 620.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7e859a2-ca34-4fad-a019-da6ced03ab7b": { + "min": 387, + "max": 387, + "count": 1, + "mean": 387, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5660c04f-fb21-4ce4-9f68-237f2ffed2f1": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe7d655d-a647-4650-b53f-90d176d03603": { + "min": 377, + "max": 377, + "count": 1, + "mean": 377, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32fdf00f-0d19-47e0-a666-184be7ca0ed3": { + "min": 388, + "max": 388, + "count": 1, + "mean": 388, + "p50": 391.6, + "median": 391.6, + "p75": 391.6, + "p90": 391.6, + "p95": 391.6, + "p99": 391.6, + "p999": 391.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a45b0acb-2e5f-4745-ba62-1e03663168f9": { + "min": 428, + "max": 428, + "count": 1, + "mean": 428, + "p50": 424.2, + "median": 424.2, + "p75": 424.2, + "p90": 424.2, + "p95": 424.2, + "p99": 424.2, + "p999": 424.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46bcdad2-8bb7-4f66-bfee-c49fe79ba48a": { + "min": 375, + "max": 375, + "count": 1, + "mean": 375, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d353cd4-a358-4e24-94af-b90601b6a63e": { + "min": 369, + "max": 369, + "count": 1, + "mean": 369, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/787c979b-c075-40e9-9f61-4c3cccd5139a": { + "min": 705, + "max": 705, + "count": 1, + "mean": 705, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27e60285-c845-4260-b43c-7c79534c39be": { + "min": 728, + "max": 728, + "count": 1, + "mean": 728, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d7fe394f-b524-4dd4-85b0-bf09009324ca": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + } + } + }, + { + "counters": { + "http.codes.404": 9, + "http.responses": 59, + "plugins.metrics-by-endpoint./v0/crawl/status/04eedf52-f526-4742-93bd-3c791362a9da.codes.404": 1, + "errors.Failed capture or match": 9, + "vusers.failed": 9, + "http.codes.200": 50, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/29c7a5e2-c675-46cb-b1e8-6915fc7925a7.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/68de4561-6680-4e6b-96b8-347d7246ebd2.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/542121b3-7250-4975-95f2-ad3afb8e9a40.codes.200": 1, + "vusers.completed": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/ad3525f0-eea2-4022-97bf-0a64b21f5946.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fcf1b6e4-6664-4f87-8ea0-718d3579bcf9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cff043e1-0f0c-470e-a65d-2db01c5b9142.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/54e3183d-94ae-422b-9e12-b41c5ad6cc72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e59b06b-10f3-4d1a-a79f-7c4596df3160.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc2e247b-f347-4468-9e7e-4a2040e7b962.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/47b5aa1e-54a9-4db0-be63-213fe9410335.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f9a8f3f-8046-4f8f-8c17-be68b2c7e721.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/21fdddae-e611-4cda-b078-eb51c401ec21.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/20eb6eeb-4382-4d56-b904-c249bdbea292.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d5f4da16-9b14-4445-818e-0a2fd81f47f1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc941e77-9f07-4d6f-bae1-b4dc88ff1c58.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ed1bcefb-6b70-48fa-88b5-d5e82fdd995d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0eae7ad-7524-4d5b-a1d4-8d15a20c961e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/299353d2-d8f5-44ca-8a1c-71272fd9f7e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/494496f9-c417-4d48-a4cd-7e081a2819a0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e97f50c7-348e-46c2-9f72-7131c4ebf6e3.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/33cecab2-833a-493e-964f-7e069b8695ae.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/93d23d49-1e6f-48ef-a338-e01b505efe4b.codes.404": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8ade6646-9f43-438b-a948-70cc3285c2c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/872c46f1-63bc-4b25-8d12-caede331490a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0c70d330-cc9a-4f6e-9b62-8eece7c9c8f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/23be3c84-78f8-4b5c-baaa-389c78bacc31.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1fa64832-447f-4dbb-bb8f-5d1b8fade0cd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7ca54b5f-8219-4193-b294-2c17a5500983.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485930204, + "firstHistogramAt": 1716485930204, + "lastCounterAt": 1716485939969, + "lastHistogramAt": 1716485939969, + "firstMetricAt": 1716485930204, + "lastMetricAt": 1716485939969, + "period": "1716485930000", + "summaries": { + "http.response_time": { + "min": 372, + "max": 1260, + "count": 59, + "mean": 779.1, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 1002.4, + "p95": 1064.4, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04eedf52-f526-4742-93bd-3c791362a9da": { + "min": 408, + "max": 408, + "count": 1, + "mean": 408, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 748, + "max": 1260, + "count": 30, + "mean": 857, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 1002.4, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c7a5e2-c675-46cb-b1e8-6915fc7925a7": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68de4561-6680-4e6b-96b8-347d7246ebd2": { + "min": 455, + "max": 455, + "count": 1, + "mean": 455, + "p50": 459.5, + "median": 459.5, + "p75": 459.5, + "p90": 459.5, + "p95": 459.5, + "p99": 459.5, + "p999": 459.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/542121b3-7250-4975-95f2-ad3afb8e9a40": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11598.6, + "max": 12240.8, + "count": 20, + "mean": 11792.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad3525f0-eea2-4022-97bf-0a64b21f5946": { + "min": 736, + "max": 736, + "count": 1, + "mean": 736, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fcf1b6e4-6664-4f87-8ea0-718d3579bcf9": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cff043e1-0f0c-470e-a65d-2db01c5b9142": { + "min": 948, + "max": 948, + "count": 1, + "mean": 948, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/54e3183d-94ae-422b-9e12-b41c5ad6cc72": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e59b06b-10f3-4d1a-a79f-7c4596df3160": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc2e247b-f347-4468-9e7e-4a2040e7b962": { + "min": 1065, + "max": 1065, + "count": 1, + "mean": 1065, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/47b5aa1e-54a9-4db0-be63-213fe9410335": { + "min": 406, + "max": 406, + "count": 1, + "mean": 406, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f9a8f3f-8046-4f8f-8c17-be68b2c7e721": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21fdddae-e611-4cda-b078-eb51c401ec21": { + "min": 385, + "max": 385, + "count": 1, + "mean": 385, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20eb6eeb-4382-4d56-b904-c249bdbea292": { + "min": 952, + "max": 952, + "count": 1, + "mean": 952, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d5f4da16-9b14-4445-818e-0a2fd81f47f1": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc941e77-9f07-4d6f-bae1-b4dc88ff1c58": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed1bcefb-6b70-48fa-88b5-d5e82fdd995d": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0eae7ad-7524-4d5b-a1d4-8d15a20c961e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/299353d2-d8f5-44ca-8a1c-71272fd9f7e4": { + "min": 841, + "max": 841, + "count": 1, + "mean": 841, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/494496f9-c417-4d48-a4cd-7e081a2819a0": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e97f50c7-348e-46c2-9f72-7131c4ebf6e3": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33cecab2-833a-493e-964f-7e069b8695ae": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93d23d49-1e6f-48ef-a338-e01b505efe4b": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ade6646-9f43-438b-a948-70cc3285c2c2": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/872c46f1-63bc-4b25-8d12-caede331490a": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c70d330-cc9a-4f6e-9b62-8eece7c9c8f5": { + "min": 776, + "max": 776, + "count": 1, + "mean": 776, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23be3c84-78f8-4b5c-baaa-389c78bacc31": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fa64832-447f-4dbb-bb8f-5d1b8fade0cd": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7ca54b5f-8219-4193-b294-2c17a5500983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 372, + "max": 1260, + "count": 59, + "mean": 779.1, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 1002.4, + "p95": 1064.4, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/04eedf52-f526-4742-93bd-3c791362a9da": { + "min": 408, + "max": 408, + "count": 1, + "mean": 408, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 748, + "max": 1260, + "count": 30, + "mean": 857, + "p50": 820.7, + "median": 820.7, + "p75": 889.1, + "p90": 1002.4, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c7a5e2-c675-46cb-b1e8-6915fc7925a7": { + "min": 372, + "max": 372, + "count": 1, + "mean": 372, + "p50": 368.8, + "median": 368.8, + "p75": 368.8, + "p90": 368.8, + "p95": 368.8, + "p99": 368.8, + "p999": 368.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/68de4561-6680-4e6b-96b8-347d7246ebd2": { + "min": 455, + "max": 455, + "count": 1, + "mean": 455, + "p50": 459.5, + "median": 459.5, + "p75": 459.5, + "p90": 459.5, + "p95": 459.5, + "p99": 459.5, + "p999": 459.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/542121b3-7250-4975-95f2-ad3afb8e9a40": { + "min": 717, + "max": 717, + "count": 1, + "mean": 717, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "vusers.session_length": { + "min": 11598.6, + "max": 12240.8, + "count": 20, + "mean": 11792.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad3525f0-eea2-4022-97bf-0a64b21f5946": { + "min": 736, + "max": 736, + "count": 1, + "mean": 736, + "p50": 742.6, + "median": 742.6, + "p75": 742.6, + "p90": 742.6, + "p95": 742.6, + "p99": 742.6, + "p999": 742.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fcf1b6e4-6664-4f87-8ea0-718d3579bcf9": { + "min": 719, + "max": 719, + "count": 1, + "mean": 719, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cff043e1-0f0c-470e-a65d-2db01c5b9142": { + "min": 948, + "max": 948, + "count": 1, + "mean": 948, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/54e3183d-94ae-422b-9e12-b41c5ad6cc72": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e59b06b-10f3-4d1a-a79f-7c4596df3160": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc2e247b-f347-4468-9e7e-4a2040e7b962": { + "min": 1065, + "max": 1065, + "count": 1, + "mean": 1065, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/47b5aa1e-54a9-4db0-be63-213fe9410335": { + "min": 406, + "max": 406, + "count": 1, + "mean": 406, + "p50": 407.5, + "median": 407.5, + "p75": 407.5, + "p90": 407.5, + "p95": 407.5, + "p99": 407.5, + "p999": 407.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f9a8f3f-8046-4f8f-8c17-be68b2c7e721": { + "min": 381, + "max": 381, + "count": 1, + "mean": 381, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21fdddae-e611-4cda-b078-eb51c401ec21": { + "min": 385, + "max": 385, + "count": 1, + "mean": 385, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20eb6eeb-4382-4d56-b904-c249bdbea292": { + "min": 952, + "max": 952, + "count": 1, + "mean": 952, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d5f4da16-9b14-4445-818e-0a2fd81f47f1": { + "min": 713, + "max": 713, + "count": 1, + "mean": 713, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc941e77-9f07-4d6f-bae1-b4dc88ff1c58": { + "min": 704, + "max": 704, + "count": 1, + "mean": 704, + "p50": 699.4, + "median": 699.4, + "p75": 699.4, + "p90": 699.4, + "p95": 699.4, + "p99": 699.4, + "p999": 699.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed1bcefb-6b70-48fa-88b5-d5e82fdd995d": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0eae7ad-7524-4d5b-a1d4-8d15a20c961e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/299353d2-d8f5-44ca-8a1c-71272fd9f7e4": { + "min": 841, + "max": 841, + "count": 1, + "mean": 841, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/494496f9-c417-4d48-a4cd-7e081a2819a0": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e97f50c7-348e-46c2-9f72-7131c4ebf6e3": { + "min": 374, + "max": 374, + "count": 1, + "mean": 374, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33cecab2-833a-493e-964f-7e069b8695ae": { + "min": 382, + "max": 382, + "count": 1, + "mean": 382, + "p50": 383.8, + "median": 383.8, + "p75": 383.8, + "p90": 383.8, + "p95": 383.8, + "p99": 383.8, + "p999": 383.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/93d23d49-1e6f-48ef-a338-e01b505efe4b": { + "min": 373, + "max": 373, + "count": 1, + "mean": 373, + "p50": 376.2, + "median": 376.2, + "p75": 376.2, + "p90": 376.2, + "p95": 376.2, + "p99": 376.2, + "p999": 376.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ade6646-9f43-438b-a948-70cc3285c2c2": { + "min": 720, + "max": 720, + "count": 1, + "mean": 720, + "p50": 713.5, + "median": 713.5, + "p75": 713.5, + "p90": 713.5, + "p95": 713.5, + "p99": 713.5, + "p999": 713.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/872c46f1-63bc-4b25-8d12-caede331490a": { + "min": 732, + "max": 732, + "count": 1, + "mean": 732, + "p50": 727.9, + "median": 727.9, + "p75": 727.9, + "p90": 727.9, + "p95": 727.9, + "p99": 727.9, + "p999": 727.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c70d330-cc9a-4f6e-9b62-8eece7c9c8f5": { + "min": 776, + "max": 776, + "count": 1, + "mean": 776, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23be3c84-78f8-4b5c-baaa-389c78bacc31": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1fa64832-447f-4dbb-bb8f-5d1b8fade0cd": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7ca54b5f-8219-4193-b294-2c17a5500983": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 61, + "http.responses": 61, + "plugins.metrics-by-endpoint./v0/crawl/status/55f617ce-3cc5-44cc-8219-b868d5669d59.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 31, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/437cd3d8-b6bb-4ea6-b1ce-2094e6abf14c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53f7af9d-0891-487c-a487-78cf2353ea31.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4a116e20-eaa8-4d4b-8de9-018404aec4f7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/50f57fc1-d294-4913-aa2c-319cc6d30f28.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/894fc871-43e0-4591-ab86-736f214b6a8e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/363fca68-2a89-4a22-a727-f10c1e51aac4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f3452af7-f0aa-41a2-8ffc-d4ee8f72d057.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef4a452f-a158-410d-9be7-9830be459323.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0bdcd915-ef7e-4baf-9f2b-ca44288c48bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d58ce921-5673-4a96-be38-da6fc92351d5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/286f4a85-caf9-49f8-a363-8c7c08daac15.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ea422c70-b837-4ebc-b34c-e8f9a2c7b807.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4f1ee014-07d8-499c-a44b-3e5bb81c2bcf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/81c6faa6-c75b-4b0b-8f5c-da952c3bc92f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/efcc8882-b8d6-4477-94ce-5f02528217ef.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/42fb8478-e07d-4f3e-a29f-118678a7d20e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/80daa6a5-d8be-4434-b3dc-c675915b48bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7fe5f5e4-deaa-47a4-b7b7-589cb021850a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8c8f891b-9237-4999-9448-9555201887c7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c87153d2-58a5-4788-b8a4-fff31d905145.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1a1f8282-8510-485f-99bd-e76fe4bdd08e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b71b553f-f7ae-498d-856c-dcdcf6a18b02.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/20dada24-5093-4c1e-8916-09fa036cf2ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ff32a3a6-072e-4ff8-b0db-890f4f54cee9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/89ea6b20-2619-4577-8790-d52e6540a5fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/23f04b3f-656f-4084-ade3-d56c4c9af2b7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9608d262-57e6-4523-a6b8-6c74529a8857.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2314e2a7-0a62-4b97-b3fb-af9892d00730.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/841e03e3-6c21-4464-8fe8-590b3b2412da.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/550c2c07-3bf4-43e3-97d1-abe96b82fcbf.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485940017, + "firstHistogramAt": 1716485940017, + "lastCounterAt": 1716485949972, + "lastHistogramAt": 1716485949829, + "firstMetricAt": 1716485940017, + "lastMetricAt": 1716485949972, + "period": "1716485940000", + "summaries": { + "http.response_time": { + "min": 737, + "max": 1113, + "count": 61, + "mean": 820, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 889.1, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55f617ce-3cc5-44cc-8219-b868d5669d59": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11681.7, + "max": 12220.6, + "count": 31, + "mean": 11807.6, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 737, + "max": 1113, + "count": 30, + "mean": 819.1, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 944, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/437cd3d8-b6bb-4ea6-b1ce-2094e6abf14c": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53f7af9d-0891-487c-a487-78cf2353ea31": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a116e20-eaa8-4d4b-8de9-018404aec4f7": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50f57fc1-d294-4913-aa2c-319cc6d30f28": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/894fc871-43e0-4591-ab86-736f214b6a8e": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/363fca68-2a89-4a22-a727-f10c1e51aac4": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3452af7-f0aa-41a2-8ffc-d4ee8f72d057": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef4a452f-a158-410d-9be7-9830be459323": { + "min": 1049, + "max": 1049, + "count": 1, + "mean": 1049, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bdcd915-ef7e-4baf-9f2b-ca44288c48bc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d58ce921-5673-4a96-be38-da6fc92351d5": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/286f4a85-caf9-49f8-a363-8c7c08daac15": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ea422c70-b837-4ebc-b34c-e8f9a2c7b807": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f1ee014-07d8-499c-a44b-3e5bb81c2bcf": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/81c6faa6-c75b-4b0b-8f5c-da952c3bc92f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efcc8882-b8d6-4477-94ce-5f02528217ef": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/42fb8478-e07d-4f3e-a29f-118678a7d20e": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/80daa6a5-d8be-4434-b3dc-c675915b48bf": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fe5f5e4-deaa-47a4-b7b7-589cb021850a": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c8f891b-9237-4999-9448-9555201887c7": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c87153d2-58a5-4788-b8a4-fff31d905145": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1a1f8282-8510-485f-99bd-e76fe4bdd08e": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b71b553f-f7ae-498d-856c-dcdcf6a18b02": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20dada24-5093-4c1e-8916-09fa036cf2ba": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff32a3a6-072e-4ff8-b0db-890f4f54cee9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89ea6b20-2619-4577-8790-d52e6540a5fc": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23f04b3f-656f-4084-ade3-d56c4c9af2b7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9608d262-57e6-4523-a6b8-6c74529a8857": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2314e2a7-0a62-4b97-b3fb-af9892d00730": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/841e03e3-6c21-4464-8fe8-590b3b2412da": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/550c2c07-3bf4-43e3-97d1-abe96b82fcbf": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 737, + "max": 1113, + "count": 61, + "mean": 820, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 889.1, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55f617ce-3cc5-44cc-8219-b868d5669d59": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11681.7, + "max": 12220.6, + "count": 31, + "mean": 11807.6, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 737, + "max": 1113, + "count": 30, + "mean": 819.1, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 944, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/437cd3d8-b6bb-4ea6-b1ce-2094e6abf14c": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53f7af9d-0891-487c-a487-78cf2353ea31": { + "min": 836, + "max": 836, + "count": 1, + "mean": 836, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a116e20-eaa8-4d4b-8de9-018404aec4f7": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50f57fc1-d294-4913-aa2c-319cc6d30f28": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/894fc871-43e0-4591-ab86-736f214b6a8e": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/363fca68-2a89-4a22-a727-f10c1e51aac4": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3452af7-f0aa-41a2-8ffc-d4ee8f72d057": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef4a452f-a158-410d-9be7-9830be459323": { + "min": 1049, + "max": 1049, + "count": 1, + "mean": 1049, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bdcd915-ef7e-4baf-9f2b-ca44288c48bc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d58ce921-5673-4a96-be38-da6fc92351d5": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/286f4a85-caf9-49f8-a363-8c7c08daac15": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ea422c70-b837-4ebc-b34c-e8f9a2c7b807": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f1ee014-07d8-499c-a44b-3e5bb81c2bcf": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/81c6faa6-c75b-4b0b-8f5c-da952c3bc92f": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/efcc8882-b8d6-4477-94ce-5f02528217ef": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/42fb8478-e07d-4f3e-a29f-118678a7d20e": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/80daa6a5-d8be-4434-b3dc-c675915b48bf": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fe5f5e4-deaa-47a4-b7b7-589cb021850a": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8c8f891b-9237-4999-9448-9555201887c7": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c87153d2-58a5-4788-b8a4-fff31d905145": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1a1f8282-8510-485f-99bd-e76fe4bdd08e": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b71b553f-f7ae-498d-856c-dcdcf6a18b02": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/20dada24-5093-4c1e-8916-09fa036cf2ba": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff32a3a6-072e-4ff8-b0db-890f4f54cee9": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/89ea6b20-2619-4577-8790-d52e6540a5fc": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/23f04b3f-656f-4084-ade3-d56c4c9af2b7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9608d262-57e6-4523-a6b8-6c74529a8857": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2314e2a7-0a62-4b97-b3fb-af9892d00730": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/841e03e3-6c21-4464-8fe8-590b3b2412da": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/550c2c07-3bf4-43e3-97d1-abe96b82fcbf": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 59, + "http.responses": 59, + "plugins.metrics-by-endpoint./v0/crawl/status/1ed9a768-e764-493b-be61-716f735c123b.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 29, + "http.requests": 60, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/63e232c9-6df4-4121-8834-eae9d7aea43e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a8bacd9-b08c-4d50-a31a-0981402b8daf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/95680899-ba26-4f48-a3fe-02b71ba6bb24.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f085365f-c138-4e9a-b520-bddfdf95d184.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27411cb5-f017-4906-86a4-96e6665d1d92.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f85bbad3-85a7-4b21-aa68-36f9489d71f2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/279b0708-c8df-4d1b-82fd-b2bf51c6c3ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/02e98ee9-b4ca-4897-9117-f41d0d65cc47.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/67e46167-5cf7-452b-b099-e19d839540e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2568b0c3-3acc-4e9f-9fb0-fab467d0109e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2fe1dc9d-c2b2-4b09-831c-860dd3fe8188.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7bf88501-ef91-40f8-a4d3-8e46b8bb080b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/08dae10f-954f-47fb-90d1-ddb6c0c4faee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/675c184c-5af4-4723-bcd1-d2525b60760a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0c602fd0-a7e1-4514-9d27-086fd8548945.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/24752056-944d-43c4-9bf1-3227bce1a7e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b134ad2d-b7a8-4dc5-8137-4344bfac9efd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a64dc9cb-031f-454e-a9f5-22f5b1b2ea18.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c910cd0d-84e7-4ca9-8f70-cd2eed999cbb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cb9ae528-e853-457e-b22f-8a2bfd67d075.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b1196ec0-cef4-4c14-8de7-453fc5eff16c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/11efacf6-e51a-47d4-ace4-1563e8bfe3f2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3b116186-aab7-4f51-93ff-8bee20574778.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/243517b6-510f-4eac-a2ca-600be81ac1a3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4a99235-dcb1-4ed5-8b90-02cad14a1a53.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a14fad83-3aef-4307-9980-fb6e7fd267f4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/90eb343e-3efc-4c44-8a62-d9459cc85175.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1ad5f1d5-2937-44dd-b92d-ff273200521c.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485950586, + "firstHistogramAt": 1716485950586, + "lastCounterAt": 1716485959936, + "lastHistogramAt": 1716485959858, + "firstMetricAt": 1716485950586, + "lastMetricAt": 1716485959936, + "period": "1716485950000", + "summaries": { + "http.response_time": { + "min": 725, + "max": 1217, + "count": 59, + "mean": 839.4, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ed9a768-e764-493b-be61-716f735c123b": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11676.1, + "max": 12103.3, + "count": 29, + "mean": 11805.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 725, + "max": 1069, + "count": 30, + "mean": 824.7, + "p50": 772.9, + "median": 772.9, + "p75": 837.3, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/63e232c9-6df4-4121-8834-eae9d7aea43e": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a8bacd9-b08c-4d50-a31a-0981402b8daf": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/95680899-ba26-4f48-a3fe-02b71ba6bb24": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f085365f-c138-4e9a-b520-bddfdf95d184": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27411cb5-f017-4906-86a4-96e6665d1d92": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f85bbad3-85a7-4b21-aa68-36f9489d71f2": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/279b0708-c8df-4d1b-82fd-b2bf51c6c3ba": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e98ee9-b4ca-4897-9117-f41d0d65cc47": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67e46167-5cf7-452b-b099-e19d839540e3": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2568b0c3-3acc-4e9f-9fb0-fab467d0109e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fe1dc9d-c2b2-4b09-831c-860dd3fe8188": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7bf88501-ef91-40f8-a4d3-8e46b8bb080b": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/08dae10f-954f-47fb-90d1-ddb6c0c4faee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/675c184c-5af4-4723-bcd1-d2525b60760a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c602fd0-a7e1-4514-9d27-086fd8548945": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24752056-944d-43c4-9bf1-3227bce1a7e4": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b134ad2d-b7a8-4dc5-8137-4344bfac9efd": { + "min": 775, + "max": 775, + "count": 1, + "mean": 775, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a64dc9cb-031f-454e-a9f5-22f5b1b2ea18": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c910cd0d-84e7-4ca9-8f70-cd2eed999cbb": { + "min": 1024, + "max": 1024, + "count": 1, + "mean": 1024, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb9ae528-e853-457e-b22f-8a2bfd67d075": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1196ec0-cef4-4c14-8de7-453fc5eff16c": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11efacf6-e51a-47d4-ace4-1563e8bfe3f2": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b116186-aab7-4f51-93ff-8bee20574778": { + "min": 1217, + "max": 1217, + "count": 1, + "mean": 1217, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/243517b6-510f-4eac-a2ca-600be81ac1a3": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4a99235-dcb1-4ed5-8b90-02cad14a1a53": { + "min": 1022, + "max": 1022, + "count": 1, + "mean": 1022, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a14fad83-3aef-4307-9980-fb6e7fd267f4": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90eb343e-3efc-4c44-8a62-d9459cc85175": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ad5f1d5-2937-44dd-b92d-ff273200521c": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 725, + "max": 1217, + "count": 59, + "mean": 839.4, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ed9a768-e764-493b-be61-716f735c123b": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11676.1, + "max": 12103.3, + "count": 29, + "mean": 11805.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 725, + "max": 1069, + "count": 30, + "mean": 824.7, + "p50": 772.9, + "median": 772.9, + "p75": 837.3, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/63e232c9-6df4-4121-8834-eae9d7aea43e": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a8bacd9-b08c-4d50-a31a-0981402b8daf": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/95680899-ba26-4f48-a3fe-02b71ba6bb24": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f085365f-c138-4e9a-b520-bddfdf95d184": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27411cb5-f017-4906-86a4-96e6665d1d92": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f85bbad3-85a7-4b21-aa68-36f9489d71f2": { + "min": 1036, + "max": 1036, + "count": 1, + "mean": 1036, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/279b0708-c8df-4d1b-82fd-b2bf51c6c3ba": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02e98ee9-b4ca-4897-9117-f41d0d65cc47": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67e46167-5cf7-452b-b099-e19d839540e3": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2568b0c3-3acc-4e9f-9fb0-fab467d0109e": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2fe1dc9d-c2b2-4b09-831c-860dd3fe8188": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7bf88501-ef91-40f8-a4d3-8e46b8bb080b": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/08dae10f-954f-47fb-90d1-ddb6c0c4faee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/675c184c-5af4-4723-bcd1-d2525b60760a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0c602fd0-a7e1-4514-9d27-086fd8548945": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24752056-944d-43c4-9bf1-3227bce1a7e4": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b134ad2d-b7a8-4dc5-8137-4344bfac9efd": { + "min": 775, + "max": 775, + "count": 1, + "mean": 775, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a64dc9cb-031f-454e-a9f5-22f5b1b2ea18": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c910cd0d-84e7-4ca9-8f70-cd2eed999cbb": { + "min": 1024, + "max": 1024, + "count": 1, + "mean": 1024, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb9ae528-e853-457e-b22f-8a2bfd67d075": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b1196ec0-cef4-4c14-8de7-453fc5eff16c": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/11efacf6-e51a-47d4-ace4-1563e8bfe3f2": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3b116186-aab7-4f51-93ff-8bee20574778": { + "min": 1217, + "max": 1217, + "count": 1, + "mean": 1217, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/243517b6-510f-4eac-a2ca-600be81ac1a3": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4a99235-dcb1-4ed5-8b90-02cad14a1a53": { + "min": 1022, + "max": 1022, + "count": 1, + "mean": 1022, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a14fad83-3aef-4307-9980-fb6e7fd267f4": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90eb343e-3efc-4c44-8a62-d9459cc85175": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ad5f1d5-2937-44dd-b92d-ff273200521c": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 61, + "http.responses": 61, + "plugins.metrics-by-endpoint./v0/crawl/status/02b55a7e-0678-407b-9ba7-7de3d3b95d62.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 31, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/7da4cdab-ae96-47dd-a3d0-d5ca8f23e7e5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2124f8b-1b7e-4b02-be53-d7f28753a2fe.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27c7cdbd-0050-4d5b-ae10-502303c4390d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/321cefaa-35ba-4299-bde1-e82c4b7d7f74.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7239ca64-68b7-479c-b66d-1c4aa6101d15.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/59614b76-8f3d-4150-8311-ab7b3fea55fd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/052737f5-2a0b-4edc-86a5-c076a1d8ef64.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/395b07e7-3a5c-4c82-b19a-bbd16c1e54ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/26ca7a88-61e9-4393-90da-1788b067513f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/00633c7e-7211-42ca-ab64-1accbe26966b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d69ba16d-7e4d-4bf6-8d09-a4935b2aa0ac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/07c112fa-f625-46e3-b072-d6b25acefaf7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f3295a4f-0694-4cac-8be6-7418af1ac898.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/377712e6-a204-4efe-b90d-f01a5aa52483.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1de17e8e-9949-4088-b96f-4e5bb1c940de.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a25d718-94db-485d-b353-04e1fb1c9c7d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/00df482e-802b-43a6-8a63-209879088de4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8d853b44-3f76-4fdb-abcf-409fb0b9587b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4f2099c8-95a8-45d9-912b-3f1029c90e9f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/da83b475-8079-4e6a-b126-181a950df117.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4eeda210-6b89-4cf3-bdde-8653820f04d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c02bcef-9080-4035-86c7-1d9f8945fdb4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d0ffb30d-340c-4d1f-85a9-a881337f4678.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9cd1f52e-072e-436f-a660-fa815053241f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/65446a04-9ad7-40c2-bf13-d0df9f0abac9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b7274549-472a-4817-83e6-a0c39c39510b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03ee2c93-b848-4eaa-88ee-3f9c11676f88.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e2803a45-c563-402a-bbdd-010dbbe0edbf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0d8269da-52e2-49b8-8f0a-8f142916249c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f36e406a-441a-4f4a-8752-a277b1959d0f.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485960111, + "firstHistogramAt": 1716485960111, + "lastCounterAt": 1716485969977, + "lastHistogramAt": 1716485969977, + "firstMetricAt": 1716485960111, + "lastMetricAt": 1716485969977, + "period": "1716485960000", + "summaries": { + "http.response_time": { + "min": 731, + "max": 1280, + "count": 61, + "mean": 834.3, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 1022.7, + "p95": 1107.9, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02b55a7e-0678-407b-9ba7-7de3d3b95d62": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11673, + "max": 12467.5, + "count": 31, + "mean": 11840.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 731, + "max": 1149, + "count": 30, + "mean": 801.6, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 871.5, + "p95": 889.1, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7da4cdab-ae96-47dd-a3d0-d5ca8f23e7e5": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2124f8b-1b7e-4b02-be53-d7f28753a2fe": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27c7cdbd-0050-4d5b-ae10-502303c4390d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/321cefaa-35ba-4299-bde1-e82c4b7d7f74": { + "min": 1280, + "max": 1280, + "count": 1, + "mean": 1280, + "p50": 1274.3, + "median": 1274.3, + "p75": 1274.3, + "p90": 1274.3, + "p95": 1274.3, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7239ca64-68b7-479c-b66d-1c4aa6101d15": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59614b76-8f3d-4150-8311-ab7b3fea55fd": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/052737f5-2a0b-4edc-86a5-c076a1d8ef64": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/395b07e7-3a5c-4c82-b19a-bbd16c1e54ba": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26ca7a88-61e9-4393-90da-1788b067513f": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00633c7e-7211-42ca-ab64-1accbe26966b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d69ba16d-7e4d-4bf6-8d09-a4935b2aa0ac": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/07c112fa-f625-46e3-b072-d6b25acefaf7": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3295a4f-0694-4cac-8be6-7418af1ac898": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/377712e6-a204-4efe-b90d-f01a5aa52483": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de17e8e-9949-4088-b96f-4e5bb1c940de": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a25d718-94db-485d-b353-04e1fb1c9c7d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00df482e-802b-43a6-8a63-209879088de4": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d853b44-3f76-4fdb-abcf-409fb0b9587b": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2099c8-95a8-45d9-912b-3f1029c90e9f": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/da83b475-8079-4e6a-b126-181a950df117": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4eeda210-6b89-4cf3-bdde-8653820f04d0": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c02bcef-9080-4035-86c7-1d9f8945fdb4": { + "min": 1038, + "max": 1038, + "count": 1, + "mean": 1038, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0ffb30d-340c-4d1f-85a9-a881337f4678": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cd1f52e-072e-436f-a660-fa815053241f": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65446a04-9ad7-40c2-bf13-d0df9f0abac9": { + "min": 1119, + "max": 1119, + "count": 1, + "mean": 1119, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b7274549-472a-4817-83e6-a0c39c39510b": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03ee2c93-b848-4eaa-88ee-3f9c11676f88": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2803a45-c563-402a-bbdd-010dbbe0edbf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d8269da-52e2-49b8-8f0a-8f142916249c": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f36e406a-441a-4f4a-8752-a277b1959d0f": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 731, + "max": 1280, + "count": 61, + "mean": 834.3, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 1022.7, + "p95": 1107.9, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/02b55a7e-0678-407b-9ba7-7de3d3b95d62": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11673, + "max": 12467.5, + "count": 31, + "mean": 11840.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 731, + "max": 1149, + "count": 30, + "mean": 801.6, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 871.5, + "p95": 889.1, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7da4cdab-ae96-47dd-a3d0-d5ca8f23e7e5": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2124f8b-1b7e-4b02-be53-d7f28753a2fe": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27c7cdbd-0050-4d5b-ae10-502303c4390d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/321cefaa-35ba-4299-bde1-e82c4b7d7f74": { + "min": 1280, + "max": 1280, + "count": 1, + "mean": 1280, + "p50": 1274.3, + "median": 1274.3, + "p75": 1274.3, + "p90": 1274.3, + "p95": 1274.3, + "p99": 1274.3, + "p999": 1274.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7239ca64-68b7-479c-b66d-1c4aa6101d15": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/59614b76-8f3d-4150-8311-ab7b3fea55fd": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/052737f5-2a0b-4edc-86a5-c076a1d8ef64": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/395b07e7-3a5c-4c82-b19a-bbd16c1e54ba": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26ca7a88-61e9-4393-90da-1788b067513f": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00633c7e-7211-42ca-ab64-1accbe26966b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d69ba16d-7e4d-4bf6-8d09-a4935b2aa0ac": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/07c112fa-f625-46e3-b072-d6b25acefaf7": { + "min": 1059, + "max": 1059, + "count": 1, + "mean": 1059, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3295a4f-0694-4cac-8be6-7418af1ac898": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/377712e6-a204-4efe-b90d-f01a5aa52483": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de17e8e-9949-4088-b96f-4e5bb1c940de": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a25d718-94db-485d-b353-04e1fb1c9c7d": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/00df482e-802b-43a6-8a63-209879088de4": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d853b44-3f76-4fdb-abcf-409fb0b9587b": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4f2099c8-95a8-45d9-912b-3f1029c90e9f": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/da83b475-8079-4e6a-b126-181a950df117": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4eeda210-6b89-4cf3-bdde-8653820f04d0": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c02bcef-9080-4035-86c7-1d9f8945fdb4": { + "min": 1038, + "max": 1038, + "count": 1, + "mean": 1038, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d0ffb30d-340c-4d1f-85a9-a881337f4678": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cd1f52e-072e-436f-a660-fa815053241f": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65446a04-9ad7-40c2-bf13-d0df9f0abac9": { + "min": 1119, + "max": 1119, + "count": 1, + "mean": 1119, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b7274549-472a-4817-83e6-a0c39c39510b": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03ee2c93-b848-4eaa-88ee-3f9c11676f88": { + "min": 1153, + "max": 1153, + "count": 1, + "mean": 1153, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e2803a45-c563-402a-bbdd-010dbbe0edbf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0d8269da-52e2-49b8-8f0a-8f142916249c": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f36e406a-441a-4f4a-8752-a277b1959d0f": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 60, + "http.responses": 60, + "plugins.metrics-by-endpoint./v0/crawl/status/9bc04a16-637f-40f2-aa28-0da6c9c6980e.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 30, + "http.requests": 60, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/7954d21b-3f2e-46ca-85bb-18f34287819c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1ffc5bf4-5145-4c91-bcce-9e441d4a5862.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/799fe4f5-5597-4983-935a-5d4526d2494e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7f256564-3840-4844-9012-3db055025911.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3cd83809-395d-43d4-bc9f-f56057ff0503.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c14cad48-71b6-4acf-897e-0bed6d3edaa2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6f3412d0-04f9-414a-9e4f-6447729ad1fb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6e2b3ead-33cc-47d3-b9a1-c02c21211d38.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3ea10be8-db75-4661-bf82-cc94b8828180.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e15aac0e-93dc-4957-a964-6fd3774fb452.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3bda564f-a1b2-4005-9e9c-01770295f620.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f4a33d6f-8f55-44c1-9458-df6ec6a4caf8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9faedf4-b696-40da-be0c-c8c34b75c232.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1881abcb-24ea-4b56-a88f-a202db58c0ef.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a036ad20-b013-40ba-8d84-d3c2511c3bb3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0ce162e0-7163-4f3c-a966-e096322ef6fc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ae28b25f-09ae-46ab-8854-a6ddc2d43d61.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0bea063f-c0f6-42b5-a87f-d9fddab88b1e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b0180bcf-9faf-4e4b-91f3-091b5d85be86.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0a675b7-df21-4858-b981-afc1a7d19197.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/267e18b0-6a06-40fa-8b2b-2356379ba2a3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6cdabb57-5a52-4981-a9a5-1bc33543508b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4428a78-050b-41b4-9c41-43cdec803287.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb100c9f-e893-4a95-9ce5-e8c857dd5fd5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c950336d-5cbe-4c4c-b4fa-e6ca3e60f3ba.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc3a6d1b-c154-4a5a-9938-0a3539fbc4a9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e1e8c368-c9a1-49d9-b390-201c5d86a0e6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/df14aa0e-7357-48fb-8336-cff10b69814f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f60162c7-72d5-4e1f-a62e-eb9db6355059.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485970558, + "firstHistogramAt": 1716485970558, + "lastCounterAt": 1716485979980, + "lastHistogramAt": 1716485979763, + "firstMetricAt": 1716485970558, + "lastMetricAt": 1716485979980, + "period": "1716485970000", + "summaries": { + "http.response_time": { + "min": 744, + "max": 1115, + "count": 60, + "mean": 813.2, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 854.2, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9bc04a16-637f-40f2-aa28-0da6c9c6980e": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "vusers.session_length": { + "min": 11640.2, + "max": 12054.3, + "count": 30, + "mean": 11752.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 744, + "max": 1018, + "count": 30, + "mean": 803.2, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 854.2, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7954d21b-3f2e-46ca-85bb-18f34287819c": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ffc5bf4-5145-4c91-bcce-9e441d4a5862": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/799fe4f5-5597-4983-935a-5d4526d2494e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f256564-3840-4844-9012-3db055025911": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3cd83809-395d-43d4-bc9f-f56057ff0503": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c14cad48-71b6-4acf-897e-0bed6d3edaa2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f3412d0-04f9-414a-9e4f-6447729ad1fb": { + "min": 1115, + "max": 1115, + "count": 1, + "mean": 1115, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e2b3ead-33cc-47d3-b9a1-c02c21211d38": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ea10be8-db75-4661-bf82-cc94b8828180": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e15aac0e-93dc-4957-a964-6fd3774fb452": { + "min": 854, + "max": 854, + "count": 1, + "mean": 854, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3bda564f-a1b2-4005-9e9c-01770295f620": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4a33d6f-8f55-44c1-9458-df6ec6a4caf8": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9faedf4-b696-40da-be0c-c8c34b75c232": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1881abcb-24ea-4b56-a88f-a202db58c0ef": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a036ad20-b013-40ba-8d84-d3c2511c3bb3": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce162e0-7163-4f3c-a966-e096322ef6fc": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae28b25f-09ae-46ab-8854-a6ddc2d43d61": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bea063f-c0f6-42b5-a87f-d9fddab88b1e": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0180bcf-9faf-4e4b-91f3-091b5d85be86": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0a675b7-df21-4858-b981-afc1a7d19197": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/267e18b0-6a06-40fa-8b2b-2356379ba2a3": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cdabb57-5a52-4981-a9a5-1bc33543508b": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4428a78-050b-41b4-9c41-43cdec803287": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb100c9f-e893-4a95-9ce5-e8c857dd5fd5": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c950336d-5cbe-4c4c-b4fa-e6ca3e60f3ba": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc3a6d1b-c154-4a5a-9938-0a3539fbc4a9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1e8c368-c9a1-49d9-b390-201c5d86a0e6": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df14aa0e-7357-48fb-8336-cff10b69814f": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f60162c7-72d5-4e1f-a62e-eb9db6355059": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 744, + "max": 1115, + "count": 60, + "mean": 813.2, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 854.2, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9bc04a16-637f-40f2-aa28-0da6c9c6980e": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "vusers.session_length": { + "min": 11640.2, + "max": 12054.3, + "count": 30, + "mean": 11752.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 744, + "max": 1018, + "count": 30, + "mean": 803.2, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 854.2, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7954d21b-3f2e-46ca-85bb-18f34287819c": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1ffc5bf4-5145-4c91-bcce-9e441d4a5862": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/799fe4f5-5597-4983-935a-5d4526d2494e": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7f256564-3840-4844-9012-3db055025911": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3cd83809-395d-43d4-bc9f-f56057ff0503": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c14cad48-71b6-4acf-897e-0bed6d3edaa2": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f3412d0-04f9-414a-9e4f-6447729ad1fb": { + "min": 1115, + "max": 1115, + "count": 1, + "mean": 1115, + "p50": 1107.9, + "median": 1107.9, + "p75": 1107.9, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e2b3ead-33cc-47d3-b9a1-c02c21211d38": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ea10be8-db75-4661-bf82-cc94b8828180": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e15aac0e-93dc-4957-a964-6fd3774fb452": { + "min": 854, + "max": 854, + "count": 1, + "mean": 854, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3bda564f-a1b2-4005-9e9c-01770295f620": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4a33d6f-8f55-44c1-9458-df6ec6a4caf8": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9faedf4-b696-40da-be0c-c8c34b75c232": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1881abcb-24ea-4b56-a88f-a202db58c0ef": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a036ad20-b013-40ba-8d84-d3c2511c3bb3": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ce162e0-7163-4f3c-a966-e096322ef6fc": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae28b25f-09ae-46ab-8854-a6ddc2d43d61": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0bea063f-c0f6-42b5-a87f-d9fddab88b1e": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0180bcf-9faf-4e4b-91f3-091b5d85be86": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0a675b7-df21-4858-b981-afc1a7d19197": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/267e18b0-6a06-40fa-8b2b-2356379ba2a3": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6cdabb57-5a52-4981-a9a5-1bc33543508b": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4428a78-050b-41b4-9c41-43cdec803287": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb100c9f-e893-4a95-9ce5-e8c857dd5fd5": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c950336d-5cbe-4c4c-b4fa-e6ca3e60f3ba": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc3a6d1b-c154-4a5a-9938-0a3539fbc4a9": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e1e8c368-c9a1-49d9-b390-201c5d86a0e6": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df14aa0e-7357-48fb-8336-cff10b69814f": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f60162c7-72d5-4e1f-a62e-eb9db6355059": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 59, + "http.responses": 59, + "plugins.metrics-by-endpoint./v0/crawl/status/66d776ea-87c2-422e-90bb-fda9f7e2411c.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 29, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/d291094b-6f52-42be-853e-b42f5234a687.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef422163-4912-4a9f-a890-fea79d3765fd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a9e8333-6eed-476b-b0f1-f43ba97fc5d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/acfe8ab0-354b-4236-9c17-d47278576e11.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9b51b75e-848e-4c1b-a4dd-25b3ac619ea8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3c8cd3af-cc8b-48af-a22a-d37591f8e03c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fa3e0b2-0766-4929-b587-62a1e537ca5e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6e8f1300-1281-41b9-a5c4-fd7d00bc3385.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ba6af3e6-0e24-43a3-bd22-bb9eb4019718.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fdcd2041-e2e7-42a7-bec8-5befb6249361.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d725da29-e71a-416a-b0c7-0ed8f81aac77.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1315fc7d-bee5-4348-b4d9-220355ac18a4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78b2c1e0-19a0-4323-80bc-c58fb2796b68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7905c905-a805-4434-8c90-93004d2153d0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a12019ea-3a9b-4462-a16f-aed71ca706f0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/629df295-2a7c-48b1-b2cd-a41a7c24c3eb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f9aba73e-4288-46ec-a383-f3b82c6f59f8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f54a44f7-cc32-4b33-a53e-c886c95f3bd5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5bd68dc4-625f-4211-89be-c467ea676112.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7e798640-e809-40e0-b067-33099c1344f1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1f556f8a-55c0-4011-8aee-748104123588.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ffcfe519-82a7-4f6c-be23-86be780cb784.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fd1eaa9d-0460-467d-a525-045e26bd8faf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/33ec1a4f-b22c-4f89-aa3d-27c31ce41340.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dc2a2124-17ce-441b-a7c8-f221b6a0e948.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/123809de-1d52-40da-82fc-5f00e71d1274.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c7add20a-6bef-4aa7-9061-3b76e70adfcc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6f2499d4-8e2f-4a36-9e7f-c18b7986dcaa.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485980514, + "firstHistogramAt": 1716485980514, + "lastCounterAt": 1716485989986, + "lastHistogramAt": 1716485989986, + "firstMetricAt": 1716485980514, + "lastMetricAt": 1716485989986, + "period": "1716485980000", + "summaries": { + "http.response_time": { + "min": 734, + "max": 1468, + "count": 59, + "mean": 830.7, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 963.1, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/66d776ea-87c2-422e-90bb-fda9f7e2411c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11670.7, + "max": 11997.4, + "count": 29, + "mean": 11773.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 734, + "max": 1468, + "count": 30, + "mean": 826.6, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 889.1, + "p95": 982.6, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d291094b-6f52-42be-853e-b42f5234a687": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef422163-4912-4a9f-a890-fea79d3765fd": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a9e8333-6eed-476b-b0f1-f43ba97fc5d0": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/acfe8ab0-354b-4236-9c17-d47278576e11": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9b51b75e-848e-4c1b-a4dd-25b3ac619ea8": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c8cd3af-cc8b-48af-a22a-d37591f8e03c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa3e0b2-0766-4929-b587-62a1e537ca5e": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e8f1300-1281-41b9-a5c4-fd7d00bc3385": { + "min": 963, + "max": 963, + "count": 1, + "mean": 963, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba6af3e6-0e24-43a3-bd22-bb9eb4019718": { + "min": 1047, + "max": 1047, + "count": 1, + "mean": 1047, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdcd2041-e2e7-42a7-bec8-5befb6249361": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d725da29-e71a-416a-b0c7-0ed8f81aac77": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1315fc7d-bee5-4348-b4d9-220355ac18a4": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78b2c1e0-19a0-4323-80bc-c58fb2796b68": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7905c905-a805-4434-8c90-93004d2153d0": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a12019ea-3a9b-4462-a16f-aed71ca706f0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/629df295-2a7c-48b1-b2cd-a41a7c24c3eb": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9aba73e-4288-46ec-a383-f3b82c6f59f8": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f54a44f7-cc32-4b33-a53e-c886c95f3bd5": { + "min": 829, + "max": 829, + "count": 1, + "mean": 829, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bd68dc4-625f-4211-89be-c467ea676112": { + "min": 863, + "max": 863, + "count": 1, + "mean": 863, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e798640-e809-40e0-b067-33099c1344f1": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1f556f8a-55c0-4011-8aee-748104123588": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffcfe519-82a7-4f6c-be23-86be780cb784": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd1eaa9d-0460-467d-a525-045e26bd8faf": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33ec1a4f-b22c-4f89-aa3d-27c31ce41340": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dc2a2124-17ce-441b-a7c8-f221b6a0e948": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123809de-1d52-40da-82fc-5f00e71d1274": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7add20a-6bef-4aa7-9061-3b76e70adfcc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f2499d4-8e2f-4a36-9e7f-c18b7986dcaa": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + } + }, + "histograms": { + "http.response_time": { + "min": 734, + "max": 1468, + "count": 59, + "mean": 830.7, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 963.1, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/66d776ea-87c2-422e-90bb-fda9f7e2411c": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11670.7, + "max": 11997.4, + "count": 29, + "mean": 11773.1, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 734, + "max": 1468, + "count": 30, + "mean": 826.6, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 889.1, + "p95": 982.6, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d291094b-6f52-42be-853e-b42f5234a687": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef422163-4912-4a9f-a890-fea79d3765fd": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a9e8333-6eed-476b-b0f1-f43ba97fc5d0": { + "min": 900, + "max": 900, + "count": 1, + "mean": 900, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/acfe8ab0-354b-4236-9c17-d47278576e11": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9b51b75e-848e-4c1b-a4dd-25b3ac619ea8": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3c8cd3af-cc8b-48af-a22a-d37591f8e03c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa3e0b2-0766-4929-b587-62a1e537ca5e": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6e8f1300-1281-41b9-a5c4-fd7d00bc3385": { + "min": 963, + "max": 963, + "count": 1, + "mean": 963, + "p50": 963.1, + "median": 963.1, + "p75": 963.1, + "p90": 963.1, + "p95": 963.1, + "p99": 963.1, + "p999": 963.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba6af3e6-0e24-43a3-bd22-bb9eb4019718": { + "min": 1047, + "max": 1047, + "count": 1, + "mean": 1047, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fdcd2041-e2e7-42a7-bec8-5befb6249361": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d725da29-e71a-416a-b0c7-0ed8f81aac77": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1315fc7d-bee5-4348-b4d9-220355ac18a4": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78b2c1e0-19a0-4323-80bc-c58fb2796b68": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7905c905-a805-4434-8c90-93004d2153d0": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a12019ea-3a9b-4462-a16f-aed71ca706f0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/629df295-2a7c-48b1-b2cd-a41a7c24c3eb": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f9aba73e-4288-46ec-a383-f3b82c6f59f8": { + "min": 1034, + "max": 1034, + "count": 1, + "mean": 1034, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f54a44f7-cc32-4b33-a53e-c886c95f3bd5": { + "min": 829, + "max": 829, + "count": 1, + "mean": 829, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bd68dc4-625f-4211-89be-c467ea676112": { + "min": 863, + "max": 863, + "count": 1, + "mean": 863, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7e798640-e809-40e0-b067-33099c1344f1": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1f556f8a-55c0-4011-8aee-748104123588": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffcfe519-82a7-4f6c-be23-86be780cb784": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd1eaa9d-0460-467d-a525-045e26bd8faf": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33ec1a4f-b22c-4f89-aa3d-27c31ce41340": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dc2a2124-17ce-441b-a7c8-f221b6a0e948": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/123809de-1d52-40da-82fc-5f00e71d1274": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c7add20a-6bef-4aa7-9061-3b76e70adfcc": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6f2499d4-8e2f-4a36-9e7f-c18b7986dcaa": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + } + } + }, + { + "counters": { + "http.codes.200": 61, + "http.responses": 61, + "plugins.metrics-by-endpoint./v0/crawl/status/be922f89-3da0-4cf2-ad29-aa6f4744328c.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 31, + "http.requests": 60, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/404dc307-aea5-441b-87ef-ade457c75a4e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e8a86a05-f686-45b4-bcda-56e67452d67f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ee7a22c9-0574-4f17-be4e-476efa7011be.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5269cd93-9757-43a7-860d-0e82b1b70ef3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0916824c-adc8-40d5-8614-f4c587c840b4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa6773d0-054d-488f-a30f-ff8e6cf5e7fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a6e93156-5c27-4674-9bc8-3e07ae36e6a9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d905de4a-32b4-4b29-b6d7-50ddc66b5062.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/58b34bf3-aa7a-45d7-b299-42a63311385d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2151da93-b0b9-42f7-b063-76f316b581e4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/22840379-ea26-4966-8554-ae3b83b01cd9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f30e9f1-4540-41cb-b296-ff8c487839e3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4efead97-8657-4112-94b8-8c586196db3b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a8ab234-6d84-427a-ad97-d74d9c343300.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b25b5bce-7db6-4455-ab50-b34bfe39800b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bfd8a9a8-a433-4b85-b519-aff3a99a98be.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/087ff98c-6a00-4012-a802-568a8e9c1892.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9dd6439b-2e12-4f6f-892a-8bfadf8184ea.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e4b4f4a2-8c2c-4c3f-8ee4-e0b8d0d7bcb0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5206ca6e-b743-43a1-935b-fd4205fd5b1b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/202a26b6-32ff-452e-b3e1-a1e44be1d3a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5373e3ab-e784-4219-b2c5-1a8c974fae1c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f916881f-a6bf-4923-9cc1-ff333dcc3428.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/06cf17a2-0f5c-4160-a730-eebcd4ec147f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/32c4bed9-ad1e-4e5d-9a95-626766ddd16c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9d44106d-10cd-4b72-8773-a5fda6f02856.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/12d887cc-54fe-44b2-a7b3-51711141b198.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/31037bd0-96db-48f5-9e5a-026f0b4013fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e7e43fe-0ebc-4c79-a5d1-98037f30cf52.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/73431451-5a1c-40fc-9a22-ae3ea201320e.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716485990199, + "firstHistogramAt": 1716485990199, + "lastCounterAt": 1716485999990, + "lastHistogramAt": 1716485999760, + "firstMetricAt": 1716485990199, + "lastMetricAt": 1716485999990, + "period": "1716485990000", + "summaries": { + "http.response_time": { + "min": 741, + "max": 1545, + "count": 61, + "mean": 861.2, + "p50": 804.5, + "median": 804.5, + "p75": 871.5, + "p90": 1022.7, + "p95": 1130.2, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be922f89-3da0-4cf2-ad29-aa6f4744328c": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11659, + "max": 12623.7, + "count": 31, + "mean": 11831.3, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 741, + "max": 1545, + "count": 30, + "mean": 855.5, + "p50": 788.5, + "median": 788.5, + "p75": 871.5, + "p90": 1002.4, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/404dc307-aea5-441b-87ef-ade457c75a4e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8a86a05-f686-45b4-bcda-56e67452d67f": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee7a22c9-0574-4f17-be4e-476efa7011be": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5269cd93-9757-43a7-860d-0e82b1b70ef3": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0916824c-adc8-40d5-8614-f4c587c840b4": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa6773d0-054d-488f-a30f-ff8e6cf5e7fa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6e93156-5c27-4674-9bc8-3e07ae36e6a9": { + "min": 824, + "max": 824, + "count": 1, + "mean": 824, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d905de4a-32b4-4b29-b6d7-50ddc66b5062": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58b34bf3-aa7a-45d7-b299-42a63311385d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2151da93-b0b9-42f7-b063-76f316b581e4": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/22840379-ea26-4966-8554-ae3b83b01cd9": { + "min": 931, + "max": 931, + "count": 1, + "mean": 931, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f30e9f1-4540-41cb-b296-ff8c487839e3": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4efead97-8657-4112-94b8-8c586196db3b": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a8ab234-6d84-427a-ad97-d74d9c343300": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b25b5bce-7db6-4455-ab50-b34bfe39800b": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfd8a9a8-a433-4b85-b519-aff3a99a98be": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/087ff98c-6a00-4012-a802-568a8e9c1892": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dd6439b-2e12-4f6f-892a-8bfadf8184ea": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4b4f4a2-8c2c-4c3f-8ee4-e0b8d0d7bcb0": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5206ca6e-b743-43a1-935b-fd4205fd5b1b": { + "min": 1302, + "max": 1302, + "count": 1, + "mean": 1302, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/202a26b6-32ff-452e-b3e1-a1e44be1d3a1": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5373e3ab-e784-4219-b2c5-1a8c974fae1c": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f916881f-a6bf-4923-9cc1-ff333dcc3428": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06cf17a2-0f5c-4160-a730-eebcd4ec147f": { + "min": 1227, + "max": 1227, + "count": 1, + "mean": 1227, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32c4bed9-ad1e-4e5d-9a95-626766ddd16c": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d44106d-10cd-4b72-8773-a5fda6f02856": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12d887cc-54fe-44b2-a7b3-51711141b198": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31037bd0-96db-48f5-9e5a-026f0b4013fa": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e7e43fe-0ebc-4c79-a5d1-98037f30cf52": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73431451-5a1c-40fc-9a22-ae3ea201320e": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + } + }, + "histograms": { + "http.response_time": { + "min": 741, + "max": 1545, + "count": 61, + "mean": 861.2, + "p50": 804.5, + "median": 804.5, + "p75": 871.5, + "p90": 1022.7, + "p95": 1130.2, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/be922f89-3da0-4cf2-ad29-aa6f4744328c": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11659, + "max": 12623.7, + "count": 31, + "mean": 11831.3, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 741, + "max": 1545, + "count": 30, + "mean": 855.5, + "p50": 788.5, + "median": 788.5, + "p75": 871.5, + "p90": 1002.4, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/404dc307-aea5-441b-87ef-ade457c75a4e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e8a86a05-f686-45b4-bcda-56e67452d67f": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee7a22c9-0574-4f17-be4e-476efa7011be": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5269cd93-9757-43a7-860d-0e82b1b70ef3": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0916824c-adc8-40d5-8614-f4c587c840b4": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa6773d0-054d-488f-a30f-ff8e6cf5e7fa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a6e93156-5c27-4674-9bc8-3e07ae36e6a9": { + "min": 824, + "max": 824, + "count": 1, + "mean": 824, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d905de4a-32b4-4b29-b6d7-50ddc66b5062": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/58b34bf3-aa7a-45d7-b299-42a63311385d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2151da93-b0b9-42f7-b063-76f316b581e4": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/22840379-ea26-4966-8554-ae3b83b01cd9": { + "min": 931, + "max": 931, + "count": 1, + "mean": 931, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f30e9f1-4540-41cb-b296-ff8c487839e3": { + "min": 860, + "max": 860, + "count": 1, + "mean": 860, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4efead97-8657-4112-94b8-8c586196db3b": { + "min": 1029, + "max": 1029, + "count": 1, + "mean": 1029, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a8ab234-6d84-427a-ad97-d74d9c343300": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b25b5bce-7db6-4455-ab50-b34bfe39800b": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfd8a9a8-a433-4b85-b519-aff3a99a98be": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/087ff98c-6a00-4012-a802-568a8e9c1892": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dd6439b-2e12-4f6f-892a-8bfadf8184ea": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e4b4f4a2-8c2c-4c3f-8ee4-e0b8d0d7bcb0": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5206ca6e-b743-43a1-935b-fd4205fd5b1b": { + "min": 1302, + "max": 1302, + "count": 1, + "mean": 1302, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/202a26b6-32ff-452e-b3e1-a1e44be1d3a1": { + "min": 896, + "max": 896, + "count": 1, + "mean": 896, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5373e3ab-e784-4219-b2c5-1a8c974fae1c": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f916881f-a6bf-4923-9cc1-ff333dcc3428": { + "min": 939, + "max": 939, + "count": 1, + "mean": 939, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06cf17a2-0f5c-4160-a730-eebcd4ec147f": { + "min": 1227, + "max": 1227, + "count": 1, + "mean": 1227, + "p50": 1224.4, + "median": 1224.4, + "p75": 1224.4, + "p90": 1224.4, + "p95": 1224.4, + "p99": 1224.4, + "p999": 1224.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/32c4bed9-ad1e-4e5d-9a95-626766ddd16c": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9d44106d-10cd-4b72-8773-a5fda6f02856": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/12d887cc-54fe-44b2-a7b3-51711141b198": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/31037bd0-96db-48f5-9e5a-026f0b4013fa": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e7e43fe-0ebc-4c79-a5d1-98037f30cf52": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/73431451-5a1c-40fc-9a22-ae3ea201320e": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + } + } + }, + { + "counters": { + "http.codes.200": 60, + "http.responses": 60, + "plugins.metrics-by-endpoint./v0/crawl/status/94c9d03f-91b6-4f43-8dcb-3e72f130939c.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 30, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/52b7fbec-ad52-43f2-b572-19ba4a5fe6d3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/19fd0be0-b2b9-4d9f-b9fd-a7939877d783.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3036ce0a-029a-43eb-8551-7ebadc85327b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bca32515-7d62-4a4f-9466-58eaaff62bfe.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb120302-ae1b-4011-b4e6-87f6daaac0b7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28b4e836-2467-4b46-8bca-aa5e8567b332.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2f880203-8840-4853-a310-29738b4f23f3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/849f7e71-8ce1-483b-aca0-9c7aa087fe07.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e5a01c72-78e9-470d-886e-94205307e3ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0b11e51-f0a5-4d9d-9edf-721d75406056.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7aac1784-631c-43df-923c-6bcf76bf5bf4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cb613959-b868-46f9-a51f-1cad2bb6b259.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ef3f239b-6e05-438d-aebc-f70e3e51ab36.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c615e9a1-2c33-46d3-9d66-59b17290e75d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6943dd72-0cc7-41bb-b3de-5f39d6cda371.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/65c4966f-e3c6-4434-a59b-ceb61bc6e38a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6507894d-28d7-40a5-8e3b-44708d7adec6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b0f4e771-6187-4ea8-b509-076c65582c87.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f52cf4d-8f08-4182-9af0-92b0b977985b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a07da492-f6aa-4fbf-a0ed-3924091e167f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bde5bacc-f00e-4971-9894-ef1e88739b95.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cc6048f7-c66d-4b3e-88ec-968e90d7a3c7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a7822d94-872b-4c9f-b17b-0d9554b47b4f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/85e2f72b-39ec-4ec7-b597-c7d38116bd05.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03cda3a5-759a-46c8-911d-9b611bf04023.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8f760880-f902-4ec4-a006-4494218fda39.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f18b2c8f-9106-4d50-9171-d58feda61915.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b636a39e-5831-4258-841c-4d92c9758d68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/673bda91-ecba-440b-b234-7fd48a72254c.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486000558, + "firstHistogramAt": 1716486000558, + "lastCounterAt": 1716486009960, + "lastHistogramAt": 1716486009960, + "firstMetricAt": 1716486000558, + "lastMetricAt": 1716486009960, + "period": "1716486000000", + "summaries": { + "http.response_time": { + "min": 753, + "max": 1288, + "count": 60, + "mean": 855.7, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94c9d03f-91b6-4f43-8dcb-3e72f130939c": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11679.9, + "max": 12645.1, + "count": 30, + "mean": 11866.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 753, + "max": 1150, + "count": 30, + "mean": 847.5, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/52b7fbec-ad52-43f2-b572-19ba4a5fe6d3": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19fd0be0-b2b9-4d9f-b9fd-a7939877d783": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3036ce0a-029a-43eb-8551-7ebadc85327b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca32515-7d62-4a4f-9466-58eaaff62bfe": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb120302-ae1b-4011-b4e6-87f6daaac0b7": { + "min": 1288, + "max": 1288, + "count": 1, + "mean": 1288, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4e836-2467-4b46-8bca-aa5e8567b332": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f880203-8840-4853-a310-29738b4f23f3": { + "min": 840, + "max": 840, + "count": 1, + "mean": 840, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/849f7e71-8ce1-483b-aca0-9c7aa087fe07": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5a01c72-78e9-470d-886e-94205307e3ed": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0b11e51-f0a5-4d9d-9edf-721d75406056": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7aac1784-631c-43df-923c-6bcf76bf5bf4": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb613959-b868-46f9-a51f-1cad2bb6b259": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef3f239b-6e05-438d-aebc-f70e3e51ab36": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c615e9a1-2c33-46d3-9d66-59b17290e75d": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6943dd72-0cc7-41bb-b3de-5f39d6cda371": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65c4966f-e3c6-4434-a59b-ceb61bc6e38a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6507894d-28d7-40a5-8e3b-44708d7adec6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0f4e771-6187-4ea8-b509-076c65582c87": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f52cf4d-8f08-4182-9af0-92b0b977985b": { + "min": 1005, + "max": 1005, + "count": 1, + "mean": 1005, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a07da492-f6aa-4fbf-a0ed-3924091e167f": { + "min": 1128, + "max": 1128, + "count": 1, + "mean": 1128, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bde5bacc-f00e-4971-9894-ef1e88739b95": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc6048f7-c66d-4b3e-88ec-968e90d7a3c7": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7822d94-872b-4c9f-b17b-0d9554b47b4f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85e2f72b-39ec-4ec7-b597-c7d38116bd05": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cda3a5-759a-46c8-911d-9b611bf04023": { + "min": 862, + "max": 862, + "count": 1, + "mean": 862, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f760880-f902-4ec4-a006-4494218fda39": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18b2c8f-9106-4d50-9171-d58feda61915": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b636a39e-5831-4258-841c-4d92c9758d68": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/673bda91-ecba-440b-b234-7fd48a72254c": { + "min": 993, + "max": 993, + "count": 1, + "mean": 993, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + } + }, + "histograms": { + "http.response_time": { + "min": 753, + "max": 1288, + "count": 60, + "mean": 855.7, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/94c9d03f-91b6-4f43-8dcb-3e72f130939c": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11679.9, + "max": 12645.1, + "count": 30, + "mean": 11866.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 753, + "max": 1150, + "count": 30, + "mean": 847.5, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/52b7fbec-ad52-43f2-b572-19ba4a5fe6d3": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/19fd0be0-b2b9-4d9f-b9fd-a7939877d783": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3036ce0a-029a-43eb-8551-7ebadc85327b": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bca32515-7d62-4a4f-9466-58eaaff62bfe": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb120302-ae1b-4011-b4e6-87f6daaac0b7": { + "min": 1288, + "max": 1288, + "count": 1, + "mean": 1288, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4e836-2467-4b46-8bca-aa5e8567b332": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2f880203-8840-4853-a310-29738b4f23f3": { + "min": 840, + "max": 840, + "count": 1, + "mean": 840, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/849f7e71-8ce1-483b-aca0-9c7aa087fe07": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5a01c72-78e9-470d-886e-94205307e3ed": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0b11e51-f0a5-4d9d-9edf-721d75406056": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7aac1784-631c-43df-923c-6bcf76bf5bf4": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cb613959-b868-46f9-a51f-1cad2bb6b259": { + "min": 816, + "max": 816, + "count": 1, + "mean": 816, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ef3f239b-6e05-438d-aebc-f70e3e51ab36": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c615e9a1-2c33-46d3-9d66-59b17290e75d": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6943dd72-0cc7-41bb-b3de-5f39d6cda371": { + "min": 1039, + "max": 1039, + "count": 1, + "mean": 1039, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/65c4966f-e3c6-4434-a59b-ceb61bc6e38a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6507894d-28d7-40a5-8e3b-44708d7adec6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b0f4e771-6187-4ea8-b509-076c65582c87": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f52cf4d-8f08-4182-9af0-92b0b977985b": { + "min": 1005, + "max": 1005, + "count": 1, + "mean": 1005, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a07da492-f6aa-4fbf-a0ed-3924091e167f": { + "min": 1128, + "max": 1128, + "count": 1, + "mean": 1128, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bde5bacc-f00e-4971-9894-ef1e88739b95": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc6048f7-c66d-4b3e-88ec-968e90d7a3c7": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7822d94-872b-4c9f-b17b-0d9554b47b4f": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85e2f72b-39ec-4ec7-b597-c7d38116bd05": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03cda3a5-759a-46c8-911d-9b611bf04023": { + "min": 862, + "max": 862, + "count": 1, + "mean": 862, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8f760880-f902-4ec4-a006-4494218fda39": { + "min": 1033, + "max": 1033, + "count": 1, + "mean": 1033, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f18b2c8f-9106-4d50-9171-d58feda61915": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b636a39e-5831-4258-841c-4d92c9758d68": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/673bda91-ecba-440b-b234-7fd48a72254c": { + "min": 993, + "max": 993, + "count": 1, + "mean": 993, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + } + } + }, + { + "counters": { + "http.codes.200": 60, + "http.responses": 60, + "plugins.metrics-by-endpoint./v0/crawl/status/cedac658-4407-46cc-b83c-acea3ffa6976.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 30, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/928dc2f1-df9d-45c8-b2d9-d002e43ea7e0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/728370f2-bdf8-4813-ac62-5c2086efea56.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f59c0080-3bef-48d0-9b57-0562d9bd3aee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/eb8b0da1-045b-41f7-8005-ea013893d31d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e5025220-5bde-427f-a4bc-a95251990af6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7fd7562e-c513-432d-9c21-83be4d070d94.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c83c9646-ccbe-4aca-a279-b2557c23e072.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/44704b58-2e51-48a4-b8fa-9bcbcc91d11a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/15cee875-38f3-4963-86e3-d71d420932a7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bfaef76c-af82-4709-b74e-5fb596b0cb9c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/de7b651f-492f-47a2-982f-619e26eb882f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dab71ca1-f7aa-42b7-95e4-0bdebe8001a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1de8dc75-7bfd-46b3-a8e9-33ad27b8801e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c0fb54f2-0569-4095-abd5-24b3e15cdab0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b2272118-50ee-4901-8243-2e8ff4f79d94.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0b63ff50-e4ab-4de3-bb50-818fd96dc55b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1791c96a-e71d-4d7c-8622-0efcacb4d3eb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cd1c80da-6b6d-4c22-84e8-fe6bfc815f86.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28b4c7db-1e91-4a62-aa37-a735bb24a4c7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fbc85568-5c7b-4e85-9c9a-c9562d0acdb7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ed5c7e73-6eea-4df4-9364-8e128242eb1e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8a0f54ba-1f09-402b-8a54-f682c51eb68b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7d14d214-3419-453b-8d90-96ba637eea3d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/584a05fb-af4f-4ba9-8dfd-c06c716bf5c0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7c6a99ed-80c6-417c-afe9-17a12d1c021e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28482f2b-7608-40c5-b145-b0f806e55cff.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/25183d7a-c865-4fd5-84ff-2abe71cd2a34.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1d83e40b-6a83-440e-8cd2-95eec3b35cc6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/05f53476-c49b-486a-86d7-9616353158fc.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486010542, + "firstHistogramAt": 1716486010542, + "lastCounterAt": 1716486019937, + "lastHistogramAt": 1716486019762, + "firstMetricAt": 1716486010542, + "lastMetricAt": 1716486019937, + "period": "1716486010000", + "summaries": { + "http.response_time": { + "min": 747, + "max": 1356, + "count": 60, + "mean": 840, + "p50": 804.5, + "median": 804.5, + "p75": 837.3, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cedac658-4407-46cc-b83c-acea3ffa6976": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11661.6, + "max": 12633.3, + "count": 30, + "mean": 11826.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 747, + "max": 1066, + "count": 30, + "mean": 824.3, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 1002.4, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/928dc2f1-df9d-45c8-b2d9-d002e43ea7e0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/728370f2-bdf8-4813-ac62-5c2086efea56": { + "min": 1053, + "max": 1053, + "count": 1, + "mean": 1053, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f59c0080-3bef-48d0-9b57-0562d9bd3aee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb8b0da1-045b-41f7-8005-ea013893d31d": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5025220-5bde-427f-a4bc-a95251990af6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fd7562e-c513-432d-9c21-83be4d070d94": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c83c9646-ccbe-4aca-a279-b2557c23e072": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44704b58-2e51-48a4-b8fa-9bcbcc91d11a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15cee875-38f3-4963-86e3-d71d420932a7": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfaef76c-af82-4709-b74e-5fb596b0cb9c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/de7b651f-492f-47a2-982f-619e26eb882f": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dab71ca1-f7aa-42b7-95e4-0bdebe8001a1": { + "min": 1072, + "max": 1072, + "count": 1, + "mean": 1072, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de8dc75-7bfd-46b3-a8e9-33ad27b8801e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0fb54f2-0569-4095-abd5-24b3e15cdab0": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b2272118-50ee-4901-8243-2e8ff4f79d94": { + "min": 834, + "max": 834, + "count": 1, + "mean": 834, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b63ff50-e4ab-4de3-bb50-818fd96dc55b": { + "min": 1067, + "max": 1067, + "count": 1, + "mean": 1067, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1791c96a-e71d-4d7c-8622-0efcacb4d3eb": { + "min": 1356, + "max": 1356, + "count": 1, + "mean": 1356, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd1c80da-6b6d-4c22-84e8-fe6bfc815f86": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4c7db-1e91-4a62-aa37-a735bb24a4c7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbc85568-5c7b-4e85-9c9a-c9562d0acdb7": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed5c7e73-6eea-4df4-9364-8e128242eb1e": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a0f54ba-1f09-402b-8a54-f682c51eb68b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d14d214-3419-453b-8d90-96ba637eea3d": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/584a05fb-af4f-4ba9-8dfd-c06c716bf5c0": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c6a99ed-80c6-417c-afe9-17a12d1c021e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28482f2b-7608-40c5-b145-b0f806e55cff": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25183d7a-c865-4fd5-84ff-2abe71cd2a34": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d83e40b-6a83-440e-8cd2-95eec3b35cc6": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05f53476-c49b-486a-86d7-9616353158fc": { + "min": 772, + "max": 772, + "count": 1, + "mean": 772, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + } + }, + "histograms": { + "http.response_time": { + "min": 747, + "max": 1356, + "count": 60, + "mean": 840, + "p50": 804.5, + "median": 804.5, + "p75": 837.3, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cedac658-4407-46cc-b83c-acea3ffa6976": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11661.6, + "max": 12633.3, + "count": 30, + "mean": 11826.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 747, + "max": 1066, + "count": 30, + "mean": 824.3, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 1002.4, + "p95": 1022.7, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/928dc2f1-df9d-45c8-b2d9-d002e43ea7e0": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/728370f2-bdf8-4813-ac62-5c2086efea56": { + "min": 1053, + "max": 1053, + "count": 1, + "mean": 1053, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f59c0080-3bef-48d0-9b57-0562d9bd3aee": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/eb8b0da1-045b-41f7-8005-ea013893d31d": { + "min": 864, + "max": 864, + "count": 1, + "mean": 864, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e5025220-5bde-427f-a4bc-a95251990af6": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fd7562e-c513-432d-9c21-83be4d070d94": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c83c9646-ccbe-4aca-a279-b2557c23e072": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/44704b58-2e51-48a4-b8fa-9bcbcc91d11a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15cee875-38f3-4963-86e3-d71d420932a7": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfaef76c-af82-4709-b74e-5fb596b0cb9c": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/de7b651f-492f-47a2-982f-619e26eb882f": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dab71ca1-f7aa-42b7-95e4-0bdebe8001a1": { + "min": 1072, + "max": 1072, + "count": 1, + "mean": 1072, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1de8dc75-7bfd-46b3-a8e9-33ad27b8801e": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c0fb54f2-0569-4095-abd5-24b3e15cdab0": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b2272118-50ee-4901-8243-2e8ff4f79d94": { + "min": 834, + "max": 834, + "count": 1, + "mean": 834, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b63ff50-e4ab-4de3-bb50-818fd96dc55b": { + "min": 1067, + "max": 1067, + "count": 1, + "mean": 1067, + "p50": 1064.4, + "median": 1064.4, + "p75": 1064.4, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1791c96a-e71d-4d7c-8622-0efcacb4d3eb": { + "min": 1356, + "max": 1356, + "count": 1, + "mean": 1356, + "p50": 1353.1, + "median": 1353.1, + "p75": 1353.1, + "p90": 1353.1, + "p95": 1353.1, + "p99": 1353.1, + "p999": 1353.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cd1c80da-6b6d-4c22-84e8-fe6bfc815f86": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28b4c7db-1e91-4a62-aa37-a735bb24a4c7": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fbc85568-5c7b-4e85-9c9a-c9562d0acdb7": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed5c7e73-6eea-4df4-9364-8e128242eb1e": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8a0f54ba-1f09-402b-8a54-f682c51eb68b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7d14d214-3419-453b-8d90-96ba637eea3d": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/584a05fb-af4f-4ba9-8dfd-c06c716bf5c0": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7c6a99ed-80c6-417c-afe9-17a12d1c021e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28482f2b-7608-40c5-b145-b0f806e55cff": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/25183d7a-c865-4fd5-84ff-2abe71cd2a34": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d83e40b-6a83-440e-8cd2-95eec3b35cc6": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05f53476-c49b-486a-86d7-9616353158fc": { + "min": 772, + "max": 772, + "count": 1, + "mean": 772, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + } + } + }, + { + "counters": { + "http.codes.200": 59, + "http.responses": 59, + "plugins.metrics-by-endpoint./v0/crawl/status/307228c5-1a72-4688-b6df-b0dd77c9e308.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 29, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/fd671499-6d57-4c08-b203-c770b5699e8e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5cb846f9-dff0-4308-98de-838e5d3fbb85.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2b04b048-c5b8-4e01-8247-7d3dad8aae41.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/35f388e5-b5e5-497a-a58c-ec34b44d504b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3f6124d7-f8a3-4d68-93ec-809042860d49.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ae2801a7-5ef7-444b-a5ee-2ba23b6a29c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/df1f2a1b-5fa1-4f40-af98-f90067f6caa3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/21adeb34-b587-4d5e-989d-d95c5b6c8634.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/61b1ae5c-4d24-4c7c-9922-3b714e7abda6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9c6c8183-3850-48dd-8be0-681ca83ff0cf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa8e7aa0-e2f0-4bc0-ae4c-67ec447ca037.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0286370-bc23-410a-92d8-3f5d27fb2259.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a35f65c-8c1f-463c-a935-1214340e9800.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0a983f27-5347-4964-a281-19a124075022.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27999c7e-7bd7-4cdf-8bdd-6fba5f03467a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/14f313f5-3772-4221-92c7-61cb1cb4b402.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a59fb1f0-79c3-4429-a511-a5109bb48e71.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/883a0b30-a64f-4750-a527-b56a515ebbd5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6932fd4c-6954-4c55-a733-1957b45919d1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f37b25f1-e5b9-4ae1-994f-07c093137e29.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f8fad810-f9bc-49e1-bb8b-583e80b7e0de.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2824032-e524-439e-846e-86d7131fa081.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6137ee31-7c04-481a-80e8-a59a13f7e4c4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a507d336-721b-4df3-9d63-ed753c7b43a1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a2ce91c3-7a74-4aee-9871-82804a1721ee.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1775e60e-8eda-4e5d-b5a8-a6588f734e35.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b3070396-303c-4998-8b35-487e9f42b237.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7a3312f3-5cde-4680-8b9e-2fdd7f820924.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486020498, + "firstHistogramAt": 1716486020498, + "lastCounterAt": 1716486029937, + "lastHistogramAt": 1716486029892, + "firstMetricAt": 1716486020498, + "lastMetricAt": 1716486029937, + "period": "1716486020000", + "summaries": { + "http.response_time": { + "min": 739, + "max": 1165, + "count": 59, + "mean": 842.2, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/307228c5-1a72-4688-b6df-b0dd77c9e308": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11660.8, + "max": 12307.4, + "count": 29, + "mean": 11825.7, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 739, + "max": 1068, + "count": 30, + "mean": 817.6, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 982.6, + "p95": 982.6, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd671499-6d57-4c08-b203-c770b5699e8e": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5cb846f9-dff0-4308-98de-838e5d3fbb85": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b04b048-c5b8-4e01-8247-7d3dad8aae41": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/35f388e5-b5e5-497a-a58c-ec34b44d504b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f6124d7-f8a3-4d68-93ec-809042860d49": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae2801a7-5ef7-444b-a5ee-2ba23b6a29c2": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df1f2a1b-5fa1-4f40-af98-f90067f6caa3": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21adeb34-b587-4d5e-989d-d95c5b6c8634": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61b1ae5c-4d24-4c7c-9922-3b714e7abda6": { + "min": 1015, + "max": 1015, + "count": 1, + "mean": 1015, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c6c8183-3850-48dd-8be0-681ca83ff0cf": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa8e7aa0-e2f0-4bc0-ae4c-67ec447ca037": { + "min": 1165, + "max": 1165, + "count": 1, + "mean": 1165, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0286370-bc23-410a-92d8-3f5d27fb2259": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a35f65c-8c1f-463c-a935-1214340e9800": { + "min": 944, + "max": 944, + "count": 1, + "mean": 944, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a983f27-5347-4964-a281-19a124075022": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27999c7e-7bd7-4cdf-8bdd-6fba5f03467a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14f313f5-3772-4221-92c7-61cb1cb4b402": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a59fb1f0-79c3-4429-a511-a5109bb48e71": { + "min": 870, + "max": 870, + "count": 1, + "mean": 870, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/883a0b30-a64f-4750-a527-b56a515ebbd5": { + "min": 1010, + "max": 1010, + "count": 1, + "mean": 1010, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6932fd4c-6954-4c55-a733-1957b45919d1": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f37b25f1-e5b9-4ae1-994f-07c093137e29": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8fad810-f9bc-49e1-bb8b-583e80b7e0de": { + "min": 1050, + "max": 1050, + "count": 1, + "mean": 1050, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2824032-e524-439e-846e-86d7131fa081": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6137ee31-7c04-481a-80e8-a59a13f7e4c4": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a507d336-721b-4df3-9d63-ed753c7b43a1": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2ce91c3-7a74-4aee-9871-82804a1721ee": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1775e60e-8eda-4e5d-b5a8-a6588f734e35": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b3070396-303c-4998-8b35-487e9f42b237": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a3312f3-5cde-4680-8b9e-2fdd7f820924": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + } + }, + "histograms": { + "http.response_time": { + "min": 739, + "max": 1165, + "count": 59, + "mean": 842.2, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/307228c5-1a72-4688-b6df-b0dd77c9e308": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11660.8, + "max": 12307.4, + "count": 29, + "mean": 11825.7, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 739, + "max": 1068, + "count": 30, + "mean": 817.6, + "p50": 788.5, + "median": 788.5, + "p75": 804.5, + "p90": 982.6, + "p95": 982.6, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fd671499-6d57-4c08-b203-c770b5699e8e": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5cb846f9-dff0-4308-98de-838e5d3fbb85": { + "min": 832, + "max": 832, + "count": 1, + "mean": 832, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b04b048-c5b8-4e01-8247-7d3dad8aae41": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/35f388e5-b5e5-497a-a58c-ec34b44d504b": { + "min": 826, + "max": 826, + "count": 1, + "mean": 826, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f6124d7-f8a3-4d68-93ec-809042860d49": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae2801a7-5ef7-444b-a5ee-2ba23b6a29c2": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/df1f2a1b-5fa1-4f40-af98-f90067f6caa3": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/21adeb34-b587-4d5e-989d-d95c5b6c8634": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61b1ae5c-4d24-4c7c-9922-3b714e7abda6": { + "min": 1015, + "max": 1015, + "count": 1, + "mean": 1015, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c6c8183-3850-48dd-8be0-681ca83ff0cf": { + "min": 811, + "max": 811, + "count": 1, + "mean": 811, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa8e7aa0-e2f0-4bc0-ae4c-67ec447ca037": { + "min": 1165, + "max": 1165, + "count": 1, + "mean": 1165, + "p50": 1176.4, + "median": 1176.4, + "p75": 1176.4, + "p90": 1176.4, + "p95": 1176.4, + "p99": 1176.4, + "p999": 1176.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0286370-bc23-410a-92d8-3f5d27fb2259": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a35f65c-8c1f-463c-a935-1214340e9800": { + "min": 944, + "max": 944, + "count": 1, + "mean": 944, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0a983f27-5347-4964-a281-19a124075022": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27999c7e-7bd7-4cdf-8bdd-6fba5f03467a": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14f313f5-3772-4221-92c7-61cb1cb4b402": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a59fb1f0-79c3-4429-a511-a5109bb48e71": { + "min": 870, + "max": 870, + "count": 1, + "mean": 870, + "p50": 871.5, + "median": 871.5, + "p75": 871.5, + "p90": 871.5, + "p95": 871.5, + "p99": 871.5, + "p999": 871.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/883a0b30-a64f-4750-a527-b56a515ebbd5": { + "min": 1010, + "max": 1010, + "count": 1, + "mean": 1010, + "p50": 1002.4, + "median": 1002.4, + "p75": 1002.4, + "p90": 1002.4, + "p95": 1002.4, + "p99": 1002.4, + "p999": 1002.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6932fd4c-6954-4c55-a733-1957b45919d1": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f37b25f1-e5b9-4ae1-994f-07c093137e29": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8fad810-f9bc-49e1-bb8b-583e80b7e0de": { + "min": 1050, + "max": 1050, + "count": 1, + "mean": 1050, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2824032-e524-439e-846e-86d7131fa081": { + "min": 779, + "max": 779, + "count": 1, + "mean": 779, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6137ee31-7c04-481a-80e8-a59a13f7e4c4": { + "min": 1027, + "max": 1027, + "count": 1, + "mean": 1027, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a507d336-721b-4df3-9d63-ed753c7b43a1": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2ce91c3-7a74-4aee-9871-82804a1721ee": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1775e60e-8eda-4e5d-b5a8-a6588f734e35": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b3070396-303c-4998-8b35-487e9f42b237": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7a3312f3-5cde-4680-8b9e-2fdd7f820924": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + } + } + }, + { + "counters": { + "http.codes.200": 61, + "http.responses": 61, + "plugins.metrics-by-endpoint./v0/crawl/status/dbd5195c-c36c-4241-ac47-060f36ca22a0.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 31, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/4d8327ec-5ca3-4ca0-b623-059784bb0028.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53a5fd1f-4e45-4203-90ac-dc26aadc4fcf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/576c07e7-dd1d-4171-89ca-aa7ce7c2f20f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4738efea-73aa-4184-a239-96a073c270c2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/236fa256-ab24-41c3-bc9c-b4b0a065f519.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/14227327-158c-488d-82e1-7292a0c0cb42.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0f24904a-79ea-4bfe-bce1-535bcb1c00a7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/107f23ad-7639-40f5-8137-c690c34e4f97.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03f15cef-d277-4111-aa0f-5a5b104e8397.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/534f0804-462f-45b8-b88b-3263b96eebae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0b9e39dd-17f2-4e57-ae59-0e7b1d0744aa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1b33404e-e31d-4559-be89-706ded360580.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f841a916-e670-4d62-a423-9eb7f2adabd8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8e44e818-dbb9-4e3a-8852-9896612e468e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2b9e1d62-6b2c-4ac5-af24-9fb902b29606.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bc329f23-2b2d-4bee-aaf7-be675835a7b5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ffb7a582-61f5-4fd9-ae05-ff471bf8742d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6b7e134d-af1d-4b04-ad94-07457a53d40f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2e076beb-321a-4bbd-92ce-474568a472cc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6d610106-538c-40b7-9b97-876de2317c7e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b952d1ca-4f50-4fc4-afd1-c50f6cfa8b5d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0c4e50f-1463-43a9-b29d-aa8364956d2e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/098057c8-7020-4c76-9b84-c267bfb868db.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb8e904c-d168-4339-b892-b55f75926f68.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/153bd78e-9966-45e0-9723-ccbb7683dcfb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1817c818-fa3b-4d4b-96dd-b5ae09d3f0f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8192c9c1-8f52-41b0-8806-3e821b66a54e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9375ba37-312b-4e76-8d49-ffc93555243c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ba2a9ba3-8ab8-43e8-b420-dd9be833d86b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/762ccfef-c0af-4e6a-ad54-a111fe3e0046.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486030552, + "firstHistogramAt": 1716486030552, + "lastCounterAt": 1716486039953, + "lastHistogramAt": 1716486039953, + "firstMetricAt": 1716486030552, + "lastMetricAt": 1716486039953, + "period": "1716486030000", + "summaries": { + "http.response_time": { + "min": 723, + "max": 6065, + "count": 61, + "mean": 896.4, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 871.5, + "p95": 1002.4, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbd5195c-c36c-4241-ac47-060f36ca22a0": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11669.5, + "max": 17005.3, + "count": 31, + "mean": 11923.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 723, + "max": 1118, + "count": 30, + "mean": 814, + "p50": 772.9, + "median": 772.9, + "p75": 820.7, + "p90": 871.5, + "p95": 1002.4, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d8327ec-5ca3-4ca0-b623-059784bb0028": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53a5fd1f-4e45-4203-90ac-dc26aadc4fcf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/576c07e7-dd1d-4171-89ca-aa7ce7c2f20f": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4738efea-73aa-4184-a239-96a073c270c2": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/236fa256-ab24-41c3-bc9c-b4b0a065f519": { + "min": 849, + "max": 849, + "count": 1, + "mean": 849, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14227327-158c-488d-82e1-7292a0c0cb42": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f24904a-79ea-4bfe-bce1-535bcb1c00a7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/107f23ad-7639-40f5-8137-c690c34e4f97": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03f15cef-d277-4111-aa0f-5a5b104e8397": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/534f0804-462f-45b8-b88b-3263b96eebae": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b9e39dd-17f2-4e57-ae59-0e7b1d0744aa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b33404e-e31d-4559-be89-706ded360580": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f841a916-e670-4d62-a423-9eb7f2adabd8": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e44e818-dbb9-4e3a-8852-9896612e468e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b9e1d62-6b2c-4ac5-af24-9fb902b29606": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc329f23-2b2d-4bee-aaf7-be675835a7b5": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffb7a582-61f5-4fd9-ae05-ff471bf8742d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b7e134d-af1d-4b04-ad94-07457a53d40f": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e076beb-321a-4bbd-92ce-474568a472cc": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6d610106-538c-40b7-9b97-876de2317c7e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b952d1ca-4f50-4fc4-afd1-c50f6cfa8b5d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0c4e50f-1463-43a9-b29d-aa8364956d2e": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/098057c8-7020-4c76-9b84-c267bfb868db": { + "min": 6065, + "max": 6065, + "count": 1, + "mean": 6065, + "p50": 6064.7, + "median": 6064.7, + "p75": 6064.7, + "p90": 6064.7, + "p95": 6064.7, + "p99": 6064.7, + "p999": 6064.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb8e904c-d168-4339-b892-b55f75926f68": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/153bd78e-9966-45e0-9723-ccbb7683dcfb": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1817c818-fa3b-4d4b-96dd-b5ae09d3f0f5": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8192c9c1-8f52-41b0-8806-3e821b66a54e": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9375ba37-312b-4e76-8d49-ffc93555243c": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba2a9ba3-8ab8-43e8-b420-dd9be833d86b": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/762ccfef-c0af-4e6a-ad54-a111fe3e0046": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + }, + "histograms": { + "http.response_time": { + "min": 723, + "max": 6065, + "count": 61, + "mean": 896.4, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 871.5, + "p95": 1002.4, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbd5195c-c36c-4241-ac47-060f36ca22a0": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11669.5, + "max": 17005.3, + "count": 31, + "mean": 11923.5, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 723, + "max": 1118, + "count": 30, + "mean": 814, + "p50": 772.9, + "median": 772.9, + "p75": 820.7, + "p90": 871.5, + "p95": 1002.4, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4d8327ec-5ca3-4ca0-b623-059784bb0028": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53a5fd1f-4e45-4203-90ac-dc26aadc4fcf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/576c07e7-dd1d-4171-89ca-aa7ce7c2f20f": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4738efea-73aa-4184-a239-96a073c270c2": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/236fa256-ab24-41c3-bc9c-b4b0a065f519": { + "min": 849, + "max": 849, + "count": 1, + "mean": 849, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/14227327-158c-488d-82e1-7292a0c0cb42": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f24904a-79ea-4bfe-bce1-535bcb1c00a7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/107f23ad-7639-40f5-8137-c690c34e4f97": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03f15cef-d277-4111-aa0f-5a5b104e8397": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/534f0804-462f-45b8-b88b-3263b96eebae": { + "min": 781, + "max": 781, + "count": 1, + "mean": 781, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0b9e39dd-17f2-4e57-ae59-0e7b1d0744aa": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1b33404e-e31d-4559-be89-706ded360580": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f841a916-e670-4d62-a423-9eb7f2adabd8": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e44e818-dbb9-4e3a-8852-9896612e468e": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2b9e1d62-6b2c-4ac5-af24-9fb902b29606": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bc329f23-2b2d-4bee-aaf7-be675835a7b5": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ffb7a582-61f5-4fd9-ae05-ff471bf8742d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b7e134d-af1d-4b04-ad94-07457a53d40f": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2e076beb-321a-4bbd-92ce-474568a472cc": { + "min": 886, + "max": 886, + "count": 1, + "mean": 886, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6d610106-538c-40b7-9b97-876de2317c7e": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b952d1ca-4f50-4fc4-afd1-c50f6cfa8b5d": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0c4e50f-1463-43a9-b29d-aa8364956d2e": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/098057c8-7020-4c76-9b84-c267bfb868db": { + "min": 6065, + "max": 6065, + "count": 1, + "mean": 6065, + "p50": 6064.7, + "median": 6064.7, + "p75": 6064.7, + "p90": 6064.7, + "p95": 6064.7, + "p99": 6064.7, + "p999": 6064.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb8e904c-d168-4339-b892-b55f75926f68": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/153bd78e-9966-45e0-9723-ccbb7683dcfb": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1817c818-fa3b-4d4b-96dd-b5ae09d3f0f5": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8192c9c1-8f52-41b0-8806-3e821b66a54e": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9375ba37-312b-4e76-8d49-ffc93555243c": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba2a9ba3-8ab8-43e8-b420-dd9be833d86b": { + "min": 815, + "max": 815, + "count": 1, + "mean": 815, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/762ccfef-c0af-4e6a-ad54-a111fe3e0046": { + "min": 825, + "max": 825, + "count": 1, + "mean": 825, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + } + }, + { + "counters": { + "http.requests": 60, + "http.codes.200": 60, + "http.responses": 60, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/60cccd26-c95c-4ba0-b99a-a1a56bc5a5ae.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 30, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/27014d01-14da-48ce-8302-18f4041672cf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/27dcf41d-8f77-4237-9159-8af2fde0d080.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ed9620bc-ec74-4646-a290-d7c93bdf8d72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/009146f2-586b-4657-a32a-28d6a133212d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/61025564-ebee-4621-afbc-2da92f63896c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fadc4789-0899-40f2-a452-63aef4272dcd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8ea9dd88-6526-4f7f-8388-ba3f503156ce.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/79d2381d-4ad9-4d6e-8535-87e9ea2d26b0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/49696bad-69cc-4e57-8c50-4866fafed85d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/90d36bf1-5fc9-4198-8580-4bd3d5678ec0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78cb0af3-204e-48fb-b946-2494f29462fe.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fe73e7f4-7f8b-4411-a401-9b68fe94fe79.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/283cc8d6-2596-4cb8-9e45-b82060f6b4f6.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc872f67-960f-406f-b6ad-2bdfd83e5ae7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1e481373-7bf2-4a78-aeb9-588cc9979db3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/241baafc-0215-497a-8519-e892918ed99e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b8884069-7d3e-447c-a102-8c6f2103e4fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bef4a1ea-9ef4-41cb-a771-23a080bd2019.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ca315b10-e474-4377-bfe2-660ad4feb151.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/428e28bb-4805-49a7-94d0-fe7a76a4134d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5508e7aa-6edd-4c96-9ff8-1c43133b8b26.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/55598ce5-fe8d-4da6-8485-1e5567723599.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38b97ea2-753c-45e1-8467-c4ad9a0fda63.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/05ece630-c369-4f2e-b327-5fc61db6db10.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f8ee7e6a-ce3d-4f1f-b352-1a21e9efe34e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/06589ae3-3f89-49a2-9dfc-87d97ba270bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6a2da9b6-7ad5-462f-8e7d-1b6fda6ea5b7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/18ad1568-41e5-41c5-a771-d5b3575ec1c0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/75642a26-340d-4fc2-aa5c-ad6be6d677ea.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486040656, + "firstHistogramAt": 1716486040660, + "lastCounterAt": 1716486049937, + "lastHistogramAt": 1716486049881, + "firstMetricAt": 1716486040656, + "lastMetricAt": 1716486049937, + "period": "1716486040000", + "summaries": { + "http.response_time": { + "min": 732, + "max": 1193, + "count": 60, + "mean": 851.9, + "p50": 788.5, + "median": 788.5, + "p75": 889.1, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 732, + "max": 1193, + "count": 30, + "mean": 848.1, + "p50": 772.9, + "median": 772.9, + "p75": 889.1, + "p90": 1002.4, + "p95": 1022.7, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60cccd26-c95c-4ba0-b99a-a1a56bc5a5ae": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "vusers.session_length": { + "min": 11634.7, + "max": 12145.5, + "count": 30, + "mean": 11793.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27014d01-14da-48ce-8302-18f4041672cf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27dcf41d-8f77-4237-9159-8af2fde0d080": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed9620bc-ec74-4646-a290-d7c93bdf8d72": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/009146f2-586b-4657-a32a-28d6a133212d": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61025564-ebee-4621-afbc-2da92f63896c": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fadc4789-0899-40f2-a452-63aef4272dcd": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ea9dd88-6526-4f7f-8388-ba3f503156ce": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79d2381d-4ad9-4d6e-8535-87e9ea2d26b0": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49696bad-69cc-4e57-8c50-4866fafed85d": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90d36bf1-5fc9-4198-8580-4bd3d5678ec0": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78cb0af3-204e-48fb-b946-2494f29462fe": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe73e7f4-7f8b-4411-a401-9b68fe94fe79": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/283cc8d6-2596-4cb8-9e45-b82060f6b4f6": { + "min": 857, + "max": 857, + "count": 1, + "mean": 857, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc872f67-960f-406f-b6ad-2bdfd83e5ae7": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e481373-7bf2-4a78-aeb9-588cc9979db3": { + "min": 1018, + "max": 1018, + "count": 1, + "mean": 1018, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/241baafc-0215-497a-8519-e892918ed99e": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8884069-7d3e-447c-a102-8c6f2103e4fa": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bef4a1ea-9ef4-41cb-a771-23a080bd2019": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca315b10-e474-4377-bfe2-660ad4feb151": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/428e28bb-4805-49a7-94d0-fe7a76a4134d": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5508e7aa-6edd-4c96-9ff8-1c43133b8b26": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55598ce5-fe8d-4da6-8485-1e5567723599": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b97ea2-753c-45e1-8467-c4ad9a0fda63": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05ece630-c369-4f2e-b327-5fc61db6db10": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8ee7e6a-ce3d-4f1f-b352-1a21e9efe34e": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06589ae3-3f89-49a2-9dfc-87d97ba270bc": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a2da9b6-7ad5-462f-8e7d-1b6fda6ea5b7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/18ad1568-41e5-41c5-a771-d5b3575ec1c0": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75642a26-340d-4fc2-aa5c-ad6be6d677ea": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 732, + "max": 1193, + "count": 60, + "mean": 851.9, + "p50": 788.5, + "median": 788.5, + "p75": 889.1, + "p90": 1022.7, + "p95": 1043.3, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 732, + "max": 1193, + "count": 30, + "mean": 848.1, + "p50": 772.9, + "median": 772.9, + "p75": 889.1, + "p90": 1002.4, + "p95": 1022.7, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/60cccd26-c95c-4ba0-b99a-a1a56bc5a5ae": { + "min": 1030, + "max": 1030, + "count": 1, + "mean": 1030, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "vusers.session_length": { + "min": 11634.7, + "max": 12145.5, + "count": 30, + "mean": 11793.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27014d01-14da-48ce-8302-18f4041672cf": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/27dcf41d-8f77-4237-9159-8af2fde0d080": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ed9620bc-ec74-4646-a290-d7c93bdf8d72": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/009146f2-586b-4657-a32a-28d6a133212d": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61025564-ebee-4621-afbc-2da92f63896c": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fadc4789-0899-40f2-a452-63aef4272dcd": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8ea9dd88-6526-4f7f-8388-ba3f503156ce": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/79d2381d-4ad9-4d6e-8535-87e9ea2d26b0": { + "min": 1026, + "max": 1026, + "count": 1, + "mean": 1026, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49696bad-69cc-4e57-8c50-4866fafed85d": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/90d36bf1-5fc9-4198-8580-4bd3d5678ec0": { + "min": 1037, + "max": 1037, + "count": 1, + "mean": 1037, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78cb0af3-204e-48fb-b946-2494f29462fe": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fe73e7f4-7f8b-4411-a401-9b68fe94fe79": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/283cc8d6-2596-4cb8-9e45-b82060f6b4f6": { + "min": 857, + "max": 857, + "count": 1, + "mean": 857, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc872f67-960f-406f-b6ad-2bdfd83e5ae7": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1e481373-7bf2-4a78-aeb9-588cc9979db3": { + "min": 1018, + "max": 1018, + "count": 1, + "mean": 1018, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/241baafc-0215-497a-8519-e892918ed99e": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b8884069-7d3e-447c-a102-8c6f2103e4fa": { + "min": 1140, + "max": 1140, + "count": 1, + "mean": 1140, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bef4a1ea-9ef4-41cb-a771-23a080bd2019": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ca315b10-e474-4377-bfe2-660ad4feb151": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/428e28bb-4805-49a7-94d0-fe7a76a4134d": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5508e7aa-6edd-4c96-9ff8-1c43133b8b26": { + "min": 1043, + "max": 1043, + "count": 1, + "mean": 1043, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/55598ce5-fe8d-4da6-8485-1e5567723599": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b97ea2-753c-45e1-8467-c4ad9a0fda63": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05ece630-c369-4f2e-b327-5fc61db6db10": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8ee7e6a-ce3d-4f1f-b352-1a21e9efe34e": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/06589ae3-3f89-49a2-9dfc-87d97ba270bc": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a2da9b6-7ad5-462f-8e7d-1b6fda6ea5b7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/18ad1568-41e5-41c5-a771-d5b3575ec1c0": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75642a26-340d-4fc2-aa5c-ad6be6d677ea": { + "min": 809, + "max": 809, + "count": 1, + "mean": 809, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 58, + "http.responses": 58, + "plugins.metrics-by-endpoint./v0/crawl/status/67b8c82c-d0fb-4526-aa64-65be44664932.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 30, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 28, + "http.requests": 60, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/333fd02f-40bf-4b70-9ecf-c867384998f5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fb1f05d1-5dce-4b9d-b8b0-23b681a5e95f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2078ef3c-4d8f-47fc-9299-49ca3c75b49e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b4f0d8fa-654c-43e7-82de-1be03f2ca071.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f180a874-99db-4897-af13-e1ae406219b2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0078f259-6c4b-4535-ab16-6062ea5bd995.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/26817eee-064b-4db8-bd17-fc42ebd6908c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c911c3e9-8eee-421a-afb5-7f7727135970.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/72d95de5-bd82-4251-993a-97ff370fd8bd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2c6ac8e2-8141-486b-84c3-e3c16f1d3a67.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9c4b731b-662b-4067-be30-b1a6b233bb43.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0ab0c360-730e-4850-b4db-513f06005ffd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8050d71e-5968-4347-9d1f-e8fb11cc8197.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b85df4c6-5597-496e-8fe7-82d2f3adf5cc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/011b0d98-3f27-4850-8980-74df779eabdc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9937d592-4d8d-42e0-9ae6-7d816db396a8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6b77ede8-09f1-493d-a83e-81eb6abaf71b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d43a9ef2-c98c-43cb-a223-5665cac8a16e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a460d6c7-0ba0-4d56-be5b-59d981b598d8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/1d4edd84-f6fd-478a-87e2-96ced1304c77.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f3b0268f-7268-406d-9f65-e00ed8631d72.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/75aa6bd0-8ca5-4854-8fec-8b0fa43a0d14.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c80bfdf2-1fa9-4b2b-91a0-67fa4735119f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9dcc5e22-78a9-4037-a869-8a86666185e9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bdcabf13-614b-4027-adcd-a0d2fb3f1ece.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f8e2db7a-0c78-420e-8e80-c46a7063f841.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/0f46f2b2-9b3b-4ff6-81d9-f2dc7f51eb67.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/38b537ca-21e2-4831-8e6b-480c0e206023.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3e872937-6ba6-4d25-8de9-bcd27361eac7.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486050501, + "firstHistogramAt": 1716486050501, + "lastCounterAt": 1716486059937, + "lastHistogramAt": 1716486059904, + "firstMetricAt": 1716486050501, + "lastMetricAt": 1716486059937, + "period": "1716486050000", + "summaries": { + "http.response_time": { + "min": 745, + "max": 1248, + "count": 58, + "mean": 822, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 889.1, + "p95": 1002.4, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67b8c82c-d0fb-4526-aa64-65be44664932": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11664.4, + "max": 12314.3, + "count": 30, + "mean": 11788.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 745, + "max": 1248, + "count": 28, + "mean": 832, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 944, + "p95": 1002.4, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/333fd02f-40bf-4b70-9ecf-c867384998f5": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb1f05d1-5dce-4b9d-b8b0-23b681a5e95f": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2078ef3c-4d8f-47fc-9299-49ca3c75b49e": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4f0d8fa-654c-43e7-82de-1be03f2ca071": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f180a874-99db-4897-af13-e1ae406219b2": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0078f259-6c4b-4535-ab16-6062ea5bd995": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26817eee-064b-4db8-bd17-fc42ebd6908c": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c911c3e9-8eee-421a-afb5-7f7727135970": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/72d95de5-bd82-4251-993a-97ff370fd8bd": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2c6ac8e2-8141-486b-84c3-e3c16f1d3a67": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c4b731b-662b-4067-be30-b1a6b233bb43": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ab0c360-730e-4850-b4db-513f06005ffd": { + "min": 1017, + "max": 1017, + "count": 1, + "mean": 1017, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8050d71e-5968-4347-9d1f-e8fb11cc8197": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b85df4c6-5597-496e-8fe7-82d2f3adf5cc": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/011b0d98-3f27-4850-8980-74df779eabdc": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9937d592-4d8d-42e0-9ae6-7d816db396a8": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b77ede8-09f1-493d-a83e-81eb6abaf71b": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d43a9ef2-c98c-43cb-a223-5665cac8a16e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a460d6c7-0ba0-4d56-be5b-59d981b598d8": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d4edd84-f6fd-478a-87e2-96ced1304c77": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3b0268f-7268-406d-9f65-e00ed8631d72": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75aa6bd0-8ca5-4854-8fec-8b0fa43a0d14": { + "min": 990, + "max": 990, + "count": 1, + "mean": 990, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c80bfdf2-1fa9-4b2b-91a0-67fa4735119f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dcc5e22-78a9-4037-a869-8a86666185e9": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bdcabf13-614b-4027-adcd-a0d2fb3f1ece": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8e2db7a-0c78-420e-8e80-c46a7063f841": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f46f2b2-9b3b-4ff6-81d9-f2dc7f51eb67": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b537ca-21e2-4831-8e6b-480c0e206023": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e872937-6ba6-4d25-8de9-bcd27361eac7": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 745, + "max": 1248, + "count": 58, + "mean": 822, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 889.1, + "p95": 1002.4, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/67b8c82c-d0fb-4526-aa64-65be44664932": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11664.4, + "max": 12314.3, + "count": 30, + "mean": 11788.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 745, + "max": 1248, + "count": 28, + "mean": 832, + "p50": 788.5, + "median": 788.5, + "p75": 820.7, + "p90": 944, + "p95": 1002.4, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/333fd02f-40bf-4b70-9ecf-c867384998f5": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fb1f05d1-5dce-4b9d-b8b0-23b681a5e95f": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2078ef3c-4d8f-47fc-9299-49ca3c75b49e": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4f0d8fa-654c-43e7-82de-1be03f2ca071": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f180a874-99db-4897-af13-e1ae406219b2": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0078f259-6c4b-4535-ab16-6062ea5bd995": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/26817eee-064b-4db8-bd17-fc42ebd6908c": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c911c3e9-8eee-421a-afb5-7f7727135970": { + "min": 819, + "max": 819, + "count": 1, + "mean": 819, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/72d95de5-bd82-4251-993a-97ff370fd8bd": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2c6ac8e2-8141-486b-84c3-e3c16f1d3a67": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9c4b731b-662b-4067-be30-b1a6b233bb43": { + "min": 892, + "max": 892, + "count": 1, + "mean": 892, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0ab0c360-730e-4850-b4db-513f06005ffd": { + "min": 1017, + "max": 1017, + "count": 1, + "mean": 1017, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8050d71e-5968-4347-9d1f-e8fb11cc8197": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b85df4c6-5597-496e-8fe7-82d2f3adf5cc": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/011b0d98-3f27-4850-8980-74df779eabdc": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9937d592-4d8d-42e0-9ae6-7d816db396a8": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6b77ede8-09f1-493d-a83e-81eb6abaf71b": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d43a9ef2-c98c-43cb-a223-5665cac8a16e": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a460d6c7-0ba0-4d56-be5b-59d981b598d8": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/1d4edd84-f6fd-478a-87e2-96ced1304c77": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f3b0268f-7268-406d-9f65-e00ed8631d72": { + "min": 827, + "max": 827, + "count": 1, + "mean": 827, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75aa6bd0-8ca5-4854-8fec-8b0fa43a0d14": { + "min": 990, + "max": 990, + "count": 1, + "mean": 990, + "p50": 982.6, + "median": 982.6, + "p75": 982.6, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c80bfdf2-1fa9-4b2b-91a0-67fa4735119f": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9dcc5e22-78a9-4037-a869-8a86666185e9": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bdcabf13-614b-4027-adcd-a0d2fb3f1ece": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f8e2db7a-0c78-420e-8e80-c46a7063f841": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0f46f2b2-9b3b-4ff6-81d9-f2dc7f51eb67": { + "min": 799, + "max": 799, + "count": 1, + "mean": 799, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/38b537ca-21e2-4831-8e6b-480c0e206023": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e872937-6ba6-4d25-8de9-bcd27361eac7": { + "min": 804, + "max": 804, + "count": 1, + "mean": 804, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.requests": 58, + "http.codes.200": 62, + "http.responses": 62, + "plugins.metrics-by-endpoint./v0/crawl/status/a79ac8cf-d2dc-481a-9fe5-fa232c24229f.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 30, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 32, + "vusers.created_by_name.Crawl a URL": 30, + "vusers.created": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/4a2ff9d5-d984-4af6-bb95-5a3af0f5e063.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/64f0693c-92dc-47f8-9643-00df3a232445.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c64b5b37-cdfa-428f-8506-924af6f571f3.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fee54e55-252e-40ff-ac02-3a263df0d7af.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/57f75694-8edc-4fb9-ac7e-c69e8655d3e7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/624e5c44-31c1-40d8-80e7-f61b62de5eaf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f0993aeb-3993-4e0c-9d2a-77526ea282bd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b5363ec8-fe73-40d4-af86-5d43655e6aec.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3f56a8c5-e424-411d-b84e-a43da2f2f05b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/05374f63-a095-402b-9961-b909b7bd0927.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/48bc8061-cc12-4f51-89c3-b2aa47fe4c1d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cbd328cd-e8e6-4f01-9065-8d19029e0840.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/69d63b5d-a553-4a79-bb3a-efca5a5871c8.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/61521f72-40b5-44fd-ba0c-1e3f5f46d570.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a2869e20-69e5-4cfc-bd0c-b34a9c48e176.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e7986430-a32d-4242-814a-67e19c06f6fd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5bfaf40c-da4a-4258-b29c-7dd5dc7d48d7.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/34063397-1c6d-4e5e-aeae-1a1b454116ac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8bc7037f-e90e-444d-ab3b-05432c2bcfaa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/99be4855-1c52-4f7b-ad38-7df75d0224b1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6c9af162-77d0-404e-ae1f-f84a39c656fa.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dec2be06-df1a-4030-9296-07f876faa59a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7b0b5d14-dd41-4f00-991a-54e30b0ad61f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4447341-0e17-47d9-b7a8-c4b3e6a1da81.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4ce86c85-cd06-40fa-9897-9ec8bf9b6b90.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/301b7098-f45b-4986-97a7-b06394a883cf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/bfa4ee7c-b332-40b5-8833-8593b1840190.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6bd19486-e0f1-42cd-ad19-9cba04f78bc5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7fba1b67-eb76-4b11-9bf9-58995e422fcc.codes.200": 1 + }, + "rates": { + "http.request_rate": 6 + }, + "http.request_rate": null, + "firstCounterAt": 1716486060001, + "firstHistogramAt": 1716486060001, + "lastCounterAt": 1716486069938, + "lastHistogramAt": 1716486069768, + "firstMetricAt": 1716486060001, + "lastMetricAt": 1716486069938, + "period": "1716486060000", + "summaries": { + "http.response_time": { + "min": 732, + "max": 1289, + "count": 62, + "mean": 843.5, + "p50": 804.5, + "median": 804.5, + "p75": 837.3, + "p90": 1002.4, + "p95": 1064.4, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a79ac8cf-d2dc-481a-9fe5-fa232c24229f": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "vusers.session_length": { + "min": 11676.7, + "max": 12233, + "count": 30, + "mean": 11800.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 732, + "max": 1102, + "count": 32, + "mean": 846.1, + "p50": 788.5, + "median": 788.5, + "p75": 907, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a2ff9d5-d984-4af6-bb95-5a3af0f5e063": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/64f0693c-92dc-47f8-9643-00df3a232445": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c64b5b37-cdfa-428f-8506-924af6f571f3": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fee54e55-252e-40ff-ac02-3a263df0d7af": { + "min": 777, + "max": 777, + "count": 1, + "mean": 777, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57f75694-8edc-4fb9-ac7e-c69e8655d3e7": { + "min": 1289, + "max": 1289, + "count": 1, + "mean": 1289, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/624e5c44-31c1-40d8-80e7-f61b62de5eaf": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0993aeb-3993-4e0c-9d2a-77526ea282bd": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5363ec8-fe73-40d4-af86-5d43655e6aec": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f56a8c5-e424-411d-b84e-a43da2f2f05b": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05374f63-a095-402b-9961-b909b7bd0927": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48bc8061-cc12-4f51-89c3-b2aa47fe4c1d": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cbd328cd-e8e6-4f01-9065-8d19029e0840": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/69d63b5d-a553-4a79-bb3a-efca5a5871c8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61521f72-40b5-44fd-ba0c-1e3f5f46d570": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2869e20-69e5-4cfc-bd0c-b34a9c48e176": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7986430-a32d-4242-814a-67e19c06f6fd": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bfaf40c-da4a-4258-b29c-7dd5dc7d48d7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34063397-1c6d-4e5e-aeae-1a1b454116ac": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bc7037f-e90e-444d-ab3b-05432c2bcfaa": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/99be4855-1c52-4f7b-ad38-7df75d0224b1": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c9af162-77d0-404e-ae1f-f84a39c656fa": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dec2be06-df1a-4030-9296-07f876faa59a": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b0b5d14-dd41-4f00-991a-54e30b0ad61f": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4447341-0e17-47d9-b7a8-c4b3e6a1da81": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ce86c85-cd06-40fa-9897-9ec8bf9b6b90": { + "min": 1205, + "max": 1205, + "count": 1, + "mean": 1205, + "p50": 1200.1, + "median": 1200.1, + "p75": 1200.1, + "p90": 1200.1, + "p95": 1200.1, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/301b7098-f45b-4986-97a7-b06394a883cf": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfa4ee7c-b332-40b5-8833-8593b1840190": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bd19486-e0f1-42cd-ad19-9cba04f78bc5": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fba1b67-eb76-4b11-9bf9-58995e422fcc": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + }, + "histograms": { + "http.response_time": { + "min": 732, + "max": 1289, + "count": 62, + "mean": 843.5, + "p50": 804.5, + "median": 804.5, + "p75": 837.3, + "p90": 1002.4, + "p95": 1064.4, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a79ac8cf-d2dc-481a-9fe5-fa232c24229f": { + "min": 822, + "max": 822, + "count": 1, + "mean": 822, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "vusers.session_length": { + "min": 11676.7, + "max": 12233, + "count": 30, + "mean": 11800.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 732, + "max": 1102, + "count": 32, + "mean": 846.1, + "p50": 788.5, + "median": 788.5, + "p75": 907, + "p90": 1022.7, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4a2ff9d5-d984-4af6-bb95-5a3af0f5e063": { + "min": 798, + "max": 798, + "count": 1, + "mean": 798, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/64f0693c-92dc-47f8-9643-00df3a232445": { + "min": 814, + "max": 814, + "count": 1, + "mean": 814, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c64b5b37-cdfa-428f-8506-924af6f571f3": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fee54e55-252e-40ff-ac02-3a263df0d7af": { + "min": 777, + "max": 777, + "count": 1, + "mean": 777, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/57f75694-8edc-4fb9-ac7e-c69e8655d3e7": { + "min": 1289, + "max": 1289, + "count": 1, + "mean": 1289, + "p50": 1300.1, + "median": 1300.1, + "p75": 1300.1, + "p90": 1300.1, + "p95": 1300.1, + "p99": 1300.1, + "p999": 1300.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/624e5c44-31c1-40d8-80e7-f61b62de5eaf": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f0993aeb-3993-4e0c-9d2a-77526ea282bd": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b5363ec8-fe73-40d4-af86-5d43655e6aec": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3f56a8c5-e424-411d-b84e-a43da2f2f05b": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/05374f63-a095-402b-9961-b909b7bd0927": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/48bc8061-cc12-4f51-89c3-b2aa47fe4c1d": { + "min": 785, + "max": 785, + "count": 1, + "mean": 785, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cbd328cd-e8e6-4f01-9065-8d19029e0840": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/69d63b5d-a553-4a79-bb3a-efca5a5871c8": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/61521f72-40b5-44fd-ba0c-1e3f5f46d570": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2869e20-69e5-4cfc-bd0c-b34a9c48e176": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e7986430-a32d-4242-814a-67e19c06f6fd": { + "min": 817, + "max": 817, + "count": 1, + "mean": 817, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bfaf40c-da4a-4258-b29c-7dd5dc7d48d7": { + "min": 794, + "max": 794, + "count": 1, + "mean": 794, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34063397-1c6d-4e5e-aeae-1a1b454116ac": { + "min": 812, + "max": 812, + "count": 1, + "mean": 812, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bc7037f-e90e-444d-ab3b-05432c2bcfaa": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/99be4855-1c52-4f7b-ad38-7df75d0224b1": { + "min": 848, + "max": 848, + "count": 1, + "mean": 848, + "p50": 854.2, + "median": 854.2, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6c9af162-77d0-404e-ae1f-f84a39c656fa": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dec2be06-df1a-4030-9296-07f876faa59a": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7b0b5d14-dd41-4f00-991a-54e30b0ad61f": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4447341-0e17-47d9-b7a8-c4b3e6a1da81": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4ce86c85-cd06-40fa-9897-9ec8bf9b6b90": { + "min": 1205, + "max": 1205, + "count": 1, + "mean": 1205, + "p50": 1200.1, + "median": 1200.1, + "p75": 1200.1, + "p90": 1200.1, + "p95": 1200.1, + "p99": 1200.1, + "p999": 1200.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/301b7098-f45b-4986-97a7-b06394a883cf": { + "min": 898, + "max": 898, + "count": 1, + "mean": 898, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/bfa4ee7c-b332-40b5-8833-8593b1840190": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6bd19486-e0f1-42cd-ad19-9cba04f78bc5": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7fba1b67-eb76-4b11-9bf9-58995e422fcc": { + "min": 828, + "max": 828, + "count": 1, + "mean": 828, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + } + }, + { + "counters": { + "http.codes.200": 20, + "http.responses": 20, + "plugins.metrics-by-endpoint./v0/crawl/status/96c13291-f609-4867-af0e-c82713bd3f4d.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "http.requests": 20, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/49d263b7-0a5f-4689-a243-bb25d811e18b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8e581086-a328-4885-8012-711ef90521c4.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c32463b9-55ad-4402-8a70-bcb7105ec32d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c4650a8c-833e-4cf1-8fff-e7a6caaee67c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/78a3eef8-ab31-4654-8552-194221de277c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/7459920d-4e99-4daa-b901-2ceaeb20a70a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ee82b1f7-1654-45ae-af49-698038c0aeca.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fa7d571b-0d69-4b65-b151-f4acd292bd0a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a0dffbb3-2b36-4b84-97e1-2be7190488aa.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "firstCounterAt": 1716486070752, + "firstHistogramAt": 1716486070752, + "lastCounterAt": 1716486079832, + "lastHistogramAt": 1716486079624, + "firstMetricAt": 1716486070752, + "lastMetricAt": 1716486079832, + "period": "1716486070000", + "http.request_rate": null, + "summaries": { + "http.response_time": { + "min": 724, + "max": 1455, + "count": 20, + "mean": 921.4, + "p50": 804.5, + "median": 804.5, + "p75": 982.6, + "p90": 1224.4, + "p95": 1380.5, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96c13291-f609-4867-af0e-c82713bd3f4d": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11684.7, + "max": 11933.6, + "count": 10, + "mean": 11804.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 724, + "max": 1455, + "count": 10, + "mean": 995.8, + "p50": 907, + "median": 907, + "p75": 982.6, + "p90": 1380.5, + "p95": 1380.5, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49d263b7-0a5f-4689-a243-bb25d811e18b": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e581086-a328-4885-8012-711ef90521c4": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c32463b9-55ad-4402-8a70-bcb7105ec32d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4650a8c-833e-4cf1-8fff-e7a6caaee67c": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78a3eef8-ab31-4654-8552-194221de277c": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7459920d-4e99-4daa-b901-2ceaeb20a70a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee82b1f7-1654-45ae-af49-698038c0aeca": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa7d571b-0d69-4b65-b151-f4acd292bd0a": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a0dffbb3-2b36-4b84-97e1-2be7190488aa": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 724, + "max": 1455, + "count": 20, + "mean": 921.4, + "p50": 804.5, + "median": 804.5, + "p75": 982.6, + "p90": 1224.4, + "p95": 1380.5, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/96c13291-f609-4867-af0e-c82713bd3f4d": { + "min": 786, + "max": 786, + "count": 1, + "mean": 786, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "vusers.session_length": { + "min": 11684.7, + "max": 11933.6, + "count": 10, + "mean": 11804.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 724, + "max": 1455, + "count": 10, + "mean": 995.8, + "p50": 907, + "median": 907, + "p75": 982.6, + "p90": 1380.5, + "p95": 1380.5, + "p99": 1380.5, + "p999": 1380.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/49d263b7-0a5f-4689-a243-bb25d811e18b": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8e581086-a328-4885-8012-711ef90521c4": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c32463b9-55ad-4402-8a70-bcb7105ec32d": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c4650a8c-833e-4cf1-8fff-e7a6caaee67c": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/78a3eef8-ab31-4654-8552-194221de277c": { + "min": 801, + "max": 801, + "count": 1, + "mean": 801, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/7459920d-4e99-4daa-b901-2ceaeb20a70a": { + "min": 802, + "max": 802, + "count": 1, + "mean": 802, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ee82b1f7-1654-45ae-af49-698038c0aeca": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fa7d571b-0d69-4b65-b151-f4acd292bd0a": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a0dffbb3-2b36-4b84-97e1-2be7190488aa": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.codes.200": 31, + "http.responses": 31, + "plugins.metrics-by-endpoint./v0/crawl/status/33727670-49bd-4f22-9295-68cb8a007661.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 21, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 10, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "http.requests": 30, + "plugins.metrics-by-endpoint./v0/crawl/status/39fc395c-cf40-44e7-a98a-9a7552de0af1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/50e84ee7-b155-4515-8bbb-00babcdf2adf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/334cd73b-6470-441a-b441-d42d8c00445b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/46c71398-edfb-4d58-9303-6b236df73d23.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3fa7e13f-f4b9-4ede-ad07-fd060c32dc2a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f7261289-c16d-4f37-9570-d23db4e0c3e0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9cfcb31b-23fe-484b-8685-9a7db4d66bbd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/56f8fe86-2d1e-4543-b241-ec0359596d98.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a4d8174c-ea98-45bf-8091-f067216adab5.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/940c27a6-1cb2-4c11-93c7-efb96f08d22a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/24b258f8-5d9e-45dd-937b-f85279be22af.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ae26af3e-e0b6-4834-b0be-0447fc984461.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/82f1bef3-ea09-4304-81da-b286627d7b22.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/a7df93b2-d859-492c-b3bf-dd54687c7644.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/15e58dc1-2a03-40b1-afa5-8800d64700bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8bcc4f35-2a7f-4a89-9f16-ed568f533628.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3ab5a291-49f4-4f9d-b332-87ad381896e2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5aeec797-9eb1-4619-92ba-dbbc36150ba1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/84c641ee-cac7-477c-8377-53b26e74a357.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5990aa40-6543-4f7b-8cae-50864865292b.codes.200": 1 + }, + "rates": { + "http.request_rate": 4 + }, + "http.request_rate": null, + "firstCounterAt": 1716486080516, + "firstHistogramAt": 1716486080516, + "lastCounterAt": 1716486089834, + "lastHistogramAt": 1716486089635, + "firstMetricAt": 1716486080516, + "lastMetricAt": 1716486089834, + "period": "1716486080000", + "summaries": { + "http.response_time": { + "min": 738, + "max": 1529, + "count": 31, + "mean": 850.4, + "p50": 788.5, + "median": 788.5, + "p75": 837.3, + "p90": 1022.7, + "p95": 1130.2, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33727670-49bd-4f22-9295-68cb8a007661": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "vusers.session_length": { + "min": 11675.5, + "max": 12502.3, + "count": 21, + "mean": 11907.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12459.8, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 738, + "max": 1529, + "count": 10, + "mean": 847.5, + "p50": 757.6, + "median": 757.6, + "p75": 772.9, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39fc395c-cf40-44e7-a98a-9a7552de0af1": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50e84ee7-b155-4515-8bbb-00babcdf2adf": { + "min": 1155, + "max": 1155, + "count": 1, + "mean": 1155, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/334cd73b-6470-441a-b441-d42d8c00445b": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46c71398-edfb-4d58-9303-6b236df73d23": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa7e13f-f4b9-4ede-ad07-fd060c32dc2a": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f7261289-c16d-4f37-9570-d23db4e0c3e0": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cfcb31b-23fe-484b-8685-9a7db4d66bbd": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56f8fe86-2d1e-4543-b241-ec0359596d98": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4d8174c-ea98-45bf-8091-f067216adab5": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/940c27a6-1cb2-4c11-93c7-efb96f08d22a": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24b258f8-5d9e-45dd-937b-f85279be22af": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae26af3e-e0b6-4834-b0be-0447fc984461": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82f1bef3-ea09-4304-81da-b286627d7b22": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7df93b2-d859-492c-b3bf-dd54687c7644": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15e58dc1-2a03-40b1-afa5-8800d64700bc": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bcc4f35-2a7f-4a89-9f16-ed568f533628": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ab5a291-49f4-4f9d-b332-87ad381896e2": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aeec797-9eb1-4619-92ba-dbbc36150ba1": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84c641ee-cac7-477c-8377-53b26e74a357": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5990aa40-6543-4f7b-8cae-50864865292b": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + } + }, + "histograms": { + "http.response_time": { + "min": 738, + "max": 1529, + "count": 31, + "mean": 850.4, + "p50": 788.5, + "median": 788.5, + "p75": 837.3, + "p90": 1022.7, + "p95": 1130.2, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/33727670-49bd-4f22-9295-68cb8a007661": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "vusers.session_length": { + "min": 11675.5, + "max": 12502.3, + "count": 21, + "mean": 11907.2, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12459.8, + "p99": 12459.8, + "p999": 12459.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 738, + "max": 1529, + "count": 10, + "mean": 847.5, + "p50": 757.6, + "median": 757.6, + "p75": 772.9, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/39fc395c-cf40-44e7-a98a-9a7552de0af1": { + "min": 778, + "max": 778, + "count": 1, + "mean": 778, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/50e84ee7-b155-4515-8bbb-00babcdf2adf": { + "min": 1155, + "max": 1155, + "count": 1, + "mean": 1155, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/334cd73b-6470-441a-b441-d42d8c00445b": { + "min": 1025, + "max": 1025, + "count": 1, + "mean": 1025, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/46c71398-edfb-4d58-9303-6b236df73d23": { + "min": 782, + "max": 782, + "count": 1, + "mean": 782, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3fa7e13f-f4b9-4ede-ad07-fd060c32dc2a": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f7261289-c16d-4f37-9570-d23db4e0c3e0": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9cfcb31b-23fe-484b-8685-9a7db4d66bbd": { + "min": 808, + "max": 808, + "count": 1, + "mean": 808, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/56f8fe86-2d1e-4543-b241-ec0359596d98": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a4d8174c-ea98-45bf-8091-f067216adab5": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/940c27a6-1cb2-4c11-93c7-efb96f08d22a": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/24b258f8-5d9e-45dd-937b-f85279be22af": { + "min": 904, + "max": 904, + "count": 1, + "mean": 904, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ae26af3e-e0b6-4834-b0be-0447fc984461": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/82f1bef3-ea09-4304-81da-b286627d7b22": { + "min": 803, + "max": 803, + "count": 1, + "mean": 803, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a7df93b2-d859-492c-b3bf-dd54687c7644": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/15e58dc1-2a03-40b1-afa5-8800d64700bc": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8bcc4f35-2a7f-4a89-9f16-ed568f533628": { + "min": 787, + "max": 787, + "count": 1, + "mean": 787, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3ab5a291-49f4-4f9d-b332-87ad381896e2": { + "min": 780, + "max": 780, + "count": 1, + "mean": 780, + "p50": 772.9, + "median": 772.9, + "p75": 772.9, + "p90": 772.9, + "p95": 772.9, + "p99": 772.9, + "p999": 772.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aeec797-9eb1-4619-92ba-dbbc36150ba1": { + "min": 790, + "max": 790, + "count": 1, + "mean": 790, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/84c641ee-cac7-477c-8377-53b26e74a357": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5990aa40-6543-4f7b-8cae-50864865292b": { + "min": 885, + "max": 885, + "count": 1, + "mean": 885, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + } + } + }, + { + "counters": { + "http.codes.200": 21, + "http.responses": 21, + "plugins.metrics-by-endpoint./v0/crawl/status/0be3b979-9dc5-4517-ae4e-85e8f685e6e7.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 11, + "plugins.metrics-by-endpoint./v0/crawl/status/b67229d3-ea86-4421-aa29-a5b3e4fa8133.codes.200": 1, + "http.requests": 20, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 10, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/a2eebd2c-af93-4058-9542-95d9f10fcea1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4e0662da-931d-40a9-b0d1-dc4cb2843d13.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/4849201d-6f37-4917-9809-698cea53a8bf.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/62b8502b-ef32-4e82-bed1-6815267ff670.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e9bdc72f-64bd-4278-b67a-355bd78aed16.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/cf5385d4-fefc-40bf-8bd7-d443f058a857.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b6560986-0fa2-4eca-a109-846bd95e7cd0.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e0eac6b2-4606-4d94-86b9-a1e20acbb739.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/fc06bedf-837e-4049-8f7f-a6c780240cd8.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716486090150, + "firstHistogramAt": 1716486090150, + "lastCounterAt": 1716486099832, + "lastHistogramAt": 1716486099655, + "firstMetricAt": 1716486090150, + "lastMetricAt": 1716486099832, + "period": "1716486090000", + "summaries": { + "http.response_time": { + "min": 740, + "max": 1178, + "count": 21, + "mean": 893.7, + "p50": 837.3, + "median": 837.3, + "p75": 907, + "p90": 1130.2, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0be3b979-9dc5-4517-ae4e-85e8f685e6e7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11678.8, + "max": 12814, + "count": 11, + "mean": 11931.7, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b67229d3-ea86-4421-aa29-a5b3e4fa8133": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 740, + "max": 1178, + "count": 10, + "mean": 894, + "p50": 837.3, + "median": 837.3, + "p75": 907, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2eebd2c-af93-4058-9542-95d9f10fcea1": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4e0662da-931d-40a9-b0d1-dc4cb2843d13": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4849201d-6f37-4917-9809-698cea53a8bf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62b8502b-ef32-4e82-bed1-6815267ff670": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9bdc72f-64bd-4278-b67a-355bd78aed16": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf5385d4-fefc-40bf-8bd7-d443f058a857": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b6560986-0fa2-4eca-a109-846bd95e7cd0": { + "min": 891, + "max": 891, + "count": 1, + "mean": 891, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0eac6b2-4606-4d94-86b9-a1e20acbb739": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc06bedf-837e-4049-8f7f-a6c780240cd8": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + } + }, + "histograms": { + "http.response_time": { + "min": 740, + "max": 1178, + "count": 21, + "mean": 893.7, + "p50": 837.3, + "median": 837.3, + "p75": 907, + "p90": 1130.2, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/0be3b979-9dc5-4517-ae4e-85e8f685e6e7": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11678.8, + "max": 12814, + "count": 11, + "mean": 11931.7, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 12213.1, + "p95": 12213.1, + "p99": 12213.1, + "p999": 12213.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b67229d3-ea86-4421-aa29-a5b3e4fa8133": { + "min": 818, + "max": 818, + "count": 1, + "mean": 818, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 740, + "max": 1178, + "count": 10, + "mean": 894, + "p50": 837.3, + "median": 837.3, + "p75": 907, + "p90": 1107.9, + "p95": 1107.9, + "p99": 1107.9, + "p999": 1107.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/a2eebd2c-af93-4058-9542-95d9f10fcea1": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4e0662da-931d-40a9-b0d1-dc4cb2843d13": { + "min": 1132, + "max": 1132, + "count": 1, + "mean": 1132, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/4849201d-6f37-4917-9809-698cea53a8bf": { + "min": 800, + "max": 800, + "count": 1, + "mean": 800, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/62b8502b-ef32-4e82-bed1-6815267ff670": { + "min": 899, + "max": 899, + "count": 1, + "mean": 899, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9bdc72f-64bd-4278-b67a-355bd78aed16": { + "min": 796, + "max": 796, + "count": 1, + "mean": 796, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cf5385d4-fefc-40bf-8bd7-d443f058a857": { + "min": 1145, + "max": 1145, + "count": 1, + "mean": 1145, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b6560986-0fa2-4eca-a109-846bd95e7cd0": { + "min": 891, + "max": 891, + "count": 1, + "mean": 891, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e0eac6b2-4606-4d94-86b9-a1e20acbb739": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/fc06bedf-837e-4049-8f7f-a6c780240cd8": { + "min": 835, + "max": 835, + "count": 1, + "mean": 835, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + } + } + }, + { + "counters": { + "http.codes.200": 19, + "http.responses": 19, + "plugins.metrics-by-endpoint./v0/crawl/status/e9a7d139-672d-4c50-ad2e-3f743c502786.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 9, + "http.requests": 20, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/6474d2aa-69ce-4440-941d-407f51bf25dd.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/6a665308-9111-4b78-a0f1-d051e0090665.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/b89be88d-47bc-4529-bc30-384262cecb6b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/28d6803c-879e-41e8-9637-35e9786ce01e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9f3f0f3c-c986-4065-83ad-4fd32816689c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/8d3776b2-d6a4-4021-b0a3-8570e6c1d56a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3e0d0a07-5e53-401d-a542-89d976919254.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/9808f0e5-19cd-4d02-9bcd-3ff434d835f1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/806803ff-bb1b-4db5-aacf-dc75492708df.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716486100538, + "firstHistogramAt": 1716486100538, + "lastCounterAt": 1716486109832, + "lastHistogramAt": 1716486109697, + "firstMetricAt": 1716486100538, + "lastMetricAt": 1716486109832, + "period": "1716486100000", + "summaries": { + "http.response_time": { + "min": 773, + "max": 1381, + "count": 19, + "mean": 850.8, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 907, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9a7d139-672d-4c50-ad2e-3f743c502786": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "vusers.session_length": { + "min": 11675.4, + "max": 12109.1, + "count": 10, + "mean": 11838.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 773, + "max": 1381, + "count": 9, + "mean": 892, + "p50": 854.2, + "median": 854.2, + "p75": 889.1, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6474d2aa-69ce-4440-941d-407f51bf25dd": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a665308-9111-4b78-a0f1-d051e0090665": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b89be88d-47bc-4529-bc30-384262cecb6b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28d6803c-879e-41e8-9637-35e9786ce01e": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f3f0f3c-c986-4065-83ad-4fd32816689c": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d3776b2-d6a4-4021-b0a3-8570e6c1d56a": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e0d0a07-5e53-401d-a542-89d976919254": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9808f0e5-19cd-4d02-9bcd-3ff434d835f1": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/806803ff-bb1b-4db5-aacf-dc75492708df": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + }, + "histograms": { + "http.response_time": { + "min": 773, + "max": 1381, + "count": 19, + "mean": 850.8, + "p50": 804.5, + "median": 804.5, + "p75": 854.2, + "p90": 907, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e9a7d139-672d-4c50-ad2e-3f743c502786": { + "min": 837, + "max": 837, + "count": 1, + "mean": 837, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "vusers.session_length": { + "min": 11675.4, + "max": 12109.1, + "count": 10, + "mean": 11838.4, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 773, + "max": 1381, + "count": 9, + "mean": 892, + "p50": 854.2, + "median": 854.2, + "p75": 889.1, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6474d2aa-69ce-4440-941d-407f51bf25dd": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6a665308-9111-4b78-a0f1-d051e0090665": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b89be88d-47bc-4529-bc30-384262cecb6b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/28d6803c-879e-41e8-9637-35e9786ce01e": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9f3f0f3c-c986-4065-83ad-4fd32816689c": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/8d3776b2-d6a4-4021-b0a3-8570e6c1d56a": { + "min": 795, + "max": 795, + "count": 1, + "mean": 795, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3e0d0a07-5e53-401d-a542-89d976919254": { + "min": 783, + "max": 783, + "count": 1, + "mean": 783, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/9808f0e5-19cd-4d02-9bcd-3ff434d835f1": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/806803ff-bb1b-4db5-aacf-dc75492708df": { + "min": 810, + "max": 810, + "count": 1, + "mean": 810, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + } + } + }, + { + "counters": { + "http.codes.200": 21, + "http.responses": 21, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 11, + "plugins.metrics-by-endpoint./v0/crawl/status/75a07336-9f9a-4e6b-aa86-a4fe73b1264f.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "http.requests": 19, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/b4b0328c-bd89-4111-a275-54ab9a169a4c.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ec9d1791-4809-434f-96fa-5c00516165d1.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ab719df7-9f85-42b6-94b3-d9ee9f8252ae.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/34844e49-c20f-402b-9c3c-9c180a6e6a27.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ad9e3655-a668-4f78-89fc-e0022789445f.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c628ebfb-5571-4777-a7e5-336968991fd9.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/3175ec85-0765-4cfd-85f9-7854ea27821a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/726272c3-172c-4d30-8b4d-39ce3e3e6008.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03af49d9-a0e5-46d6-9f88-6e618f4071dc.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716486110026, + "firstHistogramAt": 1716486110026, + "lastCounterAt": 1716486119833, + "lastHistogramAt": 1716486119684, + "firstMetricAt": 1716486110026, + "lastMetricAt": 1716486119833, + "period": "1716486110000", + "summaries": { + "http.response_time": { + "min": 744, + "max": 1147, + "count": 21, + "mean": 874.7, + "p50": 820.7, + "median": 820.7, + "p75": 925.4, + "p90": 1064.4, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 744, + "max": 1139, + "count": 11, + "mean": 853.1, + "p50": 788.5, + "median": 788.5, + "p75": 889.1, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75a07336-9f9a-4e6b-aa86-a4fe73b1264f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11723.7, + "max": 12301.4, + "count": 10, + "mean": 11914.6, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4b0328c-bd89-4111-a275-54ab9a169a4c": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ec9d1791-4809-434f-96fa-5c00516165d1": { + "min": 881, + "max": 881, + "count": 1, + "mean": 881, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab719df7-9f85-42b6-94b3-d9ee9f8252ae": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34844e49-c20f-402b-9c3c-9c180a6e6a27": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad9e3655-a668-4f78-89fc-e0022789445f": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c628ebfb-5571-4777-a7e5-336968991fd9": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3175ec85-0765-4cfd-85f9-7854ea27821a": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/726272c3-172c-4d30-8b4d-39ce3e3e6008": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03af49d9-a0e5-46d6-9f88-6e618f4071dc": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + }, + "histograms": { + "http.response_time": { + "min": 744, + "max": 1147, + "count": 21, + "mean": 874.7, + "p50": 820.7, + "median": 820.7, + "p75": 925.4, + "p90": 1064.4, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 744, + "max": 1139, + "count": 11, + "mean": 853.1, + "p50": 788.5, + "median": 788.5, + "p75": 889.1, + "p90": 1064.4, + "p95": 1064.4, + "p99": 1064.4, + "p999": 1064.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/75a07336-9f9a-4e6b-aa86-a4fe73b1264f": { + "min": 889, + "max": 889, + "count": 1, + "mean": 889, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "vusers.session_length": { + "min": 11723.7, + "max": 12301.4, + "count": 10, + "mean": 11914.6, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b4b0328c-bd89-4111-a275-54ab9a169a4c": { + "min": 919, + "max": 919, + "count": 1, + "mean": 919, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ec9d1791-4809-434f-96fa-5c00516165d1": { + "min": 881, + "max": 881, + "count": 1, + "mean": 881, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab719df7-9f85-42b6-94b3-d9ee9f8252ae": { + "min": 823, + "max": 823, + "count": 1, + "mean": 823, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/34844e49-c20f-402b-9c3c-9c180a6e6a27": { + "min": 789, + "max": 789, + "count": 1, + "mean": 789, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ad9e3655-a668-4f78-89fc-e0022789445f": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c628ebfb-5571-4777-a7e5-336968991fd9": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/3175ec85-0765-4cfd-85f9-7854ea27821a": { + "min": 1041, + "max": 1041, + "count": 1, + "mean": 1041, + "p50": 1043.3, + "median": 1043.3, + "p75": 1043.3, + "p90": 1043.3, + "p95": 1043.3, + "p99": 1043.3, + "p999": 1043.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/726272c3-172c-4d30-8b4d-39ce3e3e6008": { + "min": 890, + "max": 890, + "count": 1, + "mean": 890, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03af49d9-a0e5-46d6-9f88-6e618f4071dc": { + "min": 784, + "max": 784, + "count": 1, + "mean": 784, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + } + } + }, + { + "counters": { + "http.requests": 21, + "http.codes.200": 20, + "http.responses": 20, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 10, + "vusers.created_by_name.Crawl a URL": 10, + "vusers.created": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/5bb255ec-4314-4046-b4e6-014d0a4e8074.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "plugins.metrics-by-endpoint./v0/crawl/status/b46fad50-60d8-4e93-8c4d-1fc79a3ea437.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/900178fe-7cd7-49ca-a906-0461a6b4fa97.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/d51b42b9-1eb7-4d0f-8265-b9a1f377cf0e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ba3e65e3-cfbc-45dc-87eb-158cc71e74cb.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f38e0a53-a31d-428b-a31d-33ea0eb5954e.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e6da1b57-3ccb-4ec8-a510-a7a0cbeefd13.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e244c6e1-40a4-4906-8239-57cea67f6962.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c8275a37-bb68-4fd7-9d67-77ab57d3a904.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ab7b3136-d5b8-45db-bc2b-a754ef1f0d15.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "http.request_rate": null, + "firstCounterAt": 1716486120033, + "firstHistogramAt": 1716486120669, + "lastCounterAt": 1716486129833, + "lastHistogramAt": 1716486129656, + "firstMetricAt": 1716486120033, + "lastMetricAt": 1716486129833, + "period": "1716486120000", + "summaries": { + "http.response_time": { + "min": 742, + "max": 1138, + "count": 20, + "mean": 860.1, + "p50": 804.5, + "median": 804.5, + "p75": 907, + "p90": 982.6, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 742, + "max": 1120, + "count": 10, + "mean": 835.5, + "p50": 772.9, + "median": 772.9, + "p75": 788.5, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bb255ec-4314-4046-b4e6-014d0a4e8074": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11680.8, + "max": 12233.2, + "count": 10, + "mean": 11881.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b46fad50-60d8-4e93-8c4d-1fc79a3ea437": { + "min": 1138, + "max": 1138, + "count": 1, + "mean": 1138, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/900178fe-7cd7-49ca-a906-0461a6b4fa97": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d51b42b9-1eb7-4d0f-8265-b9a1f377cf0e": { + "min": 940, + "max": 940, + "count": 1, + "mean": 940, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba3e65e3-cfbc-45dc-87eb-158cc71e74cb": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f38e0a53-a31d-428b-a31d-33ea0eb5954e": { + "min": 911, + "max": 911, + "count": 1, + "mean": 911, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6da1b57-3ccb-4ec8-a510-a7a0cbeefd13": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e244c6e1-40a4-4906-8239-57cea67f6962": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8275a37-bb68-4fd7-9d67-77ab57d3a904": { + "min": 917, + "max": 917, + "count": 1, + "mean": 917, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab7b3136-d5b8-45db-bc2b-a754ef1f0d15": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + }, + "histograms": { + "http.response_time": { + "min": 742, + "max": 1138, + "count": 20, + "mean": 860.1, + "p50": 804.5, + "median": 804.5, + "p75": 907, + "p90": 982.6, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 742, + "max": 1120, + "count": 10, + "mean": 835.5, + "p50": 772.9, + "median": 772.9, + "p75": 788.5, + "p90": 982.6, + "p95": 982.6, + "p99": 982.6, + "p999": 982.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5bb255ec-4314-4046-b4e6-014d0a4e8074": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11680.8, + "max": 12233.2, + "count": 10, + "mean": 11881.8, + "p50": 11734.2, + "median": 11734.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/b46fad50-60d8-4e93-8c4d-1fc79a3ea437": { + "min": 1138, + "max": 1138, + "count": 1, + "mean": 1138, + "p50": 1130.2, + "median": 1130.2, + "p75": 1130.2, + "p90": 1130.2, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/900178fe-7cd7-49ca-a906-0461a6b4fa97": { + "min": 897, + "max": 897, + "count": 1, + "mean": 897, + "p50": 889.1, + "median": 889.1, + "p75": 889.1, + "p90": 889.1, + "p95": 889.1, + "p99": 889.1, + "p999": 889.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d51b42b9-1eb7-4d0f-8265-b9a1f377cf0e": { + "min": 940, + "max": 940, + "count": 1, + "mean": 940, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ba3e65e3-cfbc-45dc-87eb-158cc71e74cb": { + "min": 793, + "max": 793, + "count": 1, + "mean": 793, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f38e0a53-a31d-428b-a31d-33ea0eb5954e": { + "min": 911, + "max": 911, + "count": 1, + "mean": 911, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e6da1b57-3ccb-4ec8-a510-a7a0cbeefd13": { + "min": 833, + "max": 833, + "count": 1, + "mean": 833, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e244c6e1-40a4-4906-8239-57cea67f6962": { + "min": 791, + "max": 791, + "count": 1, + "mean": 791, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c8275a37-bb68-4fd7-9d67-77ab57d3a904": { + "min": 917, + "max": 917, + "count": 1, + "mean": 917, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ab7b3136-d5b8-45db-bc2b-a754ef1f0d15": { + "min": 821, + "max": 821, + "count": 1, + "mean": 821, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + } + }, + { + "counters": { + "http.requests": 14, + "http.codes.200": 15, + "http.responses": 15, + "plugins.metrics-by-endpoint./v0/crawl/status/450c604a-6f3f-49ff-8448-e2a0df137584.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 10, + "vusers.created_by_name.Crawl a URL": 4, + "vusers.created": 4, + "plugins.metrics-by-endpoint./v0/crawl.codes.200": 5, + "plugins.metrics-by-endpoint./v0/crawl/status/cc8ad777-da80-4608-a9cf-061a7b32c2bc.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/e797bda8-dcc4-4b76-9029-7f6618cdd07b.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c9c3d3dd-047c-48d5-97fc-729dbe727425.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/53aebb11-6450-491f-8c8e-32dea6d1f04a.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/5aa9eb5d-3007-4033-8cf1-98b113806d9d.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/03a52057-0802-451b-8b2c-6f9778fbf5ed.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/ff00b011-940d-4eb1-8430-131ce87194b2.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/c2ca2ea6-8fd2-41cd-92ce-4865da1ccdac.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/85ca925c-5ba5-4199-a7b9-417655eb802b.codes.200": 1 + }, + "rates": { + "http.request_rate": 2 + }, + "firstCounterAt": 1716486130677, + "firstHistogramAt": 1716486130787, + "lastCounterAt": 1716486139666, + "lastHistogramAt": 1716486139666, + "firstMetricAt": 1716486130677, + "lastMetricAt": 1716486139666, + "period": "1716486130000", + "http.request_rate": null, + "summaries": { + "http.response_time": { + "min": 746, + "max": 1147, + "count": 15, + "mean": 911.6, + "p50": 907, + "median": 907, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/450c604a-6f3f-49ff-8448-e2a0df137584": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "vusers.session_length": { + "min": 11691.1, + "max": 12063.6, + "count": 10, + "mean": 11916.6, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 746, + "max": 1122, + "count": 5, + "mean": 855.2, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc8ad777-da80-4608-a9cf-061a7b32c2bc": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e797bda8-dcc4-4b76-9029-7f6618cdd07b": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c9c3d3dd-047c-48d5-97fc-729dbe727425": { + "min": 935, + "max": 935, + "count": 1, + "mean": 935, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53aebb11-6450-491f-8c8e-32dea6d1f04a": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aa9eb5d-3007-4033-8cf1-98b113806d9d": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03a52057-0802-451b-8b2c-6f9778fbf5ed": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff00b011-940d-4eb1-8430-131ce87194b2": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2ca2ea6-8fd2-41cd-92ce-4865da1ccdac": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85ca925c-5ba5-4199-a7b9-417655eb802b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + } + }, + "histograms": { + "http.response_time": { + "min": 746, + "max": 1147, + "count": 15, + "mean": 911.6, + "p50": 907, + "median": 907, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1130.2, + "p99": 1130.2, + "p999": 1130.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/450c604a-6f3f-49ff-8448-e2a0df137584": { + "min": 1023, + "max": 1023, + "count": 1, + "mean": 1023, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "vusers.session_length": { + "min": 11691.1, + "max": 12063.6, + "count": 10, + "mean": 11916.6, + "p50": 11971.2, + "median": 11971.2, + "p75": 11971.2, + "p90": 11971.2, + "p95": 11971.2, + "p99": 11971.2, + "p999": 11971.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl": { + "min": 746, + "max": 1122, + "count": 5, + "mean": 855.2, + "p50": 788.5, + "median": 788.5, + "p75": 854.2, + "p90": 854.2, + "p95": 854.2, + "p99": 854.2, + "p999": 854.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/cc8ad777-da80-4608-a9cf-061a7b32c2bc": { + "min": 913, + "max": 913, + "count": 1, + "mean": 913, + "p50": 907, + "median": 907, + "p75": 907, + "p90": 907, + "p95": 907, + "p99": 907, + "p999": 907 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/e797bda8-dcc4-4b76-9029-7f6618cdd07b": { + "min": 788, + "max": 788, + "count": 1, + "mean": 788, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c9c3d3dd-047c-48d5-97fc-729dbe727425": { + "min": 935, + "max": 935, + "count": 1, + "mean": 935, + "p50": 944, + "median": 944, + "p75": 944, + "p90": 944, + "p95": 944, + "p99": 944, + "p999": 944 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/53aebb11-6450-491f-8c8e-32dea6d1f04a": { + "min": 806, + "max": 806, + "count": 1, + "mean": 806, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/5aa9eb5d-3007-4033-8cf1-98b113806d9d": { + "min": 1031, + "max": 1031, + "count": 1, + "mean": 1031, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/03a52057-0802-451b-8b2c-6f9778fbf5ed": { + "min": 797, + "max": 797, + "count": 1, + "mean": 797, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/ff00b011-940d-4eb1-8430-131ce87194b2": { + "min": 1147, + "max": 1147, + "count": 1, + "mean": 1147, + "p50": 1153.1, + "median": 1153.1, + "p75": 1153.1, + "p90": 1153.1, + "p95": 1153.1, + "p99": 1153.1, + "p999": 1153.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/c2ca2ea6-8fd2-41cd-92ce-4865da1ccdac": { + "min": 1032, + "max": 1032, + "count": 1, + "mean": 1032, + "p50": 1022.7, + "median": 1022.7, + "p75": 1022.7, + "p90": 1022.7, + "p95": 1022.7, + "p99": 1022.7, + "p999": 1022.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/85ca925c-5ba5-4199-a7b9-417655eb802b": { + "min": 926, + "max": 926, + "count": 1, + "mean": 926, + "p50": 925.4, + "median": 925.4, + "p75": 925.4, + "p90": 925.4, + "p95": 925.4, + "p99": 925.4, + "p999": 925.4 + } + } + }, + { + "counters": { + "http.codes.200": 6, + "http.responses": 6, + "plugins.metrics-by-endpoint./v0/crawl/status/6958fceb-a4de-432c-a50f-528f21b23553.codes.200": 1, + "vusers.failed": 0, + "vusers.completed": 6, + "http.requests": 5, + "plugins.metrics-by-endpoint./v0/crawl/status/d148447a-c15b-4b89-a345-fe6f0cbaea93.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/dbca8c5d-a77c-4df6-8925-e76dd0029a08.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/29c747d7-f1e0-4ff9-ac41-6a8551b06623.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/2203a238-8313-49ec-808f-6d3cc3ba6113.codes.200": 1, + "plugins.metrics-by-endpoint./v0/crawl/status/f4120710-0798-43fb-88e8-0c822fb7adbd.codes.200": 1 + }, + "rates": { + "http.request_rate": 1 + }, + "http.request_rate": null, + "firstCounterAt": 1716486140531, + "firstHistogramAt": 1716486140531, + "lastCounterAt": 1716486145537, + "lastHistogramAt": 1716486145537, + "firstMetricAt": 1716486140531, + "lastMetricAt": 1716486145537, + "period": "1716486140000", + "summaries": { + "http.response_time": { + "min": 792, + "max": 830, + "count": 6, + "mean": 811.2, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6958fceb-a4de-432c-a50f-528f21b23553": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11701.6, + "max": 12043.1, + "count": 6, + "mean": 11786.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11734.2, + "p95": 11734.2, + "p99": 11734.2, + "p999": 11734.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d148447a-c15b-4b89-a345-fe6f0cbaea93": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbca8c5d-a77c-4df6-8925-e76dd0029a08": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c747d7-f1e0-4ff9-ac41-6a8551b06623": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2203a238-8313-49ec-808f-6d3cc3ba6113": { + "min": 830, + "max": 830, + "count": 1, + "mean": 830, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4120710-0798-43fb-88e8-0c822fb7adbd": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + }, + "histograms": { + "http.response_time": { + "min": 792, + "max": 830, + "count": 6, + "mean": 811.2, + "p50": 804.5, + "median": 804.5, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/6958fceb-a4de-432c-a50f-528f21b23553": { + "min": 807, + "max": 807, + "count": 1, + "mean": 807, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "vusers.session_length": { + "min": 11701.6, + "max": 12043.1, + "count": 6, + "mean": 11786.9, + "p50": 11734.2, + "median": 11734.2, + "p75": 11734.2, + "p90": 11734.2, + "p95": 11734.2, + "p99": 11734.2, + "p999": 11734.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/d148447a-c15b-4b89-a345-fe6f0cbaea93": { + "min": 792, + "max": 792, + "count": 1, + "mean": 792, + "p50": 788.5, + "median": 788.5, + "p75": 788.5, + "p90": 788.5, + "p95": 788.5, + "p99": 788.5, + "p999": 788.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/dbca8c5d-a77c-4df6-8925-e76dd0029a08": { + "min": 805, + "max": 805, + "count": 1, + "mean": 805, + "p50": 804.5, + "median": 804.5, + "p75": 804.5, + "p90": 804.5, + "p95": 804.5, + "p99": 804.5, + "p999": 804.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/29c747d7-f1e0-4ff9-ac41-6a8551b06623": { + "min": 820, + "max": 820, + "count": 1, + "mean": 820, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/2203a238-8313-49ec-808f-6d3cc3ba6113": { + "min": 830, + "max": 830, + "count": 1, + "mean": 830, + "p50": 837.3, + "median": 837.3, + "p75": 837.3, + "p90": 837.3, + "p95": 837.3, + "p99": 837.3, + "p999": 837.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/crawl/status/f4120710-0798-43fb-88e8-0c822fb7adbd": { + "min": 813, + "max": 813, + "count": 1, + "mean": 813, + "p50": 820.7, + "median": 820.7, + "p75": 820.7, + "p90": 820.7, + "p95": 820.7, + "p99": 820.7, + "p999": 820.7 + } + } + } + ] +} \ No newline at end of file diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/CPU-utilization-report-test-1.png b/apps/test-suite/load-test-results/tests-1-5/assets/CPU-utilization-report-test-1.png new file mode 100644 index 00000000..4ae55c89 Binary files /dev/null and b/apps/test-suite/load-test-results/tests-1-5/assets/CPU-utilization-report-test-1.png differ diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/memory-utilization-report-test-1.png b/apps/test-suite/load-test-results/tests-1-5/assets/memory-utilization-report-test-1.png new file mode 100644 index 00000000..3ac1aeb4 Binary files /dev/null and b/apps/test-suite/load-test-results/tests-1-5/assets/memory-utilization-report-test-1.png differ diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-2.png b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-2.png new file mode 100644 index 00000000..6b6c82db Binary files /dev/null and b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-2.png differ diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-3.png b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-3.png new file mode 100644 index 00000000..3f1bb46b Binary files /dev/null and b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-3.png differ diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-4.png b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-4.png new file mode 100644 index 00000000..60ac9480 Binary files /dev/null and b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-4.png differ diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-5.png b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-5.png new file mode 100644 index 00000000..88c2aa43 Binary files /dev/null and b/apps/test-suite/load-test-results/tests-1-5/assets/metrics-test-5.png differ diff --git a/apps/test-suite/load-test-results/tests-1-5/assets/test-run-report.json b/apps/test-suite/load-test-results/tests-1-5/assets/test-run-report.json new file mode 100644 index 00000000..2f9cb7a9 --- /dev/null +++ b/apps/test-suite/load-test-results/tests-1-5/assets/test-run-report.json @@ -0,0 +1,4639 @@ +{ + "aggregate": { + "counters": { + "vusers.created_by_name.Scrape a URL": 9000, + "vusers.created": 9000, + "http.requests": 9000, + "http.codes.200": 8996, + "http.responses": 9000, + "http.downloaded_bytes": 0, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 8996, + "vusers.failed": 4, + "vusers.completed": 8996, + "http.codes.502": 4, + "plugins.metrics-by-endpoint./v0/scrape.codes.502": 4, + "errors.Failed capture or match": 4 + }, + "rates": { + "http.request_rate": 23 + }, + "firstCounterAt": 1716317566907, + "firstHistogramAt": 1716317568357, + "lastCounterAt": 1716317987944, + "lastHistogramAt": 1716317987944, + "firstMetricAt": 1716317566907, + "lastMetricAt": 1716317987944, + "period": 1716317980000, + "summaries": { + "http.response_time": { + "min": 62, + "max": 18924, + "count": 9000, + "mean": 5661.8, + "p50": 5378.9, + "median": 5378.9, + "p75": 7407.5, + "p90": 9801.2, + "p95": 11050.8, + "p99": 12968.3, + "p999": 17158.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 62, + "max": 18924, + "count": 9000, + "mean": 5661.8, + "p50": 5378.9, + "median": 5378.9, + "p75": 7407.5, + "p90": 9801.2, + "p95": 11050.8, + "p99": 12968.3, + "p999": 17158.9 + }, + "vusers.session_length": { + "min": 1079.2, + "max": 18980.3, + "count": 8996, + "mean": 5734.4, + "p50": 5487.5, + "median": 5487.5, + "p75": 7557.1, + "p90": 9801.2, + "p95": 11050.8, + "p99": 12968.3, + "p999": 17158.9 + } + }, + "histograms": { + "http.response_time": { + "min": 62, + "max": 18924, + "count": 9000, + "mean": 5661.8, + "p50": 5378.9, + "median": 5378.9, + "p75": 7407.5, + "p90": 9801.2, + "p95": 11050.8, + "p99": 12968.3, + "p999": 17158.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 62, + "max": 18924, + "count": 9000, + "mean": 5661.8, + "p50": 5378.9, + "median": 5378.9, + "p75": 7407.5, + "p90": 9801.2, + "p95": 11050.8, + "p99": 12968.3, + "p999": 17158.9 + }, + "vusers.session_length": { + "min": 1079.2, + "max": 18980.3, + "count": 8996, + "mean": 5734.4, + "p50": 5487.5, + "median": 5487.5, + "p75": 7557.1, + "p90": 9801.2, + "p95": 11050.8, + "p99": 12968.3, + "p999": 17158.9 + } + } + }, + "intermediate": [ + { + "counters": { + "vusers.created_by_name.Scrape a URL": 32, + "vusers.created": 32, + "http.requests": 32, + "http.codes.200": 14, + "http.responses": 14, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 14, + "vusers.failed": 0, + "vusers.completed": 14 + }, + "rates": { + "http.request_rate": 14 + }, + "http.request_rate": null, + "firstCounterAt": 1716317566907, + "firstHistogramAt": 1716317568357, + "lastCounterAt": 1716317569959, + "lastHistogramAt": 1716317569748, + "firstMetricAt": 1716317566907, + "lastMetricAt": 1716317569959, + "period": "1716317560000", + "summaries": { + "http.response_time": { + "min": 1246, + "max": 1831, + "count": 14, + "mean": 1465.1, + "p50": 1465.9, + "median": 1465.9, + "p75": 1525.7, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1686.1, + "p999": 1686.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1246, + "max": 1831, + "count": 14, + "mean": 1465.1, + "p50": 1465.9, + "median": 1465.9, + "p75": 1525.7, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1686.1, + "p999": 1686.1 + }, + "vusers.session_length": { + "min": 1319.2, + "max": 1897.5, + "count": 14, + "mean": 1537.3, + "p50": 1525.7, + "median": 1525.7, + "p75": 1587.9, + "p90": 1720.2, + "p95": 1720.2, + "p99": 1720.2, + "p999": 1720.2 + } + }, + "histograms": { + "http.response_time": { + "min": 1246, + "max": 1831, + "count": 14, + "mean": 1465.1, + "p50": 1465.9, + "median": 1465.9, + "p75": 1525.7, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1686.1, + "p999": 1686.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1246, + "max": 1831, + "count": 14, + "mean": 1465.1, + "p50": 1465.9, + "median": 1465.9, + "p75": 1525.7, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1686.1, + "p999": 1686.1 + }, + "vusers.session_length": { + "min": 1319.2, + "max": 1897.5, + "count": 14, + "mean": 1537.3, + "p50": 1525.7, + "median": 1525.7, + "p75": 1587.9, + "p90": 1720.2, + "p95": 1720.2, + "p99": 1720.2, + "p999": 1720.2 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100, + "http.codes.200": 102, + "http.responses": 102, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 102, + "vusers.failed": 0, + "vusers.completed": 102 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317570009, + "firstHistogramAt": 1716317570160, + "lastCounterAt": 1716317579997, + "lastHistogramAt": 1716317579997, + "firstMetricAt": 1716317570009, + "lastMetricAt": 1716317579997, + "period": "1716317570000", + "summaries": { + "http.response_time": { + "min": 1157, + "max": 1961, + "count": 102, + "mean": 1512.3, + "p50": 1465.9, + "median": 1465.9, + "p75": 1652.8, + "p90": 1790.4, + "p95": 1863.5, + "p99": 1901.1, + "p999": 1901.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1157, + "max": 1961, + "count": 102, + "mean": 1512.3, + "p50": 1465.9, + "median": 1465.9, + "p75": 1652.8, + "p90": 1790.4, + "p95": 1863.5, + "p99": 1901.1, + "p999": 1901.1 + }, + "vusers.session_length": { + "min": 1215.3, + "max": 2020.1, + "count": 102, + "mean": 1577.1, + "p50": 1525.7, + "median": 1525.7, + "p75": 1686.1, + "p90": 1826.6, + "p95": 1901.1, + "p99": 1939.5, + "p999": 1939.5 + } + }, + "histograms": { + "http.response_time": { + "min": 1157, + "max": 1961, + "count": 102, + "mean": 1512.3, + "p50": 1465.9, + "median": 1465.9, + "p75": 1652.8, + "p90": 1790.4, + "p95": 1863.5, + "p99": 1901.1, + "p999": 1901.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1157, + "max": 1961, + "count": 102, + "mean": 1512.3, + "p50": 1465.9, + "median": 1465.9, + "p75": 1652.8, + "p90": 1790.4, + "p95": 1863.5, + "p99": 1901.1, + "p999": 1901.1 + }, + "vusers.session_length": { + "min": 1215.3, + "max": 2020.1, + "count": 102, + "mean": 1577.1, + "p50": 1525.7, + "median": 1525.7, + "p75": 1686.1, + "p90": 1826.6, + "p95": 1901.1, + "p99": 1939.5, + "p999": 1939.5 + } + } + }, + { + "counters": { + "http.codes.200": 99, + "http.responses": 99, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 99, + "vusers.failed": 0, + "vusers.completed": 99, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317580009, + "firstHistogramAt": 1716317580028, + "lastCounterAt": 1716317589959, + "lastHistogramAt": 1716317589860, + "firstMetricAt": 1716317580009, + "lastMetricAt": 1716317589959, + "period": "1716317580000", + "summaries": { + "http.response_time": { + "min": 1119, + "max": 2155, + "count": 99, + "mean": 1509.7, + "p50": 1495.5, + "median": 1495.5, + "p75": 1686.1, + "p90": 1826.6, + "p95": 1901.1, + "p99": 2018.7, + "p999": 2018.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1119, + "max": 2155, + "count": 99, + "mean": 1509.7, + "p50": 1495.5, + "median": 1495.5, + "p75": 1686.1, + "p90": 1826.6, + "p95": 1901.1, + "p99": 2018.7, + "p999": 2018.7 + }, + "vusers.session_length": { + "min": 1178.2, + "max": 2220.5, + "count": 99, + "mean": 1572.8, + "p50": 1556.5, + "median": 1556.5, + "p75": 1755, + "p90": 1863.5, + "p95": 1978.7, + "p99": 2101.1, + "p999": 2101.1 + } + }, + "histograms": { + "http.response_time": { + "min": 1119, + "max": 2155, + "count": 99, + "mean": 1509.7, + "p50": 1495.5, + "median": 1495.5, + "p75": 1686.1, + "p90": 1826.6, + "p95": 1901.1, + "p99": 2018.7, + "p999": 2018.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1119, + "max": 2155, + "count": 99, + "mean": 1509.7, + "p50": 1495.5, + "median": 1495.5, + "p75": 1686.1, + "p90": 1826.6, + "p95": 1901.1, + "p99": 2018.7, + "p999": 2018.7 + }, + "vusers.session_length": { + "min": 1178.2, + "max": 2220.5, + "count": 99, + "mean": 1572.8, + "p50": 1556.5, + "median": 1556.5, + "p75": 1755, + "p90": 1863.5, + "p95": 1978.7, + "p99": 2101.1, + "p999": 2101.1 + } + } + }, + { + "counters": { + "http.codes.200": 103, + "http.responses": 103, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 103, + "vusers.failed": 0, + "vusers.completed": 103, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317590008, + "firstHistogramAt": 1716317590008, + "lastCounterAt": 1716317599981, + "lastHistogramAt": 1716317599981, + "firstMetricAt": 1716317590008, + "lastMetricAt": 1716317599981, + "period": "1716317590000", + "summaries": { + "http.response_time": { + "min": 1104, + "max": 1962, + "count": 103, + "mean": 1382.6, + "p50": 1380.5, + "median": 1380.5, + "p75": 1465.9, + "p90": 1587.9, + "p95": 1652.8, + "p99": 1686.1, + "p999": 1755 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1104, + "max": 1962, + "count": 103, + "mean": 1382.6, + "p50": 1380.5, + "median": 1380.5, + "p75": 1465.9, + "p90": 1587.9, + "p95": 1652.8, + "p99": 1686.1, + "p999": 1755 + }, + "vusers.session_length": { + "min": 1165.1, + "max": 2035.9, + "count": 103, + "mean": 1449.5, + "p50": 1436.8, + "median": 1436.8, + "p75": 1525.7, + "p90": 1652.8, + "p95": 1720.2, + "p99": 1755, + "p999": 1826.6 + } + }, + "histograms": { + "http.response_time": { + "min": 1104, + "max": 1962, + "count": 103, + "mean": 1382.6, + "p50": 1380.5, + "median": 1380.5, + "p75": 1465.9, + "p90": 1587.9, + "p95": 1652.8, + "p99": 1686.1, + "p999": 1755 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1104, + "max": 1962, + "count": 103, + "mean": 1382.6, + "p50": 1380.5, + "median": 1380.5, + "p75": 1465.9, + "p90": 1587.9, + "p95": 1652.8, + "p99": 1686.1, + "p999": 1755 + }, + "vusers.session_length": { + "min": 1165.1, + "max": 2035.9, + "count": 103, + "mean": 1449.5, + "p50": 1436.8, + "median": 1436.8, + "p75": 1525.7, + "p90": 1652.8, + "p95": 1720.2, + "p99": 1755, + "p999": 1826.6 + } + } + }, + { + "counters": { + "http.codes.200": 97, + "http.responses": 97, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 97, + "vusers.failed": 0, + "vusers.completed": 97, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317600009, + "firstHistogramAt": 1716317600103, + "lastCounterAt": 1716317609958, + "lastHistogramAt": 1716317609766, + "firstMetricAt": 1716317600009, + "lastMetricAt": 1716317609958, + "period": "1716317600000", + "summaries": { + "http.response_time": { + "min": 1091, + "max": 1833, + "count": 97, + "mean": 1405.3, + "p50": 1408.4, + "median": 1408.4, + "p75": 1495.5, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1790.4, + "p999": 1790.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1091, + "max": 1833, + "count": 97, + "mean": 1405.3, + "p50": 1408.4, + "median": 1408.4, + "p75": 1495.5, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1790.4, + "p999": 1790.4 + }, + "vusers.session_length": { + "min": 1166.3, + "max": 1892.1, + "count": 97, + "mean": 1470.6, + "p50": 1465.9, + "median": 1465.9, + "p75": 1556.5, + "p90": 1686.1, + "p95": 1790.4, + "p99": 1863.5, + "p999": 1863.5 + } + }, + "histograms": { + "http.response_time": { + "min": 1091, + "max": 1833, + "count": 97, + "mean": 1405.3, + "p50": 1408.4, + "median": 1408.4, + "p75": 1495.5, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1790.4, + "p999": 1790.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1091, + "max": 1833, + "count": 97, + "mean": 1405.3, + "p50": 1408.4, + "median": 1408.4, + "p75": 1495.5, + "p90": 1652.8, + "p95": 1686.1, + "p99": 1790.4, + "p999": 1790.4 + }, + "vusers.session_length": { + "min": 1166.3, + "max": 1892.1, + "count": 97, + "mean": 1470.6, + "p50": 1465.9, + "median": 1465.9, + "p75": 1556.5, + "p90": 1686.1, + "p95": 1790.4, + "p99": 1863.5, + "p999": 1863.5 + } + } + }, + { + "counters": { + "http.codes.200": 102, + "http.responses": 102, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 102, + "vusers.failed": 0, + "vusers.completed": 102, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317610009, + "firstHistogramAt": 1716317610027, + "lastCounterAt": 1716317619992, + "lastHistogramAt": 1716317619992, + "firstMetricAt": 1716317610009, + "lastMetricAt": 1716317619992, + "period": "1716317610000", + "summaries": { + "http.response_time": { + "min": 1093, + "max": 2000, + "count": 102, + "mean": 1411.5, + "p50": 1380.5, + "median": 1380.5, + "p75": 1495.5, + "p90": 1620, + "p95": 1686.1, + "p99": 1826.6, + "p999": 1863.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1093, + "max": 2000, + "count": 102, + "mean": 1411.5, + "p50": 1380.5, + "median": 1380.5, + "p75": 1495.5, + "p90": 1620, + "p95": 1686.1, + "p99": 1826.6, + "p999": 1863.5 + }, + "vusers.session_length": { + "min": 1156.8, + "max": 2061.9, + "count": 102, + "mean": 1477.6, + "p50": 1465.9, + "median": 1465.9, + "p75": 1556.5, + "p90": 1686.1, + "p95": 1755, + "p99": 1901.1, + "p999": 1939.5 + } + }, + "histograms": { + "http.response_time": { + "min": 1093, + "max": 2000, + "count": 102, + "mean": 1411.5, + "p50": 1380.5, + "median": 1380.5, + "p75": 1495.5, + "p90": 1620, + "p95": 1686.1, + "p99": 1826.6, + "p999": 1863.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1093, + "max": 2000, + "count": 102, + "mean": 1411.5, + "p50": 1380.5, + "median": 1380.5, + "p75": 1495.5, + "p90": 1620, + "p95": 1686.1, + "p99": 1826.6, + "p999": 1863.5 + }, + "vusers.session_length": { + "min": 1156.8, + "max": 2061.9, + "count": 102, + "mean": 1477.6, + "p50": 1465.9, + "median": 1465.9, + "p75": 1556.5, + "p90": 1686.1, + "p95": 1755, + "p99": 1901.1, + "p999": 1939.5 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 134, + "vusers.created": 134, + "http.requests": 134, + "http.codes.200": 109, + "http.responses": 109, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 109, + "vusers.failed": 0, + "vusers.completed": 109 + }, + "rates": { + "http.request_rate": 13 + }, + "http.request_rate": null, + "firstCounterAt": 1716317620009, + "firstHistogramAt": 1716317620217, + "lastCounterAt": 1716317629997, + "lastHistogramAt": 1716317629993, + "firstMetricAt": 1716317620009, + "lastMetricAt": 1716317629997, + "period": "1716317620000", + "summaries": { + "http.response_time": { + "min": 1110, + "max": 2261, + "count": 109, + "mean": 1496, + "p50": 1465.9, + "median": 1465.9, + "p75": 1587.9, + "p90": 1826.6, + "p95": 1901.1, + "p99": 1978.7, + "p999": 1978.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1110, + "max": 2261, + "count": 109, + "mean": 1496, + "p50": 1465.9, + "median": 1465.9, + "p75": 1587.9, + "p90": 1826.6, + "p95": 1901.1, + "p99": 1978.7, + "p999": 1978.7 + }, + "vusers.session_length": { + "min": 1171.2, + "max": 2329.1, + "count": 109, + "mean": 1564.2, + "p50": 1525.7, + "median": 1525.7, + "p75": 1652.8, + "p90": 1901.1, + "p95": 1978.7, + "p99": 2018.7, + "p999": 2059.5 + } + }, + "histograms": { + "http.response_time": { + "min": 1110, + "max": 2261, + "count": 109, + "mean": 1496, + "p50": 1465.9, + "median": 1465.9, + "p75": 1587.9, + "p90": 1826.6, + "p95": 1901.1, + "p99": 1978.7, + "p999": 1978.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1110, + "max": 2261, + "count": 109, + "mean": 1496, + "p50": 1465.9, + "median": 1465.9, + "p75": 1587.9, + "p90": 1826.6, + "p95": 1901.1, + "p99": 1978.7, + "p999": 1978.7 + }, + "vusers.session_length": { + "min": 1171.2, + "max": 2329.1, + "count": 109, + "mean": 1564.2, + "p50": 1525.7, + "median": 1525.7, + "p75": 1652.8, + "p90": 1901.1, + "p95": 1978.7, + "p99": 2018.7, + "p999": 2059.5 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 175, + "http.responses": 175, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 175, + "vusers.failed": 0, + "vusers.completed": 175 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317630049, + "firstHistogramAt": 1716317630049, + "lastCounterAt": 1716317639997, + "lastHistogramAt": 1716317639994, + "firstMetricAt": 1716317630049, + "lastMetricAt": 1716317639997, + "period": "1716317630000", + "summaries": { + "http.response_time": { + "min": 1788, + "max": 4061, + "count": 175, + "mean": 2507.1, + "p50": 2322.1, + "median": 2322.1, + "p75": 2836.2, + "p90": 3395.5, + "p95": 3828.5, + "p99": 3984.7, + "p999": 4065.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1788, + "max": 4061, + "count": 175, + "mean": 2507.1, + "p50": 2322.1, + "median": 2322.1, + "p75": 2836.2, + "p90": 3395.5, + "p95": 3828.5, + "p99": 3984.7, + "p999": 4065.2 + }, + "vusers.session_length": { + "min": 1859.4, + "max": 4129.2, + "count": 175, + "mean": 2576.4, + "p50": 2369, + "median": 2369, + "p75": 2893.5, + "p90": 3395.5, + "p95": 3984.7, + "p99": 4065.2, + "p999": 4147.4 + } + }, + "histograms": { + "http.response_time": { + "min": 1788, + "max": 4061, + "count": 175, + "mean": 2507.1, + "p50": 2322.1, + "median": 2322.1, + "p75": 2836.2, + "p90": 3395.5, + "p95": 3828.5, + "p99": 3984.7, + "p999": 4065.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1788, + "max": 4061, + "count": 175, + "mean": 2507.1, + "p50": 2322.1, + "median": 2322.1, + "p75": 2836.2, + "p90": 3395.5, + "p95": 3828.5, + "p99": 3984.7, + "p999": 4065.2 + }, + "vusers.session_length": { + "min": 1859.4, + "max": 4129.2, + "count": 175, + "mean": 2576.4, + "p50": 2369, + "median": 2369, + "p75": 2893.5, + "p90": 3395.5, + "p95": 3984.7, + "p99": 4065.2, + "p999": 4147.4 + } + } + }, + { + "counters": { + "http.codes.200": 190, + "http.responses": 190, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 190, + "vusers.failed": 0, + "vusers.completed": 190, + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317640006, + "firstHistogramAt": 1716317640006, + "lastCounterAt": 1716317649997, + "lastHistogramAt": 1716317649982, + "firstMetricAt": 1716317640006, + "lastMetricAt": 1716317649997, + "period": "1716317640000", + "summaries": { + "http.response_time": { + "min": 1725, + "max": 5535, + "count": 190, + "mean": 3401, + "p50": 3328.3, + "median": 3328.3, + "p75": 4147.4, + "p90": 4770.6, + "p95": 5065.6, + "p99": 5487.5, + "p999": 5487.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1725, + "max": 5535, + "count": 190, + "mean": 3401, + "p50": 3328.3, + "median": 3328.3, + "p75": 4147.4, + "p90": 4770.6, + "p95": 5065.6, + "p99": 5487.5, + "p999": 5487.5 + }, + "vusers.session_length": { + "min": 1794.2, + "max": 5597.3, + "count": 190, + "mean": 3472.8, + "p50": 3464.1, + "median": 3464.1, + "p75": 4231.1, + "p90": 4770.6, + "p95": 5065.6, + "p99": 5598.4, + "p999": 5598.4 + } + }, + "histograms": { + "http.response_time": { + "min": 1725, + "max": 5535, + "count": 190, + "mean": 3401, + "p50": 3328.3, + "median": 3328.3, + "p75": 4147.4, + "p90": 4770.6, + "p95": 5065.6, + "p99": 5487.5, + "p999": 5487.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1725, + "max": 5535, + "count": 190, + "mean": 3401, + "p50": 3328.3, + "median": 3328.3, + "p75": 4147.4, + "p90": 4770.6, + "p95": 5065.6, + "p99": 5487.5, + "p999": 5487.5 + }, + "vusers.session_length": { + "min": 1794.2, + "max": 5597.3, + "count": 190, + "mean": 3472.8, + "p50": 3464.1, + "median": 3464.1, + "p75": 4231.1, + "p90": 4770.6, + "p95": 5065.6, + "p99": 5598.4, + "p999": 5598.4 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 193, + "http.responses": 193, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 193, + "vusers.failed": 0, + "vusers.completed": 193 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317650017, + "firstHistogramAt": 1716317650017, + "lastCounterAt": 1716317659997, + "lastHistogramAt": 1716317659992, + "firstMetricAt": 1716317650017, + "lastMetricAt": 1716317659997, + "period": "1716317650000", + "summaries": { + "http.response_time": { + "min": 2166, + "max": 9876, + "count": 193, + "mean": 3872.2, + "p50": 4065.2, + "median": 4065.2, + "p75": 4867, + "p90": 5168, + "p95": 5378.9, + "p99": 5944.6, + "p999": 6187.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2166, + "max": 9876, + "count": 193, + "mean": 3872.2, + "p50": 4065.2, + "median": 4065.2, + "p75": 4867, + "p90": 5168, + "p95": 5378.9, + "p99": 5944.6, + "p999": 6187.2 + }, + "vusers.session_length": { + "min": 2231.8, + "max": 9951.6, + "count": 193, + "mean": 3940.3, + "p50": 4065.2, + "median": 4065.2, + "p75": 4867, + "p90": 5272.4, + "p95": 5487.5, + "p99": 6064.7, + "p999": 6187.2 + } + }, + "histograms": { + "http.response_time": { + "min": 2166, + "max": 9876, + "count": 193, + "mean": 3872.2, + "p50": 4065.2, + "median": 4065.2, + "p75": 4867, + "p90": 5168, + "p95": 5378.9, + "p99": 5944.6, + "p999": 6187.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2166, + "max": 9876, + "count": 193, + "mean": 3872.2, + "p50": 4065.2, + "median": 4065.2, + "p75": 4867, + "p90": 5168, + "p95": 5378.9, + "p99": 5944.6, + "p999": 6187.2 + }, + "vusers.session_length": { + "min": 2231.8, + "max": 9951.6, + "count": 193, + "mean": 3940.3, + "p50": 4065.2, + "median": 4065.2, + "p75": 4867, + "p90": 5272.4, + "p95": 5487.5, + "p99": 6064.7, + "p999": 6187.2 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 178, + "http.responses": 178, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 178, + "vusers.failed": 0, + "vusers.completed": 178 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317660016, + "firstHistogramAt": 1716317660016, + "lastCounterAt": 1716317669997, + "lastHistogramAt": 1716317669965, + "firstMetricAt": 1716317660016, + "lastMetricAt": 1716317669997, + "period": "1716317660000", + "summaries": { + "http.response_time": { + "min": 1237, + "max": 8511, + "count": 178, + "mean": 4568.5, + "p50": 4770.6, + "median": 4770.6, + "p75": 6064.7, + "p90": 6976.1, + "p95": 7407.5, + "p99": 8024.5, + "p999": 8186.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1237, + "max": 8511, + "count": 178, + "mean": 4568.5, + "p50": 4770.6, + "median": 4770.6, + "p75": 6064.7, + "p90": 6976.1, + "p95": 7407.5, + "p99": 8024.5, + "p999": 8186.6 + }, + "vusers.session_length": { + "min": 1303.1, + "max": 8590.5, + "count": 178, + "mean": 4639, + "p50": 4867, + "median": 4867, + "p75": 6187.2, + "p90": 7117, + "p95": 7557.1, + "p99": 8024.5, + "p999": 8352 + } + }, + "histograms": { + "http.response_time": { + "min": 1237, + "max": 8511, + "count": 178, + "mean": 4568.5, + "p50": 4770.6, + "median": 4770.6, + "p75": 6064.7, + "p90": 6976.1, + "p95": 7407.5, + "p99": 8024.5, + "p999": 8186.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1237, + "max": 8511, + "count": 178, + "mean": 4568.5, + "p50": 4770.6, + "median": 4770.6, + "p75": 6064.7, + "p90": 6976.1, + "p95": 7407.5, + "p99": 8024.5, + "p999": 8186.6 + }, + "vusers.session_length": { + "min": 1303.1, + "max": 8590.5, + "count": 178, + "mean": 4639, + "p50": 4867, + "median": 4867, + "p75": 6187.2, + "p90": 7117, + "p95": 7557.1, + "p99": 8024.5, + "p999": 8352 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 201, + "http.responses": 201, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 201, + "vusers.failed": 0, + "vusers.completed": 201 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317670051, + "firstHistogramAt": 1716317670051, + "lastCounterAt": 1716317679999, + "lastHistogramAt": 1716317679999, + "firstMetricAt": 1716317670051, + "lastMetricAt": 1716317679999, + "period": "1716317670000", + "summaries": { + "http.response_time": { + "min": 1978, + "max": 9628, + "count": 201, + "mean": 5257.6, + "p50": 6439.7, + "median": 6439.7, + "p75": 7117, + "p90": 7709.8, + "p95": 7865.6, + "p99": 9230.4, + "p999": 9416.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1978, + "max": 9628, + "count": 201, + "mean": 5257.6, + "p50": 6439.7, + "median": 6439.7, + "p75": 7117, + "p90": 7709.8, + "p95": 7865.6, + "p99": 9230.4, + "p999": 9416.8 + }, + "vusers.session_length": { + "min": 2038.6, + "max": 9691.9, + "count": 201, + "mean": 5323.3, + "p50": 6569.8, + "median": 6569.8, + "p75": 7260.8, + "p90": 7709.8, + "p95": 7865.6, + "p99": 9416.8, + "p999": 9416.8 + } + }, + "histograms": { + "http.response_time": { + "min": 1978, + "max": 9628, + "count": 201, + "mean": 5257.6, + "p50": 6439.7, + "median": 6439.7, + "p75": 7117, + "p90": 7709.8, + "p95": 7865.6, + "p99": 9230.4, + "p999": 9416.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1978, + "max": 9628, + "count": 201, + "mean": 5257.6, + "p50": 6439.7, + "median": 6439.7, + "p75": 7117, + "p90": 7709.8, + "p95": 7865.6, + "p99": 9230.4, + "p999": 9416.8 + }, + "vusers.session_length": { + "min": 2038.6, + "max": 9691.9, + "count": 201, + "mean": 5323.3, + "p50": 6569.8, + "median": 6569.8, + "p75": 7260.8, + "p90": 7709.8, + "p95": 7865.6, + "p99": 9416.8, + "p999": 9416.8 + } + } + }, + { + "counters": { + "http.codes.200": 207, + "http.responses": 207, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 207, + "vusers.failed": 0, + "vusers.completed": 207, + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317680071, + "firstHistogramAt": 1716317680071, + "lastCounterAt": 1716317689997, + "lastHistogramAt": 1716317689954, + "firstMetricAt": 1716317680071, + "lastMetricAt": 1716317689997, + "period": "1716317680000", + "summaries": { + "http.response_time": { + "min": 2817, + "max": 8921, + "count": 207, + "mean": 5136.1, + "p50": 5487.5, + "median": 5487.5, + "p75": 6312.2, + "p90": 6838, + "p95": 6976.1, + "p99": 7865.6, + "p999": 8024.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2817, + "max": 8921, + "count": 207, + "mean": 5136.1, + "p50": 5487.5, + "median": 5487.5, + "p75": 6312.2, + "p90": 6838, + "p95": 6976.1, + "p99": 7865.6, + "p999": 8024.5 + }, + "vusers.session_length": { + "min": 2892, + "max": 8983.9, + "count": 207, + "mean": 5203.9, + "p50": 5487.5, + "median": 5487.5, + "p75": 6312.2, + "p90": 6838, + "p95": 7117, + "p99": 7865.6, + "p999": 8024.5 + } + }, + "histograms": { + "http.response_time": { + "min": 2817, + "max": 8921, + "count": 207, + "mean": 5136.1, + "p50": 5487.5, + "median": 5487.5, + "p75": 6312.2, + "p90": 6838, + "p95": 6976.1, + "p99": 7865.6, + "p999": 8024.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2817, + "max": 8921, + "count": 207, + "mean": 5136.1, + "p50": 5487.5, + "median": 5487.5, + "p75": 6312.2, + "p90": 6838, + "p95": 6976.1, + "p99": 7865.6, + "p999": 8024.5 + }, + "vusers.session_length": { + "min": 2892, + "max": 8983.9, + "count": 207, + "mean": 5203.9, + "p50": 5487.5, + "median": 5487.5, + "p75": 6312.2, + "p90": 6838, + "p95": 7117, + "p99": 7865.6, + "p999": 8024.5 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 177, + "http.responses": 177, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 177, + "vusers.failed": 0, + "vusers.completed": 177 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317690045, + "firstHistogramAt": 1716317690045, + "lastCounterAt": 1716317699997, + "lastHistogramAt": 1716317699997, + "firstMetricAt": 1716317690045, + "lastMetricAt": 1716317699997, + "period": "1716317690000", + "summaries": { + "http.response_time": { + "min": 1137, + "max": 7206, + "count": 177, + "mean": 4873.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6187.2, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1137, + "max": 7206, + "count": 177, + "mean": 4873.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6187.2, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "vusers.session_length": { + "min": 1197.6, + "max": 7268.8, + "count": 177, + "mean": 4941.8, + "p50": 4965.3, + "median": 4965.3, + "p75": 5598.4, + "p90": 6187.2, + "p95": 6569.8, + "p99": 6976.1, + "p999": 7260.8 + } + }, + "histograms": { + "http.response_time": { + "min": 1137, + "max": 7206, + "count": 177, + "mean": 4873.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6187.2, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1137, + "max": 7206, + "count": 177, + "mean": 4873.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6187.2, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "vusers.session_length": { + "min": 1197.6, + "max": 7268.8, + "count": 177, + "mean": 4941.8, + "p50": 4965.3, + "median": 4965.3, + "p75": 5598.4, + "p90": 6187.2, + "p95": 6569.8, + "p99": 6976.1, + "p999": 7260.8 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 194, + "http.responses": 194, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 194, + "vusers.failed": 0, + "vusers.completed": 194 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317700044, + "firstHistogramAt": 1716317700044, + "lastCounterAt": 1716317709997, + "lastHistogramAt": 1716317709958, + "firstMetricAt": 1716317700044, + "lastMetricAt": 1716317709997, + "period": "1716317700000", + "summaries": { + "http.response_time": { + "min": 1881, + "max": 12494, + "count": 194, + "mean": 5875.9, + "p50": 6838, + "median": 6838, + "p75": 8352, + "p90": 9230.4, + "p95": 9801.2, + "p99": 10407.3, + "p999": 11050.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1881, + "max": 12494, + "count": 194, + "mean": 5875.9, + "p50": 6838, + "median": 6838, + "p75": 8352, + "p90": 9230.4, + "p95": 9801.2, + "p99": 10407.3, + "p999": 11050.8 + }, + "vusers.session_length": { + "min": 1940.9, + "max": 12551.3, + "count": 194, + "mean": 5947.7, + "p50": 6976.1, + "median": 6976.1, + "p75": 8352, + "p90": 9230.4, + "p95": 9801.2, + "p99": 10407.3, + "p999": 11274.1 + } + }, + "histograms": { + "http.response_time": { + "min": 1881, + "max": 12494, + "count": 194, + "mean": 5875.9, + "p50": 6838, + "median": 6838, + "p75": 8352, + "p90": 9230.4, + "p95": 9801.2, + "p99": 10407.3, + "p999": 11050.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1881, + "max": 12494, + "count": 194, + "mean": 5875.9, + "p50": 6838, + "median": 6838, + "p75": 8352, + "p90": 9230.4, + "p95": 9801.2, + "p99": 10407.3, + "p999": 11050.8 + }, + "vusers.session_length": { + "min": 1940.9, + "max": 12551.3, + "count": 194, + "mean": 5947.7, + "p50": 6976.1, + "median": 6976.1, + "p75": 8352, + "p90": 9230.4, + "p95": 9801.2, + "p99": 10407.3, + "p999": 11274.1 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 202, + "http.responses": 202, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 202, + "vusers.failed": 0, + "vusers.completed": 202 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317710025, + "firstHistogramAt": 1716317710025, + "lastCounterAt": 1716317719997, + "lastHistogramAt": 1716317719969, + "firstMetricAt": 1716317710025, + "lastMetricAt": 1716317719997, + "period": "1716317710000", + "summaries": { + "http.response_time": { + "min": 3108, + "max": 12775, + "count": 202, + "mean": 6378.6, + "p50": 6976.1, + "median": 6976.1, + "p75": 8186.6, + "p90": 9047.6, + "p95": 9416.8, + "p99": 11274.1, + "p999": 11501.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3108, + "max": 12775, + "count": 202, + "mean": 6378.6, + "p50": 6976.1, + "median": 6976.1, + "p75": 8186.6, + "p90": 9047.6, + "p95": 9416.8, + "p99": 11274.1, + "p999": 11501.8 + }, + "vusers.session_length": { + "min": 3175.8, + "max": 12836.3, + "count": 202, + "mean": 6446.6, + "p50": 7117, + "median": 7117, + "p75": 8186.6, + "p90": 9047.6, + "p95": 9607.1, + "p99": 11274.1, + "p999": 11734.2 + } + }, + "histograms": { + "http.response_time": { + "min": 3108, + "max": 12775, + "count": 202, + "mean": 6378.6, + "p50": 6976.1, + "median": 6976.1, + "p75": 8186.6, + "p90": 9047.6, + "p95": 9416.8, + "p99": 11274.1, + "p999": 11501.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3108, + "max": 12775, + "count": 202, + "mean": 6378.6, + "p50": 6976.1, + "median": 6976.1, + "p75": 8186.6, + "p90": 9047.6, + "p95": 9416.8, + "p99": 11274.1, + "p999": 11501.8 + }, + "vusers.session_length": { + "min": 3175.8, + "max": 12836.3, + "count": 202, + "mean": 6446.6, + "p50": 7117, + "median": 7117, + "p75": 8186.6, + "p90": 9047.6, + "p95": 9607.1, + "p99": 11274.1, + "p999": 11734.2 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 188, + "http.responses": 188, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 188, + "vusers.failed": 0, + "vusers.completed": 188 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317720023, + "firstHistogramAt": 1716317720023, + "lastCounterAt": 1716317729997, + "lastHistogramAt": 1716317729957, + "firstMetricAt": 1716317720023, + "lastMetricAt": 1716317729997, + "period": "1716317720000", + "summaries": { + "http.response_time": { + "min": 1303, + "max": 9329, + "count": 188, + "mean": 5781.8, + "p50": 6064.7, + "median": 6064.7, + "p75": 7117, + "p90": 7865.6, + "p95": 8186.6, + "p99": 8692.8, + "p999": 9230.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1303, + "max": 9329, + "count": 188, + "mean": 5781.8, + "p50": 6064.7, + "median": 6064.7, + "p75": 7117, + "p90": 7865.6, + "p95": 8186.6, + "p99": 8692.8, + "p999": 9230.4 + }, + "vusers.session_length": { + "min": 1371.6, + "max": 9395.4, + "count": 188, + "mean": 5849, + "p50": 6187.2, + "median": 6187.2, + "p75": 7117, + "p90": 7865.6, + "p95": 8352, + "p99": 8868.4, + "p999": 9416.8 + } + }, + "histograms": { + "http.response_time": { + "min": 1303, + "max": 9329, + "count": 188, + "mean": 5781.8, + "p50": 6064.7, + "median": 6064.7, + "p75": 7117, + "p90": 7865.6, + "p95": 8186.6, + "p99": 8692.8, + "p999": 9230.4 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1303, + "max": 9329, + "count": 188, + "mean": 5781.8, + "p50": 6064.7, + "median": 6064.7, + "p75": 7117, + "p90": 7865.6, + "p95": 8186.6, + "p99": 8692.8, + "p999": 9230.4 + }, + "vusers.session_length": { + "min": 1371.6, + "max": 9395.4, + "count": 188, + "mean": 5849, + "p50": 6187.2, + "median": 6187.2, + "p75": 7117, + "p90": 7865.6, + "p95": 8352, + "p99": 8868.4, + "p999": 9416.8 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 200, + "vusers.created": 200, + "http.requests": 200, + "http.codes.200": 197, + "http.responses": 197, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 197, + "vusers.failed": 0, + "vusers.completed": 197 + }, + "rates": { + "http.request_rate": 20 + }, + "http.request_rate": null, + "firstCounterAt": 1716317730016, + "firstHistogramAt": 1716317730016, + "lastCounterAt": 1716317739998, + "lastHistogramAt": 1716317739998, + "firstMetricAt": 1716317730016, + "lastMetricAt": 1716317739998, + "period": "1716317730000", + "summaries": { + "http.response_time": { + "min": 2031, + "max": 15604, + "count": 197, + "mean": 7188.6, + "p50": 8186.6, + "median": 8186.6, + "p75": 9047.6, + "p90": 9999.2, + "p95": 14048.5, + "p99": 15218.6, + "p999": 15218.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2031, + "max": 15604, + "count": 197, + "mean": 7188.6, + "p50": 8186.6, + "median": 8186.6, + "p75": 9047.6, + "p90": 9999.2, + "p95": 14048.5, + "p99": 15218.6, + "p999": 15218.6 + }, + "vusers.session_length": { + "min": 2094.7, + "max": 15666, + "count": 197, + "mean": 7256.9, + "p50": 8352, + "median": 8352, + "p75": 9047.6, + "p90": 9999.2, + "p95": 14048.5, + "p99": 15218.6, + "p999": 15218.6 + } + }, + "histograms": { + "http.response_time": { + "min": 2031, + "max": 15604, + "count": 197, + "mean": 7188.6, + "p50": 8186.6, + "median": 8186.6, + "p75": 9047.6, + "p90": 9999.2, + "p95": 14048.5, + "p99": 15218.6, + "p999": 15218.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2031, + "max": 15604, + "count": 197, + "mean": 7188.6, + "p50": 8186.6, + "median": 8186.6, + "p75": 9047.6, + "p90": 9999.2, + "p95": 14048.5, + "p99": 15218.6, + "p999": 15218.6 + }, + "vusers.session_length": { + "min": 2094.7, + "max": 15666, + "count": 197, + "mean": 7256.9, + "p50": 8352, + "median": 8352, + "p75": 9047.6, + "p90": 9999.2, + "p95": 14048.5, + "p99": 15218.6, + "p999": 15218.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 233, + "vusers.created": 233, + "http.requests": 233, + "http.codes.200": 211, + "http.responses": 212, + "http.downloaded_bytes": 0, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 211, + "vusers.failed": 1, + "vusers.completed": 211, + "http.codes.502": 1, + "plugins.metrics-by-endpoint./v0/scrape.codes.502": 1, + "errors.Failed capture or match": 1 + }, + "rates": { + "http.request_rate": 23 + }, + "http.request_rate": null, + "firstCounterAt": 1716317740011, + "firstHistogramAt": 1716317740011, + "lastCounterAt": 1716317749963, + "lastHistogramAt": 1716317749438, + "firstMetricAt": 1716317740011, + "lastMetricAt": 1716317749963, + "period": "1716317740000", + "summaries": { + "http.response_time": { + "min": 281, + "max": 15578, + "count": 212, + "mean": 5976.4, + "p50": 5598.4, + "median": 5598.4, + "p75": 8186.6, + "p90": 8692.8, + "p95": 9047.6, + "p99": 9801.2, + "p999": 9801.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 281, + "max": 15578, + "count": 212, + "mean": 5976.4, + "p50": 5598.4, + "median": 5598.4, + "p75": 8186.6, + "p90": 8692.8, + "p95": 9047.6, + "p99": 9801.2, + "p999": 9801.2 + }, + "vusers.session_length": { + "min": 1174.3, + "max": 15643.2, + "count": 211, + "mean": 6069.3, + "p50": 5826.9, + "median": 5826.9, + "p75": 8186.6, + "p90": 8868.4, + "p95": 9047.6, + "p99": 9801.2, + "p999": 9999.2 + } + }, + "histograms": { + "http.response_time": { + "min": 281, + "max": 15578, + "count": 212, + "mean": 5976.4, + "p50": 5598.4, + "median": 5598.4, + "p75": 8186.6, + "p90": 8692.8, + "p95": 9047.6, + "p99": 9801.2, + "p999": 9801.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 281, + "max": 15578, + "count": 212, + "mean": 5976.4, + "p50": 5598.4, + "median": 5598.4, + "p75": 8186.6, + "p90": 8692.8, + "p95": 9047.6, + "p99": 9801.2, + "p999": 9801.2 + }, + "vusers.session_length": { + "min": 1174.3, + "max": 15643.2, + "count": 211, + "mean": 6069.3, + "p50": 5826.9, + "median": 5826.9, + "p75": 8186.6, + "p90": 8868.4, + "p95": 9047.6, + "p99": 9801.2, + "p999": 9999.2 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 297, + "http.responses": 297, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 297, + "vusers.failed": 0, + "vusers.completed": 297 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317750007, + "firstHistogramAt": 1716317750070, + "lastCounterAt": 1716317759985, + "lastHistogramAt": 1716317759985, + "firstMetricAt": 1716317750007, + "lastMetricAt": 1716317759985, + "period": "1716317750000", + "summaries": { + "http.response_time": { + "min": 2703, + "max": 13170, + "count": 297, + "mean": 6026.6, + "p50": 4867, + "median": 4867, + "p75": 8352, + "p90": 9416.8, + "p95": 10407.3, + "p99": 12459.8, + "p999": 12968.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2703, + "max": 13170, + "count": 297, + "mean": 6026.6, + "p50": 4867, + "median": 4867, + "p75": 8352, + "p90": 9416.8, + "p95": 10407.3, + "p99": 12459.8, + "p999": 12968.3 + }, + "vusers.session_length": { + "min": 2765.7, + "max": 13238.5, + "count": 297, + "mean": 6096.6, + "p50": 4867, + "median": 4867, + "p75": 8352, + "p90": 9416.8, + "p95": 10407.3, + "p99": 12459.8, + "p999": 12968.3 + } + }, + "histograms": { + "http.response_time": { + "min": 2703, + "max": 13170, + "count": 297, + "mean": 6026.6, + "p50": 4867, + "median": 4867, + "p75": 8352, + "p90": 9416.8, + "p95": 10407.3, + "p99": 12459.8, + "p999": 12968.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2703, + "max": 13170, + "count": 297, + "mean": 6026.6, + "p50": 4867, + "median": 4867, + "p75": 8352, + "p90": 9416.8, + "p95": 10407.3, + "p99": 12459.8, + "p999": 12968.3 + }, + "vusers.session_length": { + "min": 2765.7, + "max": 13238.5, + "count": 297, + "mean": 6096.6, + "p50": 4867, + "median": 4867, + "p75": 8352, + "p90": 9416.8, + "p95": 10407.3, + "p99": 12459.8, + "p999": 12968.3 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 310, + "http.responses": 311, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 310, + "vusers.failed": 1, + "vusers.completed": 310, + "http.downloaded_bytes": 0, + "http.codes.502": 1, + "plugins.metrics-by-endpoint./v0/scrape.codes.502": 1, + "errors.Failed capture or match": 1 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317760001, + "firstHistogramAt": 1716317760001, + "lastCounterAt": 1716317769967, + "lastHistogramAt": 1716317769967, + "firstMetricAt": 1716317760001, + "lastMetricAt": 1716317769967, + "period": "1716317760000", + "summaries": { + "http.response_time": { + "min": 65, + "max": 8014, + "count": 311, + "mean": 5296.5, + "p50": 5272.4, + "median": 5272.4, + "p75": 5711.5, + "p90": 6439.7, + "p95": 7117, + "p99": 7865.6, + "p999": 8024.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 65, + "max": 8014, + "count": 311, + "mean": 5296.5, + "p50": 5272.4, + "median": 5272.4, + "p75": 5711.5, + "p90": 6439.7, + "p95": 7117, + "p99": 7865.6, + "p999": 8024.5 + }, + "vusers.session_length": { + "min": 3374.9, + "max": 8078.7, + "count": 310, + "mean": 5386.1, + "p50": 5272.4, + "median": 5272.4, + "p75": 5826.9, + "p90": 6569.8, + "p95": 7260.8, + "p99": 8024.5, + "p999": 8024.5 + } + }, + "histograms": { + "http.response_time": { + "min": 65, + "max": 8014, + "count": 311, + "mean": 5296.5, + "p50": 5272.4, + "median": 5272.4, + "p75": 5711.5, + "p90": 6439.7, + "p95": 7117, + "p99": 7865.6, + "p999": 8024.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 65, + "max": 8014, + "count": 311, + "mean": 5296.5, + "p50": 5272.4, + "median": 5272.4, + "p75": 5711.5, + "p90": 6439.7, + "p95": 7117, + "p99": 7865.6, + "p999": 8024.5 + }, + "vusers.session_length": { + "min": 3374.9, + "max": 8078.7, + "count": 310, + "mean": 5386.1, + "p50": 5272.4, + "median": 5272.4, + "p75": 5826.9, + "p90": 6569.8, + "p95": 7260.8, + "p99": 8024.5, + "p999": 8024.5 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 299, + "http.responses": 299, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 299, + "vusers.failed": 0, + "vusers.completed": 299 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317770007, + "firstHistogramAt": 1716317770027, + "lastCounterAt": 1716317779996, + "lastHistogramAt": 1716317779996, + "firstMetricAt": 1716317770007, + "lastMetricAt": 1716317779996, + "period": "1716317770000", + "summaries": { + "http.response_time": { + "min": 3256, + "max": 7236, + "count": 299, + "mean": 4982.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6064.7, + "p95": 6312.2, + "p99": 6702.6, + "p999": 6702.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3256, + "max": 7236, + "count": 299, + "mean": 4982.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6064.7, + "p95": 6312.2, + "p99": 6702.6, + "p999": 6702.6 + }, + "vusers.session_length": { + "min": 3320.9, + "max": 7299.4, + "count": 299, + "mean": 5054.7, + "p50": 4867, + "median": 4867, + "p75": 5598.4, + "p90": 6187.2, + "p95": 6439.7, + "p99": 6702.6, + "p999": 6838 + } + }, + "histograms": { + "http.response_time": { + "min": 3256, + "max": 7236, + "count": 299, + "mean": 4982.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6064.7, + "p95": 6312.2, + "p99": 6702.6, + "p999": 6702.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3256, + "max": 7236, + "count": 299, + "mean": 4982.3, + "p50": 4867, + "median": 4867, + "p75": 5487.5, + "p90": 6064.7, + "p95": 6312.2, + "p99": 6702.6, + "p999": 6702.6 + }, + "vusers.session_length": { + "min": 3320.9, + "max": 7299.4, + "count": 299, + "mean": 5054.7, + "p50": 4867, + "median": 4867, + "p75": 5598.4, + "p90": 6187.2, + "p95": 6439.7, + "p99": 6702.6, + "p999": 6838 + } + } + }, + { + "counters": { + "http.codes.200": 309, + "http.responses": 311, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 309, + "vusers.failed": 2, + "vusers.completed": 309, + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.downloaded_bytes": 0, + "http.codes.502": 2, + "plugins.metrics-by-endpoint./v0/scrape.codes.502": 2, + "errors.Failed capture or match": 2 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317780001, + "firstHistogramAt": 1716317780001, + "lastCounterAt": 1716317789981, + "lastHistogramAt": 1716317789981, + "firstMetricAt": 1716317780001, + "lastMetricAt": 1716317789981, + "period": "1716317780000", + "summaries": { + "http.response_time": { + "min": 62, + "max": 8291, + "count": 311, + "mean": 4825.5, + "p50": 4583.6, + "median": 4583.6, + "p75": 5378.9, + "p90": 6569.8, + "p95": 6838, + "p99": 7709.8, + "p999": 7709.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 62, + "max": 8291, + "count": 311, + "mean": 4825.5, + "p50": 4583.6, + "median": 4583.6, + "p75": 5378.9, + "p90": 6569.8, + "p95": 6838, + "p99": 7709.8, + "p999": 7709.8 + }, + "vusers.session_length": { + "min": 3281.2, + "max": 8351.9, + "count": 309, + "mean": 4925.2, + "p50": 4676.2, + "median": 4676.2, + "p75": 5487.5, + "p90": 6569.8, + "p95": 6838, + "p99": 7709.8, + "p999": 7865.6 + } + }, + "histograms": { + "http.response_time": { + "min": 62, + "max": 8291, + "count": 311, + "mean": 4825.5, + "p50": 4583.6, + "median": 4583.6, + "p75": 5378.9, + "p90": 6569.8, + "p95": 6838, + "p99": 7709.8, + "p999": 7709.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 62, + "max": 8291, + "count": 311, + "mean": 4825.5, + "p50": 4583.6, + "median": 4583.6, + "p75": 5378.9, + "p90": 6569.8, + "p95": 6838, + "p99": 7709.8, + "p999": 7709.8 + }, + "vusers.session_length": { + "min": 3281.2, + "max": 8351.9, + "count": 309, + "mean": 4925.2, + "p50": 4676.2, + "median": 4676.2, + "p75": 5487.5, + "p90": 6569.8, + "p95": 6838, + "p99": 7709.8, + "p999": 7865.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 298, + "http.responses": 298, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 298, + "vusers.failed": 0, + "vusers.completed": 298 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317790007, + "firstHistogramAt": 1716317790053, + "lastCounterAt": 1716317799988, + "lastHistogramAt": 1716317799988, + "firstMetricAt": 1716317790007, + "lastMetricAt": 1716317799988, + "period": "1716317790000", + "summaries": { + "http.response_time": { + "min": 2525, + "max": 7325, + "count": 298, + "mean": 4693.4, + "p50": 4492.8, + "median": 4492.8, + "p75": 5598.4, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7260.8, + "p999": 7260.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2525, + "max": 7325, + "count": 298, + "mean": 4693.4, + "p50": 4492.8, + "median": 4492.8, + "p75": 5598.4, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7260.8, + "p999": 7260.8 + }, + "vusers.session_length": { + "min": 2597.3, + "max": 7411.8, + "count": 298, + "mean": 4765, + "p50": 4583.6, + "median": 4583.6, + "p75": 5598.4, + "p90": 6439.7, + "p95": 6838, + "p99": 7260.8, + "p999": 7407.5 + } + }, + "histograms": { + "http.response_time": { + "min": 2525, + "max": 7325, + "count": 298, + "mean": 4693.4, + "p50": 4492.8, + "median": 4492.8, + "p75": 5598.4, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7260.8, + "p999": 7260.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2525, + "max": 7325, + "count": 298, + "mean": 4693.4, + "p50": 4492.8, + "median": 4492.8, + "p75": 5598.4, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7260.8, + "p999": 7260.8 + }, + "vusers.session_length": { + "min": 2597.3, + "max": 7411.8, + "count": 298, + "mean": 4765, + "p50": 4583.6, + "median": 4583.6, + "p75": 5598.4, + "p90": 6439.7, + "p95": 6838, + "p99": 7260.8, + "p999": 7407.5 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 294, + "http.responses": 294, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 294, + "vusers.failed": 0, + "vusers.completed": 294 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317800004, + "firstHistogramAt": 1716317800004, + "lastCounterAt": 1716317809963, + "lastHistogramAt": 1716317809889, + "firstMetricAt": 1716317800004, + "lastMetricAt": 1716317809963, + "period": "1716317800000", + "summaries": { + "http.response_time": { + "min": 2639, + "max": 7453, + "count": 294, + "mean": 5093.8, + "p50": 5168, + "median": 5168, + "p75": 5598.4, + "p90": 6064.7, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2639, + "max": 7453, + "count": 294, + "mean": 5093.8, + "p50": 5168, + "median": 5168, + "p75": 5598.4, + "p90": 6064.7, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "vusers.session_length": { + "min": 2699.9, + "max": 7518.9, + "count": 294, + "mean": 5164.6, + "p50": 5272.4, + "median": 5272.4, + "p75": 5711.5, + "p90": 6187.2, + "p95": 6439.7, + "p99": 7117, + "p999": 7117 + } + }, + "histograms": { + "http.response_time": { + "min": 2639, + "max": 7453, + "count": 294, + "mean": 5093.8, + "p50": 5168, + "median": 5168, + "p75": 5598.4, + "p90": 6064.7, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2639, + "max": 7453, + "count": 294, + "mean": 5093.8, + "p50": 5168, + "median": 5168, + "p75": 5598.4, + "p90": 6064.7, + "p95": 6439.7, + "p99": 6976.1, + "p999": 7117 + }, + "vusers.session_length": { + "min": 2699.9, + "max": 7518.9, + "count": 294, + "mean": 5164.6, + "p50": 5272.4, + "median": 5272.4, + "p75": 5711.5, + "p90": 6187.2, + "p95": 6439.7, + "p99": 7117, + "p999": 7117 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 302, + "http.responses": 302, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 302, + "vusers.failed": 0, + "vusers.completed": 302 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317810006, + "firstHistogramAt": 1716317810059, + "lastCounterAt": 1716317819987, + "lastHistogramAt": 1716317819987, + "firstMetricAt": 1716317810006, + "lastMetricAt": 1716317819987, + "period": "1716317810000", + "summaries": { + "http.response_time": { + "min": 3094, + "max": 6873, + "count": 302, + "mean": 4973.4, + "p50": 4965.3, + "median": 4965.3, + "p75": 5378.9, + "p90": 5826.9, + "p95": 5944.6, + "p99": 6439.7, + "p999": 6569.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3094, + "max": 6873, + "count": 302, + "mean": 4973.4, + "p50": 4965.3, + "median": 4965.3, + "p75": 5378.9, + "p90": 5826.9, + "p95": 5944.6, + "p99": 6439.7, + "p999": 6569.8 + }, + "vusers.session_length": { + "min": 3170.7, + "max": 6932.6, + "count": 302, + "mean": 5042.1, + "p50": 5065.6, + "median": 5065.6, + "p75": 5487.5, + "p90": 5826.9, + "p95": 5944.6, + "p99": 6439.7, + "p999": 6702.6 + } + }, + "histograms": { + "http.response_time": { + "min": 3094, + "max": 6873, + "count": 302, + "mean": 4973.4, + "p50": 4965.3, + "median": 4965.3, + "p75": 5378.9, + "p90": 5826.9, + "p95": 5944.6, + "p99": 6439.7, + "p999": 6569.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3094, + "max": 6873, + "count": 302, + "mean": 4973.4, + "p50": 4965.3, + "median": 4965.3, + "p75": 5378.9, + "p90": 5826.9, + "p95": 5944.6, + "p99": 6439.7, + "p999": 6569.8 + }, + "vusers.session_length": { + "min": 3170.7, + "max": 6932.6, + "count": 302, + "mean": 5042.1, + "p50": 5065.6, + "median": 5065.6, + "p75": 5487.5, + "p90": 5826.9, + "p95": 5944.6, + "p99": 6439.7, + "p999": 6702.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 292, + "http.responses": 292, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 292, + "vusers.failed": 0, + "vusers.completed": 292 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317820006, + "firstHistogramAt": 1716317820038, + "lastCounterAt": 1716317829982, + "lastHistogramAt": 1716317829982, + "firstMetricAt": 1716317820006, + "lastMetricAt": 1716317829982, + "period": "1716317820000", + "summaries": { + "http.response_time": { + "min": 2810, + "max": 10893, + "count": 292, + "mean": 5125.7, + "p50": 4965.3, + "median": 4965.3, + "p75": 5826.9, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7557.1, + "p999": 8024.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2810, + "max": 10893, + "count": 292, + "mean": 5125.7, + "p50": 4965.3, + "median": 4965.3, + "p75": 5826.9, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7557.1, + "p999": 8024.5 + }, + "vusers.session_length": { + "min": 2879.2, + "max": 10953.5, + "count": 292, + "mean": 5197.3, + "p50": 5065.6, + "median": 5065.6, + "p75": 5826.9, + "p90": 6439.7, + "p95": 6838, + "p99": 7709.8, + "p999": 8186.6 + } + }, + "histograms": { + "http.response_time": { + "min": 2810, + "max": 10893, + "count": 292, + "mean": 5125.7, + "p50": 4965.3, + "median": 4965.3, + "p75": 5826.9, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7557.1, + "p999": 8024.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2810, + "max": 10893, + "count": 292, + "mean": 5125.7, + "p50": 4965.3, + "median": 4965.3, + "p75": 5826.9, + "p90": 6439.7, + "p95": 6702.6, + "p99": 7557.1, + "p999": 8024.5 + }, + "vusers.session_length": { + "min": 2879.2, + "max": 10953.5, + "count": 292, + "mean": 5197.3, + "p50": 5065.6, + "median": 5065.6, + "p75": 5826.9, + "p90": 6439.7, + "p95": 6838, + "p99": 7709.8, + "p999": 8186.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 280, + "http.responses": 280, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 280, + "vusers.failed": 0, + "vusers.completed": 280 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317830003, + "firstHistogramAt": 1716317830003, + "lastCounterAt": 1716317839994, + "lastHistogramAt": 1716317839994, + "firstMetricAt": 1716317830003, + "lastMetricAt": 1716317839994, + "period": "1716317830000", + "summaries": { + "http.response_time": { + "min": 2052, + "max": 8277, + "count": 280, + "mean": 5448.2, + "p50": 5598.4, + "median": 5598.4, + "p75": 6312.2, + "p90": 6838, + "p95": 7260.8, + "p99": 7709.8, + "p999": 7865.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2052, + "max": 8277, + "count": 280, + "mean": 5448.2, + "p50": 5598.4, + "median": 5598.4, + "p75": 6312.2, + "p90": 6838, + "p95": 7260.8, + "p99": 7709.8, + "p999": 7865.6 + }, + "vusers.session_length": { + "min": 2119.8, + "max": 8344.4, + "count": 280, + "mean": 5516.7, + "p50": 5711.5, + "median": 5711.5, + "p75": 6439.7, + "p90": 6976.1, + "p95": 7260.8, + "p99": 7865.6, + "p999": 8024.5 + } + }, + "histograms": { + "http.response_time": { + "min": 2052, + "max": 8277, + "count": 280, + "mean": 5448.2, + "p50": 5598.4, + "median": 5598.4, + "p75": 6312.2, + "p90": 6838, + "p95": 7260.8, + "p99": 7709.8, + "p999": 7865.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2052, + "max": 8277, + "count": 280, + "mean": 5448.2, + "p50": 5598.4, + "median": 5598.4, + "p75": 6312.2, + "p90": 6838, + "p95": 7260.8, + "p99": 7709.8, + "p999": 7865.6 + }, + "vusers.session_length": { + "min": 2119.8, + "max": 8344.4, + "count": 280, + "mean": 5516.7, + "p50": 5711.5, + "median": 5711.5, + "p75": 6439.7, + "p90": 6976.1, + "p95": 7260.8, + "p99": 7865.6, + "p999": 8024.5 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 305, + "http.responses": 305, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 305, + "vusers.failed": 0, + "vusers.completed": 305 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317840006, + "firstHistogramAt": 1716317840044, + "lastCounterAt": 1716317849988, + "lastHistogramAt": 1716317849988, + "firstMetricAt": 1716317840006, + "lastMetricAt": 1716317849988, + "period": "1716317840000", + "summaries": { + "http.response_time": { + "min": 3239, + "max": 9192, + "count": 305, + "mean": 5936.4, + "p50": 6064.7, + "median": 6064.7, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8352, + "p999": 8520.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3239, + "max": 9192, + "count": 305, + "mean": 5936.4, + "p50": 6064.7, + "median": 6064.7, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8352, + "p999": 8520.7 + }, + "vusers.session_length": { + "min": 3301.9, + "max": 9430.5, + "count": 305, + "mean": 6005.9, + "p50": 6187.2, + "median": 6187.2, + "p75": 6976.1, + "p90": 7557.1, + "p95": 7709.8, + "p99": 8352, + "p999": 8520.7 + } + }, + "histograms": { + "http.response_time": { + "min": 3239, + "max": 9192, + "count": 305, + "mean": 5936.4, + "p50": 6064.7, + "median": 6064.7, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8352, + "p999": 8520.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3239, + "max": 9192, + "count": 305, + "mean": 5936.4, + "p50": 6064.7, + "median": 6064.7, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8352, + "p999": 8520.7 + }, + "vusers.session_length": { + "min": 3301.9, + "max": 9430.5, + "count": 305, + "mean": 6005.9, + "p50": 6187.2, + "median": 6187.2, + "p75": 6976.1, + "p90": 7557.1, + "p95": 7709.8, + "p99": 8352, + "p999": 8520.7 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 277, + "http.responses": 277, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 277, + "vusers.failed": 0, + "vusers.completed": 277 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317850006, + "firstHistogramAt": 1716317850024, + "lastCounterAt": 1716317859962, + "lastHistogramAt": 1716317859927, + "firstMetricAt": 1716317850006, + "lastMetricAt": 1716317859962, + "period": "1716317850000", + "summaries": { + "http.response_time": { + "min": 4402, + "max": 8245, + "count": 277, + "mean": 6261.7, + "p50": 6187.2, + "median": 6187.2, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8024.5, + "p999": 8186.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 4402, + "max": 8245, + "count": 277, + "mean": 6261.7, + "p50": 6187.2, + "median": 6187.2, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8024.5, + "p999": 8186.6 + }, + "vusers.session_length": { + "min": 4467.8, + "max": 8866.9, + "count": 277, + "mean": 6368.3, + "p50": 6312.2, + "median": 6312.2, + "p75": 6976.1, + "p90": 7557.1, + "p95": 7865.6, + "p99": 8352, + "p999": 8352 + } + }, + "histograms": { + "http.response_time": { + "min": 4402, + "max": 8245, + "count": 277, + "mean": 6261.7, + "p50": 6187.2, + "median": 6187.2, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8024.5, + "p999": 8186.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 4402, + "max": 8245, + "count": 277, + "mean": 6261.7, + "p50": 6187.2, + "median": 6187.2, + "p75": 6838, + "p90": 7407.5, + "p95": 7709.8, + "p99": 8024.5, + "p999": 8186.6 + }, + "vusers.session_length": { + "min": 4467.8, + "max": 8866.9, + "count": 277, + "mean": 6368.3, + "p50": 6312.2, + "median": 6312.2, + "p75": 6976.1, + "p90": 7557.1, + "p95": 7865.6, + "p99": 8352, + "p999": 8352 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 265, + "http.responses": 265, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 265, + "vusers.failed": 0, + "vusers.completed": 265 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317860003, + "firstHistogramAt": 1716317860003, + "lastCounterAt": 1716317869962, + "lastHistogramAt": 1716317869960, + "firstMetricAt": 1716317860003, + "lastMetricAt": 1716317869962, + "period": "1716317860000", + "summaries": { + "http.response_time": { + "min": 5140, + "max": 9746, + "count": 265, + "mean": 6978.4, + "p50": 6976.1, + "median": 6976.1, + "p75": 7865.6, + "p90": 8520.7, + "p95": 8868.4, + "p99": 9416.8, + "p999": 9607.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 5140, + "max": 9746, + "count": 265, + "mean": 6978.4, + "p50": 6976.1, + "median": 6976.1, + "p75": 7865.6, + "p90": 8520.7, + "p95": 8868.4, + "p99": 9416.8, + "p999": 9607.1 + }, + "vusers.session_length": { + "min": 5206.9, + "max": 9806.3, + "count": 265, + "mean": 7048, + "p50": 6976.1, + "median": 6976.1, + "p75": 7865.6, + "p90": 8520.7, + "p95": 9047.6, + "p99": 9416.8, + "p999": 9607.1 + } + }, + "histograms": { + "http.response_time": { + "min": 5140, + "max": 9746, + "count": 265, + "mean": 6978.4, + "p50": 6976.1, + "median": 6976.1, + "p75": 7865.6, + "p90": 8520.7, + "p95": 8868.4, + "p99": 9416.8, + "p999": 9607.1 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 5140, + "max": 9746, + "count": 265, + "mean": 6978.4, + "p50": 6976.1, + "median": 6976.1, + "p75": 7865.6, + "p90": 8520.7, + "p95": 8868.4, + "p99": 9416.8, + "p999": 9607.1 + }, + "vusers.session_length": { + "min": 5206.9, + "max": 9806.3, + "count": 265, + "mean": 7048, + "p50": 6976.1, + "median": 6976.1, + "p75": 7865.6, + "p90": 8520.7, + "p95": 9047.6, + "p99": 9416.8, + "p999": 9607.1 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 266, + "http.responses": 266, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 266, + "vusers.failed": 0, + "vusers.completed": 266 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317870006, + "firstHistogramAt": 1716317870030, + "lastCounterAt": 1716317879962, + "lastHistogramAt": 1716317879952, + "firstMetricAt": 1716317870006, + "lastMetricAt": 1716317879962, + "period": "1716317870000", + "summaries": { + "http.response_time": { + "min": 2222, + "max": 17282, + "count": 266, + "mean": 7690, + "p50": 7709.8, + "median": 7709.8, + "p75": 9416.8, + "p90": 9801.2, + "p95": 10201.2, + "p99": 16819.2, + "p999": 17158.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2222, + "max": 17282, + "count": 266, + "mean": 7690, + "p50": 7709.8, + "median": 7709.8, + "p75": 9416.8, + "p90": 9801.2, + "p95": 10201.2, + "p99": 16819.2, + "p999": 17158.9 + }, + "vusers.session_length": { + "min": 2280.8, + "max": 17349.7, + "count": 266, + "mean": 7756.7, + "p50": 7865.6, + "median": 7865.6, + "p75": 9416.8, + "p90": 9999.2, + "p95": 10201.2, + "p99": 16819.2, + "p999": 17505.6 + } + }, + "histograms": { + "http.response_time": { + "min": 2222, + "max": 17282, + "count": 266, + "mean": 7690, + "p50": 7709.8, + "median": 7709.8, + "p75": 9416.8, + "p90": 9801.2, + "p95": 10201.2, + "p99": 16819.2, + "p999": 17158.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 2222, + "max": 17282, + "count": 266, + "mean": 7690, + "p50": 7709.8, + "median": 7709.8, + "p75": 9416.8, + "p90": 9801.2, + "p95": 10201.2, + "p99": 16819.2, + "p999": 17158.9 + }, + "vusers.session_length": { + "min": 2280.8, + "max": 17349.7, + "count": 266, + "mean": 7756.7, + "p50": 7865.6, + "median": 7865.6, + "p75": 9416.8, + "p90": 9999.2, + "p95": 10201.2, + "p99": 16819.2, + "p999": 17505.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 275, + "http.responses": 275, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 275, + "vusers.failed": 0, + "vusers.completed": 275 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317880006, + "firstHistogramAt": 1716317880006, + "lastCounterAt": 1716317889973, + "lastHistogramAt": 1716317889973, + "firstMetricAt": 1716317880006, + "lastMetricAt": 1716317889973, + "period": "1716317880000", + "summaries": { + "http.response_time": { + "min": 3919, + "max": 18924, + "count": 275, + "mean": 9134.3, + "p50": 9047.6, + "median": 9047.6, + "p75": 10617.5, + "p90": 11501.8, + "p95": 11971.2, + "p99": 18588.1, + "p999": 18963.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3919, + "max": 18924, + "count": 275, + "mean": 9134.3, + "p50": 9047.6, + "median": 9047.6, + "p75": 10617.5, + "p90": 11501.8, + "p95": 11971.2, + "p99": 18588.1, + "p999": 18963.6 + }, + "vusers.session_length": { + "min": 3985.8, + "max": 18980.3, + "count": 275, + "mean": 9205.9, + "p50": 9047.6, + "median": 9047.6, + "p75": 10617.5, + "p90": 11734.2, + "p95": 11971.2, + "p99": 18588.1, + "p999": 18963.6 + } + }, + "histograms": { + "http.response_time": { + "min": 3919, + "max": 18924, + "count": 275, + "mean": 9134.3, + "p50": 9047.6, + "median": 9047.6, + "p75": 10617.5, + "p90": 11501.8, + "p95": 11971.2, + "p99": 18588.1, + "p999": 18963.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 3919, + "max": 18924, + "count": 275, + "mean": 9134.3, + "p50": 9047.6, + "median": 9047.6, + "p75": 10617.5, + "p90": 11501.8, + "p95": 11971.2, + "p99": 18588.1, + "p999": 18963.6 + }, + "vusers.session_length": { + "min": 3985.8, + "max": 18980.3, + "count": 275, + "mean": 9205.9, + "p50": 9047.6, + "median": 9047.6, + "p75": 10617.5, + "p90": 11734.2, + "p95": 11971.2, + "p99": 18588.1, + "p999": 18963.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 309, + "http.responses": 309, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 309, + "vusers.failed": 0, + "vusers.completed": 309 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317890006, + "firstHistogramAt": 1716317890041, + "lastCounterAt": 1716317899970, + "lastHistogramAt": 1716317899970, + "firstMetricAt": 1716317890006, + "lastMetricAt": 1716317899970, + "period": "1716317890000", + "summaries": { + "http.response_time": { + "min": 5387, + "max": 14520, + "count": 309, + "mean": 9244.4, + "p50": 9416.8, + "median": 9416.8, + "p75": 10617.5, + "p90": 11734.2, + "p95": 12459.8, + "p99": 13230.3, + "p999": 14048.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 5387, + "max": 14520, + "count": 309, + "mean": 9244.4, + "p50": 9416.8, + "median": 9416.8, + "p75": 10617.5, + "p90": 11734.2, + "p95": 12459.8, + "p99": 13230.3, + "p999": 14048.5 + }, + "vusers.session_length": { + "min": 5454.9, + "max": 14581.4, + "count": 309, + "mean": 9313.9, + "p50": 9416.8, + "median": 9416.8, + "p75": 10617.5, + "p90": 11734.2, + "p95": 12459.8, + "p99": 13230.3, + "p999": 14332.3 + } + }, + "histograms": { + "http.response_time": { + "min": 5387, + "max": 14520, + "count": 309, + "mean": 9244.4, + "p50": 9416.8, + "median": 9416.8, + "p75": 10617.5, + "p90": 11734.2, + "p95": 12459.8, + "p99": 13230.3, + "p999": 14048.5 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 5387, + "max": 14520, + "count": 309, + "mean": 9244.4, + "p50": 9416.8, + "median": 9416.8, + "p75": 10617.5, + "p90": 11734.2, + "p95": 12459.8, + "p99": 13230.3, + "p999": 14048.5 + }, + "vusers.session_length": { + "min": 5454.9, + "max": 14581.4, + "count": 309, + "mean": 9313.9, + "p50": 9416.8, + "median": 9416.8, + "p75": 10617.5, + "p90": 11734.2, + "p95": 12459.8, + "p99": 13230.3, + "p999": 14332.3 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 291, + "http.responses": 291, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 291, + "vusers.failed": 0, + "vusers.completed": 291 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317900006, + "firstHistogramAt": 1716317900042, + "lastCounterAt": 1716317909969, + "lastHistogramAt": 1716317909969, + "firstMetricAt": 1716317900006, + "lastMetricAt": 1716317909969, + "period": "1716317900000", + "summaries": { + "http.response_time": { + "min": 6183, + "max": 13707, + "count": 291, + "mean": 9565.6, + "p50": 9607.1, + "median": 9607.1, + "p75": 11050.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13230.3, + "p999": 13497.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 6183, + "max": 13707, + "count": 291, + "mean": 9565.6, + "p50": 9607.1, + "median": 9607.1, + "p75": 11050.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13230.3, + "p999": 13497.6 + }, + "vusers.session_length": { + "min": 6243.4, + "max": 13769.8, + "count": 291, + "mean": 9636.8, + "p50": 9607.1, + "median": 9607.1, + "p75": 11050.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13497.6, + "p999": 13497.6 + } + }, + "histograms": { + "http.response_time": { + "min": 6183, + "max": 13707, + "count": 291, + "mean": 9565.6, + "p50": 9607.1, + "median": 9607.1, + "p75": 11050.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13230.3, + "p999": 13497.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 6183, + "max": 13707, + "count": 291, + "mean": 9565.6, + "p50": 9607.1, + "median": 9607.1, + "p75": 11050.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13230.3, + "p999": 13497.6 + }, + "vusers.session_length": { + "min": 6243.4, + "max": 13769.8, + "count": 291, + "mean": 9636.8, + "p50": 9607.1, + "median": 9607.1, + "p75": 11050.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13497.6, + "p999": 13497.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 300, + "vusers.created": 300, + "http.requests": 300, + "http.codes.200": 296, + "http.responses": 296, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 296, + "vusers.failed": 0, + "vusers.completed": 296 + }, + "rates": { + "http.request_rate": 30 + }, + "http.request_rate": null, + "firstCounterAt": 1716317910006, + "firstHistogramAt": 1716317910043, + "lastCounterAt": 1716317919978, + "lastHistogramAt": 1716317919978, + "firstMetricAt": 1716317910006, + "lastMetricAt": 1716317919978, + "period": "1716317910000", + "summaries": { + "http.response_time": { + "min": 5766, + "max": 15382, + "count": 296, + "mean": 9946.1, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 13497.6, + "p99": 14332.3, + "p999": 14917.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 5766, + "max": 15382, + "count": 296, + "mean": 9946.1, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 13497.6, + "p99": 14332.3, + "p999": 14917.2 + }, + "vusers.session_length": { + "min": 5828.6, + "max": 15437.8, + "count": 296, + "mean": 10014.5, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 13497.6, + "p99": 14332.3, + "p999": 14917.2 + } + }, + "histograms": { + "http.response_time": { + "min": 5766, + "max": 15382, + "count": 296, + "mean": 9946.1, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 13497.6, + "p99": 14332.3, + "p999": 14917.2 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 5766, + "max": 15382, + "count": 296, + "mean": 9946.1, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 13497.6, + "p99": 14332.3, + "p999": 14917.2 + }, + "vusers.session_length": { + "min": 5828.6, + "max": 15437.8, + "count": 296, + "mean": 10014.5, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 13497.6, + "p99": 14332.3, + "p999": 14917.2 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 233, + "vusers.created": 233, + "http.requests": 233, + "http.codes.200": 280, + "http.responses": 280, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 280, + "vusers.failed": 0, + "vusers.completed": 280 + }, + "rates": { + "http.request_rate": 23 + }, + "http.request_rate": null, + "firstCounterAt": 1716317920005, + "firstHistogramAt": 1716317920010, + "lastCounterAt": 1716317929998, + "lastHistogramAt": 1716317929998, + "firstMetricAt": 1716317920005, + "lastMetricAt": 1716317929998, + "period": "1716317920000", + "summaries": { + "http.response_time": { + "min": 6020, + "max": 15015, + "count": 280, + "mean": 9940.4, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13770.3, + "p999": 13770.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 6020, + "max": 15015, + "count": 280, + "mean": 9940.4, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13770.3, + "p999": 13770.3 + }, + "vusers.session_length": { + "min": 6096.9, + "max": 15091.5, + "count": 280, + "mean": 10009, + "p50": 9999.2, + "median": 9999.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 12968.3, + "p99": 13770.3, + "p999": 13770.3 + } + }, + "histograms": { + "http.response_time": { + "min": 6020, + "max": 15015, + "count": 280, + "mean": 9940.4, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13770.3, + "p999": 13770.3 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 6020, + "max": 15015, + "count": 280, + "mean": 9940.4, + "p50": 9801.2, + "median": 9801.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 12711.5, + "p99": 13770.3, + "p999": 13770.3 + }, + "vusers.session_length": { + "min": 6096.9, + "max": 15091.5, + "count": 280, + "mean": 10009, + "p50": 9999.2, + "median": 9999.2, + "p75": 11501.8, + "p90": 12459.8, + "p95": 12968.3, + "p99": 13770.3, + "p999": 13770.3 + } + } + }, + { + "counters": { + "http.codes.200": 329, + "http.responses": 329, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 329, + "vusers.failed": 0, + "vusers.completed": 329, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317930008, + "firstHistogramAt": 1716317930050, + "lastCounterAt": 1716317939983, + "lastHistogramAt": 1716317939983, + "firstMetricAt": 1716317930008, + "lastMetricAt": 1716317939983, + "period": "1716317930000", + "summaries": { + "http.response_time": { + "min": 1075, + "max": 13638, + "count": 329, + "mean": 7506.4, + "p50": 8520.7, + "median": 8520.7, + "p75": 10407.3, + "p90": 11734.2, + "p95": 12213.1, + "p99": 13230.3, + "p999": 13497.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1075, + "max": 13638, + "count": 329, + "mean": 7506.4, + "p50": 8520.7, + "median": 8520.7, + "p75": 10407.3, + "p90": 11734.2, + "p95": 12213.1, + "p99": 13230.3, + "p999": 13497.6 + }, + "vusers.session_length": { + "min": 1132.9, + "max": 13770.4, + "count": 329, + "mean": 7574.3, + "p50": 8520.7, + "median": 8520.7, + "p75": 10407.3, + "p90": 11734.2, + "p95": 12213.1, + "p99": 13497.6, + "p999": 13497.6 + } + }, + "histograms": { + "http.response_time": { + "min": 1075, + "max": 13638, + "count": 329, + "mean": 7506.4, + "p50": 8520.7, + "median": 8520.7, + "p75": 10407.3, + "p90": 11734.2, + "p95": 12213.1, + "p99": 13230.3, + "p999": 13497.6 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1075, + "max": 13638, + "count": 329, + "mean": 7506.4, + "p50": 8520.7, + "median": 8520.7, + "p75": 10407.3, + "p90": 11734.2, + "p95": 12213.1, + "p99": 13230.3, + "p999": 13497.6 + }, + "vusers.session_length": { + "min": 1132.9, + "max": 13770.4, + "count": 329, + "mean": 7574.3, + "p50": 8520.7, + "median": 8520.7, + "p75": 10407.3, + "p90": 11734.2, + "p95": 12213.1, + "p99": 13497.6, + "p999": 13497.6 + } + } + }, + { + "counters": { + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100, + "http.codes.200": 101, + "http.responses": 101, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 101, + "vusers.failed": 0, + "vusers.completed": 101 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317940008, + "firstHistogramAt": 1716317940093, + "lastCounterAt": 1716317949957, + "lastHistogramAt": 1716317949937, + "firstMetricAt": 1716317940008, + "lastMetricAt": 1716317949957, + "period": "1716317940000", + "summaries": { + "http.response_time": { + "min": 1026, + "max": 1557, + "count": 101, + "mean": 1226.4, + "p50": 1200.1, + "median": 1200.1, + "p75": 1300.1, + "p90": 1380.5, + "p95": 1408.4, + "p99": 1525.7, + "p999": 1525.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1026, + "max": 1557, + "count": 101, + "mean": 1226.4, + "p50": 1200.1, + "median": 1200.1, + "p75": 1300.1, + "p90": 1380.5, + "p95": 1408.4, + "p99": 1525.7, + "p999": 1525.7 + }, + "vusers.session_length": { + "min": 1085.9, + "max": 1623.8, + "count": 101, + "mean": 1293.1, + "p50": 1274.3, + "median": 1274.3, + "p75": 1353.1, + "p90": 1436.8, + "p95": 1465.9, + "p99": 1620, + "p999": 1620 + } + }, + "histograms": { + "http.response_time": { + "min": 1026, + "max": 1557, + "count": 101, + "mean": 1226.4, + "p50": 1200.1, + "median": 1200.1, + "p75": 1300.1, + "p90": 1380.5, + "p95": 1408.4, + "p99": 1525.7, + "p999": 1525.7 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1026, + "max": 1557, + "count": 101, + "mean": 1226.4, + "p50": 1200.1, + "median": 1200.1, + "p75": 1300.1, + "p90": 1380.5, + "p95": 1408.4, + "p99": 1525.7, + "p999": 1525.7 + }, + "vusers.session_length": { + "min": 1085.9, + "max": 1623.8, + "count": 101, + "mean": 1293.1, + "p50": 1274.3, + "median": 1274.3, + "p75": 1353.1, + "p90": 1436.8, + "p95": 1465.9, + "p99": 1620, + "p999": 1620 + } + } + }, + { + "counters": { + "http.codes.200": 101, + "http.responses": 101, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 101, + "vusers.failed": 0, + "vusers.completed": 101, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317950008, + "firstHistogramAt": 1716317950030, + "lastCounterAt": 1716317959999, + "lastHistogramAt": 1716317959999, + "firstMetricAt": 1716317950008, + "lastMetricAt": 1716317959999, + "period": "1716317950000", + "summaries": { + "http.response_time": { + "min": 1025, + "max": 1596, + "count": 101, + "mean": 1190.9, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1300.1, + "p95": 1380.5, + "p99": 1436.8, + "p999": 1436.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1025, + "max": 1596, + "count": 101, + "mean": 1190.9, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1300.1, + "p95": 1380.5, + "p99": 1436.8, + "p999": 1436.8 + }, + "vusers.session_length": { + "min": 1094.2, + "max": 1664.5, + "count": 101, + "mean": 1252.8, + "p50": 1249.1, + "median": 1249.1, + "p75": 1326.4, + "p90": 1380.5, + "p95": 1436.8, + "p99": 1495.5, + "p999": 1495.5 + } + }, + "histograms": { + "http.response_time": { + "min": 1025, + "max": 1596, + "count": 101, + "mean": 1190.9, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1300.1, + "p95": 1380.5, + "p99": 1436.8, + "p999": 1436.8 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1025, + "max": 1596, + "count": 101, + "mean": 1190.9, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1300.1, + "p95": 1380.5, + "p99": 1436.8, + "p999": 1436.8 + }, + "vusers.session_length": { + "min": 1094.2, + "max": 1664.5, + "count": 101, + "mean": 1252.8, + "p50": 1249.1, + "median": 1249.1, + "p75": 1326.4, + "p90": 1380.5, + "p95": 1436.8, + "p99": 1495.5, + "p999": 1495.5 + } + } + }, + { + "counters": { + "http.codes.200": 100, + "http.responses": 100, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 100, + "vusers.failed": 0, + "vusers.completed": 100, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317960008, + "firstHistogramAt": 1716317960016, + "lastCounterAt": 1716317969957, + "lastHistogramAt": 1716317969923, + "firstMetricAt": 1716317960008, + "lastMetricAt": 1716317969957, + "period": "1716317960000", + "summaries": { + "http.response_time": { + "min": 1020, + "max": 1644, + "count": 100, + "mean": 1226.7, + "p50": 1200.1, + "median": 1200.1, + "p75": 1274.3, + "p90": 1380.5, + "p95": 1525.7, + "p99": 1620, + "p999": 1620 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1020, + "max": 1644, + "count": 100, + "mean": 1226.7, + "p50": 1200.1, + "median": 1200.1, + "p75": 1274.3, + "p90": 1380.5, + "p95": 1525.7, + "p99": 1620, + "p999": 1620 + }, + "vusers.session_length": { + "min": 1079.5, + "max": 1732.4, + "count": 100, + "mean": 1293, + "p50": 1274.3, + "median": 1274.3, + "p75": 1353.1, + "p90": 1465.9, + "p95": 1587.9, + "p99": 1720.2, + "p999": 1720.2 + } + }, + "histograms": { + "http.response_time": { + "min": 1020, + "max": 1644, + "count": 100, + "mean": 1226.7, + "p50": 1200.1, + "median": 1200.1, + "p75": 1274.3, + "p90": 1380.5, + "p95": 1525.7, + "p99": 1620, + "p999": 1620 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1020, + "max": 1644, + "count": 100, + "mean": 1226.7, + "p50": 1200.1, + "median": 1200.1, + "p75": 1274.3, + "p90": 1380.5, + "p95": 1525.7, + "p99": 1620, + "p999": 1620 + }, + "vusers.session_length": { + "min": 1079.5, + "max": 1732.4, + "count": 100, + "mean": 1293, + "p50": 1274.3, + "median": 1274.3, + "p75": 1353.1, + "p90": 1465.9, + "p95": 1587.9, + "p99": 1720.2, + "p999": 1720.2 + } + } + }, + { + "counters": { + "http.codes.200": 99, + "http.responses": 99, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 99, + "vusers.failed": 0, + "vusers.completed": 99, + "vusers.created_by_name.Scrape a URL": 100, + "vusers.created": 100, + "http.requests": 100 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317970008, + "firstHistogramAt": 1716317970100, + "lastCounterAt": 1716317979997, + "lastHistogramAt": 1716317979997, + "firstMetricAt": 1716317970008, + "lastMetricAt": 1716317979997, + "period": "1716317970000", + "summaries": { + "http.response_time": { + "min": 1023, + "max": 1480, + "count": 99, + "mean": 1195.6, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1353.1, + "p95": 1436.8, + "p99": 1465.9, + "p999": 1465.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1023, + "max": 1480, + "count": 99, + "mean": 1195.6, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1353.1, + "p95": 1436.8, + "p99": 1465.9, + "p999": 1465.9 + }, + "vusers.session_length": { + "min": 1079.2, + "max": 1537.6, + "count": 99, + "mean": 1262.3, + "p50": 1249.1, + "median": 1249.1, + "p75": 1326.4, + "p90": 1408.4, + "p95": 1495.5, + "p99": 1525.7, + "p999": 1525.7 + } + }, + "histograms": { + "http.response_time": { + "min": 1023, + "max": 1480, + "count": 99, + "mean": 1195.6, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1353.1, + "p95": 1436.8, + "p99": 1465.9, + "p999": 1465.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1023, + "max": 1480, + "count": 99, + "mean": 1195.6, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1353.1, + "p95": 1436.8, + "p99": 1465.9, + "p999": 1465.9 + }, + "vusers.session_length": { + "min": 1079.2, + "max": 1537.6, + "count": 99, + "mean": 1262.3, + "p50": 1249.1, + "median": 1249.1, + "p75": 1326.4, + "p90": 1408.4, + "p95": 1495.5, + "p99": 1525.7, + "p999": 1525.7 + } + } + }, + { + "counters": { + "http.codes.200": 82, + "http.responses": 82, + "plugins.metrics-by-endpoint./v0/scrape.codes.200": 82, + "vusers.failed": 0, + "vusers.completed": 82, + "vusers.created_by_name.Scrape a URL": 68, + "vusers.created": 68, + "http.requests": 68 + }, + "rates": { + "http.request_rate": 10 + }, + "http.request_rate": null, + "firstCounterAt": 1716317980008, + "firstHistogramAt": 1716317980076, + "lastCounterAt": 1716317987944, + "lastHistogramAt": 1716317987944, + "firstMetricAt": 1716317980008, + "lastMetricAt": 1716317987944, + "period": "1716317980000", + "summaries": { + "http.response_time": { + "min": 1025, + "max": 1482, + "count": 82, + "mean": 1192, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1326.4, + "p95": 1408.4, + "p99": 1465.9, + "p999": 1465.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1025, + "max": 1482, + "count": 82, + "mean": 1192, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1326.4, + "p95": 1408.4, + "p99": 1465.9, + "p999": 1465.9 + }, + "vusers.session_length": { + "min": 1088.6, + "max": 1542.2, + "count": 82, + "mean": 1253.8, + "p50": 1224.4, + "median": 1224.4, + "p75": 1326.4, + "p90": 1380.5, + "p95": 1465.9, + "p99": 1525.7, + "p999": 1525.7 + } + }, + "histograms": { + "http.response_time": { + "min": 1025, + "max": 1482, + "count": 82, + "mean": 1192, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1326.4, + "p95": 1408.4, + "p99": 1465.9, + "p999": 1465.9 + }, + "plugins.metrics-by-endpoint.response_time./v0/scrape": { + "min": 1025, + "max": 1482, + "count": 82, + "mean": 1192, + "p50": 1176.4, + "median": 1176.4, + "p75": 1249.1, + "p90": 1326.4, + "p95": 1408.4, + "p99": 1465.9, + "p999": 1465.9 + }, + "vusers.session_length": { + "min": 1088.6, + "max": 1542.2, + "count": 82, + "mean": 1253.8, + "p50": 1224.4, + "median": 1224.4, + "p75": 1326.4, + "p90": 1380.5, + "p95": 1465.9, + "p99": 1525.7, + "p999": 1525.7 + } + } + } + ] +} \ No newline at end of file diff --git a/apps/test-suite/load-test-results/tests-1-5/load-test-1.md b/apps/test-suite/load-test-results/tests-1-5/load-test-1.md new file mode 100644 index 00000000..7be34c8e --- /dev/null +++ b/apps/test-suite/load-test-results/tests-1-5/load-test-1.md @@ -0,0 +1,98 @@ +# Scraping Load Testing - Test #1 + +## Summary + +The load test successfully processed 600 requests in 60 seconds with all requests returning HTTP 200 status codes. The average response time was 1380.1 ms, with CPU utilization peaking at around 50% on both machines, indicating sufficient CPU resources. However, there was a significant increase in memory usage post-test, which did not return to pre-test levels, suggesting a potential memory leak. Further investigation and additional load tests are recommended to address this issue and optimize the system's performance. + +## Table of Contents + +- [Scraping Load Testing - Test #1](#scraping-load-testing---test-1) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load #1 - 600 reqs 60 secs (initial load only)](#load-1---600-reqs-60-secs-initial-load-only) + - [Archillery Report](#archillery-report) + - [CPU Utilization](#cpu-utilization) + - [Memory Utilization](#memory-utilization) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | +|---|---| +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | + +--- + +## Load #1 - 600 reqs 60 secs (initial load only) + +```yml +# load-test.yml +- duration: 60 + arrivalRate: 10 # Initial load +``` + +### Archillery Report +Date: 10:49:39(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| http.codes.200 | 600 | +| http.downloaded_bytes | 0 | +| http.request_rate | 10/sec | +| http.requests | 600 | +| http.response_time.min | 984 | +| http.response_time.max | 2267 | +| http.response_time.mean | 1380.1 | +| http.response_time.median | 1353.1 | +| http.response_time.p95 | 1755 | +| http.response_time.p99 | 2059.5 | +| http.responses | 600 | +| vusers.completed | 600 | +| vusers.created | 600 | +| vusers.created_by_name.Scrape a URL | 600 | +| vusers.failed | 0 | +| vusers.session_length.min | 1053.7 | +| vusers.session_length.max | 2332.6 | +| vusers.session_length.mean | 1447.4 | +| vusers.session_length.median | 1436.8 | +| vusers.session_length.p95 | 1863.5 | +| vusers.session_length.p99 | 2143.5 | + +### CPU Utilization +![](./assets/CPU-utilization-report-test-1.png) + +Both machines peaked at around 50% CPU utilization. + +### Memory Utilization +![](./assets/memory-utilization-report-test-1.png) + +| Machine | Before | After Load Test | +|---|---|---| +| e286de4f711e86 | 295 MiB | 358 MiB | +| 73d8dd909c1189 | 296 MiB | 355 MiB | + +Notice that the memory utilization has not re-stabilished to the pre-test values during the check window, which may indicate a memory leak problem. + +--- + +## Conclusions and Next Steps + +### Conclusions +1. **Performance:** The system handled 600 requests in 60 seconds with a mean response time of 1380.1 ms. All requests were successful (HTTP 200). +2. **CPU Utilization:** Both machines peaked at around 50% CPU utilization, indicating that the CPU resources were sufficient for the load. +3. **Memory Utilization:** There was a noticeable increase in memory usage on both machines post-test, and the memory did not re-stabilize to pre-test levels, suggesting a potential memory leak. + +### Next Steps +1. **Investigate Memory Leak:** Conduct a detailed analysis to identify and fix the potential memory leak. This may involve profiling the application and reviewing the code for memory management issues. +2. **Additional Load Tests:** Perform additional load tests with varying request rates and durations to further assess the system's performance and stability. +3. **Optimize Performance:** Based on the findings, optimize the application to improve response times and resource utilization. +4. **Monitor in Production:** Implement monitoring in the production environment to ensure that similar issues do not occur under real-world conditions. +5. **Documentation:** Update the documentation with the findings and any changes made to the system as a result of this test. + +By following these steps, we can ensure that the system is robust, efficient, and ready to handle production workloads. \ No newline at end of file diff --git a/apps/test-suite/load-test-results/tests-1-5/load-test-2.md b/apps/test-suite/load-test-results/tests-1-5/load-test-2.md new file mode 100644 index 00000000..6735741a --- /dev/null +++ b/apps/test-suite/load-test-results/tests-1-5/load-test-2.md @@ -0,0 +1,93 @@ +# Scraping Load Testing - Test #2 + +## Summary + +The load test encountered significant issues, processing 9000 requests with 5473 timeouts and a 61.6% failure rate. The average response time was 3682.1 ms, with a peak response time of 9919 ms. Both machines reached 100% CPU utilization, leading to severe performance bottlenecks and high failure rates. This indicates the need for substantial optimizations, autoscaling, and further investigation. + +## Table of Contents + +- [Scraping Load Testing - Test #2](#scraping-load-testing---test-2) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load #2 - 9000 reqs 7 mins 11 secs (4 phases)](#load-2---9000-reqs-7-mins-11-secs-4-phases) + - [Archillery Report](#archillery-report) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | +|---|---| +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | + +--- + +## Load #2 - 9000 reqs 7 mins 11 secs (4 phases) + +```yml + +# load-test.yml +- duration: 60 + arrivalRate: 10 # Initial load +- duration: 120 + arrivalRate: 20 # Increased load +- duration: 180 + arrivalRate: 30 # Peak load +- duration: 60 + arrivalRate: 10 # Cool down +``` + + +### Archillery Report +Date: 13:50:08(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| errors.ETIMEDOUT | 5473 | +| errors.Failed capture or match | 73 | +| http.codes.200 | 3454 | +| http.codes.401 | 64 | +| http.codes.402 | 9 | +| http.downloaded_bytes | 0 | +| http.request_rate | 21/sec | +| http.requests | 9000 | +| http.response_time.min | 929 | +| http.response_time.max | 9919 | +| http.response_time.mean | 3682.1 | +| http.response_time.median | 3395.5 | +| http.response_time.p95 | 8024.5 | +| http.response_time.p99 | 9607.1 | +| http.responses | 3527 | +| vusers.completed | 3454 | +| vusers.created | 9000 | +| vusers.created_by_name.Scrape a URL | 9000 | +| vusers.failed | 5546 | +| vusers.session_length.min | 1127.6 | +| vusers.session_length.max | 9982.2 | +| vusers.session_length.mean | 3730.6 | +| vusers.session_length.median | 3464.1 | +| vusers.session_length.p95 | 7865.6 | +| vusers.session_length.p99 | 9607.1 | + +### Metrics + +![](./assets/metrics-test-2.png) + +Both machines reached 100% CPU utilization, which led to a significant number of request failures (61.6% failure rate). + +--- + +## Conclusions and Next Steps + +### Conclusions +1. **Performance:** The system struggled with 9000 requests, resulting in 5473 timeouts and a mean response time of 3682.1 ms. +2. **CPU Utilization:** Both machines experienced 100% CPU utilization, causing severe performance degradation and high failure rates. + +### Next Steps +Implement an autoscaling solution on Fly.io and conduct tests using the same configurations. diff --git a/apps/test-suite/load-test-results/tests-1-5/load-test-3.md b/apps/test-suite/load-test-results/tests-1-5/load-test-3.md new file mode 100644 index 00000000..d4822aae --- /dev/null +++ b/apps/test-suite/load-test-results/tests-1-5/load-test-3.md @@ -0,0 +1,107 @@ +# Scraping Load Testing - Test #3 + +## Summary + +The load test involved setting up an autoscaling option and adjusting the hard and soft limits for the Fly.io configuration. The test environment consisted of 5 machines, with 3 machines automatically scaling up during the test. Despite the scaling, there were 653 timeouts (7.3%) and 2 HTTP 502 responses (0.02%). The average response time was 3037.2 ms, with a peak response time of 9941 ms. Further adjustments to the soft limit are recommended to improve performance and reduce errors. + +## Table of Contents + +- [Scraping Load Testing - Test #3](#scraping-load-testing---test-3) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load Test Phases](#load-test-phases) + - [Configuration](#configuration) + - [Results](#results) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | Status | +|---|---|---| +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | always on | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | always on | +| 6e82050c726358 mia (app) | performance-cpu-1x@2048MB | paused | +| 4d89505a6e5038 mia (app) | performance-cpu-1x@2048MB | paused | +| 48ed6e6b74e378 mia (app) | performance-cpu-1x@2048MB | paused | + +--- + +## Load Test Phases + +### Configuration + +```toml +# fly.staging.toml +[http_service.concurrency] + type = "requests" + hard_limit = 100 + soft_limit = 75 +``` +```yml +# load-test.yml +- duration: 60 +arrivalRate: 10 # Initial load +- duration: 120 +arrivalRate: 20 # Increased load +- duration: 180 +arrivalRate: 30 # Peak load +- duration: 60 +arrivalRate: 10 # Cool down +``` + + +### Results +Date: 14:53:32(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| errors.ETIMEDOUT | 653 | +| errors.Failed capture or match | 2 | +| http.codes.200 | 8345 | +| http.codes.502 | 2 | +| http.downloaded_bytes | 0 | +| http.request_rate | 11/sec | +| http.requests | 9000 | +| http.response_time.min | 979 | +| http.response_time.max | 9941 | +| http.response_time.mean | 3037.2 | +| http.response_time.median | 2059.5 | +| http.response_time.p95 | 7709.8 | +| http.response_time.p99 | 9416.8 | +| http.responses | 8347 | +| vusers.completed | 8345 | +| vusers.created | 9000 | +| vusers.created_by_name.Scrape a URL | 9000 | +| vusers.failed | 655 | +| vusers.session_length.min | 1044.5 | +| vusers.session_length.max | 9998.8 | +| vusers.session_length.mean | 3109.7 | +| vusers.session_length.median | 2143.5 | +| vusers.session_length.p95 | 7709.8 | +| vusers.session_length.p99 | 9416.8 | + +### Metrics + +![](./assets/metrics-test-3.png) + +--- + +## Conclusions and Next Steps + +### Conclusions +1. **Performance:** The system handled 9000 requests with a mean response time of 3037.2 ms. There were 653 timeouts and 2 HTTP 502 responses. +2. **Autoscaling:** Three machines automatically scaled up during the test, but the scaling was not sufficient to prevent all errors. +3. **Response Times:** The peak response time was 9941 ms, indicating that the system struggled under peak load conditions. + +### Next Steps + +1. **Adjust Soft Limit:** Change the soft limit to 100 and the hard limit to 50 to test if machines will start faster and reduce the number of 502 errors. +2. **Further Load Tests:** Conduct additional load tests with the new configuration to assess improvements. + +By following these steps, we can enhance the system's performance and reliability under varying load conditions. diff --git a/apps/test-suite/load-test-results/tests-1-5/load-test-4.md b/apps/test-suite/load-test-results/tests-1-5/load-test-4.md new file mode 100644 index 00000000..34a82a2b --- /dev/null +++ b/apps/test-suite/load-test-results/tests-1-5/load-test-4.md @@ -0,0 +1,103 @@ +# Scraping Load Testing - Test #4 + +## Summary + +The load test was conducted with the Fly.io configuration set to a hard limit of 100 and a soft limit of 50. The test involved four phases with varying arrival rates. Despite the adjustments, there were 1329 timeouts (14.8%) but no HTTP 502 responses. The average response time was 3547.9 ms, with a peak response time of 9935 ms. Further adjustments to the artillery timeout configuration are recommended to improve performance. + +## Table of Contents + +- [Scraping Load Testing - Test #4](#scraping-load-testing---test-4) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load Test Phases](#load-test-phases) + - [Configuration](#configuration) + - [Results](#results) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | Status | +|---|---|---| +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | always on | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | always on | +| 6e82050c726358 mia (app) | performance-cpu-1x@2048MB | paused | +| 4d89505a6e5038 mia (app) | performance-cpu-1x@2048MB | paused | +| 48ed6e6b74e378 mia (app) | performance-cpu-1x@2048MB | paused | + +--- + +## Load Test Phases + +### Configuration + +```toml +# fly.staging.toml +[http_service.concurrency] + type = "requests" + hard_limit = 100 + soft_limit = 50 +``` +```yml +# load-test.yml +- duration: 60 +arrivalRate: 10 # Initial load +- duration: 120 +arrivalRate: 20 # Increased load +- duration: 180 +arrivalRate: 30 # Peak load +- duration: 60 +arrivalRate: 10 # Cool down +``` + + +### Results +Date: 15:43:26(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| errors.ETIMEDOUT | 1329 | +| http.codes.200 | 7671 | +| http.downloaded_bytes | 0 | +| http.request_rate | 23/sec | +| http.requests | 9000 | +| http.response_time.min | 999 | +| http.response_time.max | 9935 | +| http.response_time.mean | 3547.9 | +| http.response_time.median | 2836.2 | +| http.response_time.p95 | 8352 | +| http.response_time.p99 | 9607.1 | +| http.responses | 7671 | +| vusers.completed | 7671 | +| vusers.created | 9000 | +| vusers.created_by_name.Scrape a URL | 9000 | +| vusers.failed | 1329 | +| vusers.session_length.min | 1063.4 | +| vusers.session_length.max | 10006.8 | +| vusers.session_length.mean | 3616 | +| vusers.session_length.median | 2893.5 | +| vusers.session_length.p95 | 8352 | +| vusers.session_length.p99 | 9607.1 | + +## Metrics + +![](./assets/metrics-test-4.png) + +--- + +## Conclusions and Next Steps + +### Conclusions +1. **Performance:** The system handled 9000 requests with a mean response time of 3547.9 ms. There were 1329 timeouts but no HTTP 502 responses. +2. **Response Times:** The peak response time was 9935 ms, indicating that the system struggled under peak load conditions. + +### Next Steps +1. **Adjust Timeout Configuration:** Change the artillery timeout configuration to reduce the number of timeouts. +2. **Further Load Tests:** Conduct additional load tests with the new timeout configuration to assess improvements. + +By following these steps, we can enhance the system's performance and reliability under varying load conditions. diff --git a/apps/test-suite/load-test-results/tests-1-5/load-test-5.md b/apps/test-suite/load-test-results/tests-1-5/load-test-5.md new file mode 100644 index 00000000..e14200d5 --- /dev/null +++ b/apps/test-suite/load-test-results/tests-1-5/load-test-5.md @@ -0,0 +1,94 @@ +# Scraping Load Testing - Test #5 + +## Summary + +The load test was conducted with a higher timeout configuration to address previous timeout issues. The test involved 9000 requests with a timeout set to 30 seconds. The system handled the load well, with only 4 HTTP 502 responses (0.04%). The average response time was 5661.8 ms, with a peak response time of 18924 ms. Further analysis is recommended to optimize response times. + +## Table of Contents + +- [Scraping Load Testing - Test #5](#scraping-load-testing---test-5) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load Test Configuration](#load-test-configuration) + - [Configuration](#configuration) + - [Results](#results) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | Status | +|---|---|---| +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | always on | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | always on | +| 6e82050c726358 mia (app) | performance-cpu-1x@2048MB | paused | +| 4d89505a6e5038 mia (app) | performance-cpu-1x@2048MB | paused | +| 48ed6e6b74e378 mia (app) | performance-cpu-1x@2048MB | paused | + +--- + +## Load Test Configuration + +### Configuration + +```yml + http: + timeout: 30 +``` + + +### Results +Date: 15:59:50(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| errors.Failed capture or match | 4 | +| http.codes.200 | 8996 | +| http.codes.502 | 4 | +| http.downloaded_bytes | 0 | +| http.request_rate | 23/sec | +| http.requests | 9000 | +| http.response_time.min | 62 | +| http.response_time.max | 18924 | +| http.response_time.mean | 5661.8 | +| http.response_time.median | 5378.9 | +| http.response_time.p95 | 11050.8 | +| http.response_time.p99 | 12968.3 | +| http.responses | 9000 | +| vusers.completed | 8996 | +| vusers.created | 9000 | +| vusers.created_by_name.Scrape a URL | 9000 | +| vusers.failed | 4 | +| vusers.session_length.min | 1079.2 | +| vusers.session_length.max | 18980.3 | +| vusers.session_length.mean | 5734.4 | +| vusers.session_length.median | 5487.5 | +| vusers.session_length.p95 | 11050.8 | +| vusers.session_length.p99 | 12968.3 | + +### Metrics + +![](./assets/metrics-test-5.png) + +--- + +## Conclusions and Next Steps + +### Conclusions +1. **Performance:** The system handled 9000 requests with a mean response time of 5661.8 ms. There were only 4 HTTP 502 responses which represent a 0.04% failure rate. +2. **Response Times:** The peak response time was 18924 ms, indicating that while the system handled the load, there is room for optimization. + +### Next Steps + +2. **Testing Scraping Strategies:** Conduct further testing on the Playwright instance to ensure it can handle increased load and identify any potential bottlenecks. +3. **Load Testing Other Functionalities:** Evaluate the performance of other critical routes, such as the crawl route, through additional load tests to ensure comprehensive system reliability. +4. **Optimize Response Times:** Investigate and implement strategies to reduce the peak response time from 18924 ms. This could involve optimizing database queries, improving server configurations, or enhancing caching mechanisms. +5. **Error Handling Improvements:** Analyze the causes of the 4 HTTP 502 responses and implement robust error handling and recovery mechanisms to minimize such occurrences in future tests. +6. **Scalability Assessment:** Assess the system's scalability by gradually increasing the load beyond 9000 requests to determine its breaking point and plan for necessary infrastructure upgrades. + +By following these steps, we can further enhance the system's performance and reliability under varying load conditions. diff --git a/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-7-2.png b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-7-2.png new file mode 100644 index 00000000..6bb9dbde Binary files /dev/null and b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-7-2.png differ diff --git a/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-7.png b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-7.png new file mode 100644 index 00000000..da58a1de Binary files /dev/null and b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-7.png differ diff --git a/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-8.png b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-8.png new file mode 100644 index 00000000..57cfae70 Binary files /dev/null and b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-fire-engine-test-8.png differ diff --git a/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-6.png b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-6.png new file mode 100644 index 00000000..11e1352f Binary files /dev/null and b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-6.png differ diff --git a/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-7.png b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-7.png new file mode 100644 index 00000000..d34df5b0 Binary files /dev/null and b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-7.png differ diff --git a/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-8.png b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-8.png new file mode 100644 index 00000000..6e5dfe4e Binary files /dev/null and b/apps/test-suite/load-test-results/tests-6-7/assets/metrics-test-8.png differ diff --git a/apps/test-suite/load-test-results/tests-6-7/load-test-6.md b/apps/test-suite/load-test-results/tests-6-7/load-test-6.md new file mode 100644 index 00000000..5319d84c --- /dev/null +++ b/apps/test-suite/load-test-results/tests-6-7/load-test-6.md @@ -0,0 +1,104 @@ +# Load Testing Crawl Routes - Test #6 + +## Summary + +The load test was conducted with a duration of 10 minutes and an arrival rate of 10 requests per second. The system handled the load well, with no failed requests. The average response time was 838.1 ms, with a peak response time of 1416 ms. Further analysis is recommended to optimize response times and assess the impact of higher loads. + +## Table of Contents + +- [Load Testing Crawl Routes - Test #6](#load-testing-crawl-routes---test-6) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load Test Configuration](#load-test-configuration) + - [Configuration](#configuration) + - [Results](#results) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | Status | +|---|---|---| +| 06e825d0da2387 mia (worker) | performance-cpu-1x@2048MB | always on | +| 178134db566489 mia (worker) | performance-cpu-1x@2048MB | always on | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | always on | +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | always on | + +Other app machines with autoscaling shouldn't start during crawl tests. + +--- + +## Load Test Configuration + +### Configuration + +```yml +# load-test.yml + - duration: 10 + arrivalRate: 10 +``` + + +### Results +Date: 16:00:06(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| http.codes.200 | 200 | +| http.downloaded_bytes | 0 | +| http.request_rate | 10/sec | +| http.requests | 200 | +| http.response_time.min | 687 | +| http.response_time.max | 1416 | +| http.response_time.mean | 838.1 | +| http.response_time.median | 788.5 | +| http.response_time.p95 | 1085.9 | +| http.response_time.p99 | 1274.3 | +| http.responses | 200 | +| vusers.completed | 100 | +| vusers.created | 100 | +| vusers.created_by_name.Crawl a URL | 100 | +| vusers.failed | 0 | +| vusers.session_length.min | 11647.5 | +| vusers.session_length.max | 12310 | +| vusers.session_length.mean | 11812.7 | +| vusers.session_length.median | 11734.2 | +| vusers.session_length.p95 | 11971.2 | +| vusers.session_length.p99 | 12213.1 | + +### Metrics + +![](./assets/metrics-test-6.png) + + +**CPU Utilization:** +- **App machines:** Less than 2.3% CPU utilization with no changes in memory utilization. +- **Worker machines:** High CPU utilization for over 4 minutes and 45 seconds, with 56% (peaking at 75.8%) on 178134db566489 and 40% (peaking at 62.7%) on 06e825d0da2387. + +**Memory Utilization:** +- **App machines:** No relevant changes during the tests. +- **Worker machines:** + - 06e825d0da2387: From 359MiB to over 388MiB during 4 minutes and 45 seconds (peaking at 461MiB). + - 178134db566489: From 366MiB to over 449MiB during 4 minutes and 45 seconds (peaking at 523MiB). + + +--- + +## Conclusions and Next Steps + +### Conclusions +1. **Performance:** The system handled 200 requests with a mean response time of 838.1 ms. There were no failed requests. +2. **Response Times:** The peak response time was 1416 ms, indicating that while the system handled the load, there is room for optimization. + +### Next Steps + +1. **Higher Load Testing:** Conduct further testing with higher loads to assess the system's performance under increased stress. +2. **Optimize Response Times:** Investigate and implement strategies to reduce the peak response time from 1416 ms. This could involve optimizing database queries, improving server configurations, or enhancing caching mechanisms. +3. **Scalability Assessment:** Assess the system's scalability by gradually increasing the load beyond the current configuration to determine its breaking point and plan for necessary infrastructure upgrades. + +By following these steps, we can further enhance the system's performance and reliability under varying load conditions. \ No newline at end of file diff --git a/apps/test-suite/load-test-results/tests-6-7/load-test-7.md b/apps/test-suite/load-test-results/tests-6-7/load-test-7.md new file mode 100644 index 00000000..e416909c --- /dev/null +++ b/apps/test-suite/load-test-results/tests-6-7/load-test-7.md @@ -0,0 +1,127 @@ +# Load Testing Crawl Routes - Test #7 + +## Summary + +This load test, conducted over a period of 7 minutes with an extended observation, aimed to evaluate the system's performance under variable loads. Although the system was able to queue all requests successfully and no requests failed, the test was prematurely terminated due to a critical failure in the fire-engine machines after 22 minutes. This incident revealed significant vulnerabilities in handling sustained loads, specifically related to resource management. + +## Table of Contents + +- [Load Testing Crawl Routes - Test #7](#load-testing-crawl-routes---test-7) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Test environment](#test-environment) + - [Machines](#machines) + - [Load Test Configuration](#load-test-configuration) + - [Configuration](#configuration) + - [Results](#results) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Test environment +### Machines + +| Machine | Size/CPU | Status | +|---|---|---| +| 06e825d0da2387 mia (worker) | performance-cpu-1x@2048MB | always on | +| 178134db566489 mia (worker) | performance-cpu-1x@2048MB | always on | +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | always on | +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | always on | + +fire-engine machines: +| Machine | Size/CPU | Status | +|---|---|---| +| 2874d0db0e5258 mia app | performance-cpu-2x@4096MB | always on | +| 48ed194f7de258 mia app | performance-cpu-2x@4096MB | always on | +| 56830d45f70218 sjc app | performance-cpu-2x@4096MB | initialized during the test | + +--- + +## Load Test Configuration + +### Configuration + +```yml +phases: + - duration: 60 + arrivalRate: 1 # Initial load + - duration: 120 + arrivalRate: 2 # Increased load + - duration: 180 + arrivalRate: 3 # Peak load + - duration: 60 + arrivalRate: 1 # Cool down +``` + +using fire-engine as default scraping strategy + +```yml +NUM_WORKERS_PER_QUEUE=8 +``` + +### Results +Date: 17:31:33(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| http.codes.200 | 1800 | +| http.downloaded_bytes | 0 | +| http.request_rate | 3/sec | +| http.requests | 1800 | +| http.response_time.min | 711 | +| http.response_time.max | 5829 | +| http.response_time.mean | 849.2 | +| http.response_time.median | 804.5 | +| http.response_time.p95 | 1043.3 | +| http.response_time.p99 | 1274.3 | +| http.responses | 1800 | +| vusers.completed | 900 | +| vusers.created | 900 | +| vusers.created_by_name.Crawl a URL | 900 | +| vusers.failed | 0 | +| vusers.session_length.min | 11637 | +| vusers.session_length.max | 16726.1 | +| vusers.session_length.mean | 11829.5 | +| vusers.session_length.median | 11734.2 | +| vusers.session_length.p95 | 12213.1 | +| vusers.session_length.p99 | 12213.1 | + +### Metrics + +![](./assets/metrics-fire-engine-test-7.png) +![](./assets/metrics-fire-engine-test-7-2.png) +![](./assets/metrics-test-7.png) + +**CPU Utilization:** +- **Fire-engine mia machines:** Reached 100% after 22 minutes of processing the queue. The sjc machine was not requested during the test. +- **Worker machines:** Maintained CPU utilization above 71% during the load testing time. + +**Memory Utilization:** +- **Fire-engine mia machines:** utilization reached 100% after 22 minutes of processing the queue. +- **Worker machines:** Maintained Memory utilization above 700MiB during the test. + + + +--- + +## Conclusions and Next Steps + +### Conclusions + +1. **Request Handling:** The system effectively managed to queue all requests, demonstrating its capability to handle the initial setup of traffic without any failures. +2. **Critical Failures:** The abrupt failure of the fire-engine machines part-way through the test underscores a significant stability issue, directly impacting the ability to continue operations under load. +3. **Resource Management Deficiencies:** The failure was linked to insufficient resource management, particularly memory handling, which necessitates immediate attention to prevent future disruptions. + +### Next Steps +1. **Increase Workers per Machine:** The number of workers per worker machine will be increased from 8 to 12. This change aims to enhance the processing capability of each machine, potentially reducing response times and handling larger volumes of requests more efficiently. + +2. **Implement Autoscaling:** Introduce autoscaling capabilities to dynamically adjust the number of active machines based on the current load. This will help in maintaining optimal performance and prevent system overloads by automatically scaling resources up during peak demands and down during low usage periods. + +3. **Enhanced Resource Management:** With the increase in workers and the implementation of autoscaling, it is crucial to optimize resource management strategies. This involves improving memory handling and cleanup processes to ensure that resource allocation and recovery are efficient and effective, particularly under sustained high loads. + +4. **Extended Duration Testing:** Conduct further tests with extended durations to evaluate the impact of the increased number of workers and autoscaling on system stability and performance. These tests should focus on assessing how well the system sustains operational efficiency over longer periods and under varying load conditions. + +5. **Monitor and Optimize:** Continuously monitor system performance during the new tests, particularly focusing on the effects of the increased worker count and autoscaling. Use the gathered data to optimize configurations and troubleshoot any new issues that arise, ensuring the system is fine-tuned for both high performance and reliability. + +By following these steps, we can further enhance the system's performance and reliability under varying load conditions. \ No newline at end of file diff --git a/apps/test-suite/load-test-results/tests-6-7/load-test-8.md b/apps/test-suite/load-test-results/tests-6-7/load-test-8.md new file mode 100644 index 00000000..bd2099a6 --- /dev/null +++ b/apps/test-suite/load-test-results/tests-6-7/load-test-8.md @@ -0,0 +1,116 @@ +# Load Testing Crawl Routes - Test #8 + +## Summary + +This load test, conducted over a period of 7 minutes with an extended observation, aimed to evaluate the system's performance under variable loads. The test revealed that while the system managed to handle the initial load effectively, there were issues with autoscaling and resource management that need to be addressed. + +## Table of Contents + +- [Load Testing Crawl Routes - Test #8](#load-testing-crawl-routes---test-8) + - [Summary](#summary) + - [Table of Contents](#table-of-contents) + - [Load Test Configuration](#load-test-configuration) + - [Configuration](#configuration) + - [Results](#results) + - [Metrics](#metrics) + - [Conclusions and Next Steps](#conclusions-and-next-steps) + - [Conclusions](#conclusions) + - [Next Steps](#next-steps) + +## Load Test Configuration + +### Configuration + + +| Machine | Size/CPU | Status | +|---|---|---| +| 73d8dd909c1189 mia (app) | performance-cpu-1x@2048MB | always on | +| e286de4f711e86 mia (app) | performance-cpu-1x@2048MB | always on | +| 178134db566489 mia (worker) | performance-cpu-1x@2048MB | always on | +| 7811020c91d138 mia (worker) | performance-cpu-1x@2048MB | always on +178134db566489 mia (worker) | performance-cpu-1x@2048MB | stopped +| 06e825d0da2387 mia (worker) | performance-cpu-1x@2048MB | stopped | + +fire-engine machines: +| Machine | Size/CPU | Status | +|---|---|---| +| 2874d0db0e5258 mia app | performance-cpu-2x@4096MB | always on | +| 48ed194f7de258 mia app | performance-cpu-2x@4096MB | always on | +| 56830d45f70218 sjc app | performance-cpu-2x@4096MB | always on | + +```yml +phases: + - duration: 60 + arrivalRate: 1 # Initial load + - duration: 120 + arrivalRate: 2 # Increased load + - duration: 180 + arrivalRate: 3 # Peak load + - duration: 60 + arrivalRate: 1 # Cool down +``` + +using fire-engine as default scraping strategy + +```yml +NUM_WORKERS_PER_QUEUE=12 +``` + +### Results +Date: 14:42:27(-0300) + +| Metric | Value | +|---------------------------------------------|---------| +| errors.Failed capture or match | 43 | +| http.codes.200 | 1757 | +| http.codes.404 | 43 | +| http.downloaded_bytes | 0 | +| http.request_rate | 3/sec | +| http.requests | 1800 | +| http.response_time.min | 363 | +| http.response_time.max | 6065 | +| http.response_time.mean | 847.8 | +| http.response_time.median | 804.5 | +| http.response_time.p95 | 1130.2 | +| http.response_time.p99 | 1353.1 | +| http.responses | 1800 | +| vusers.completed | 857 | +| vusers.created | 900 | +| vusers.created_by_name.Crawl a URL | 900 | +| vusers.failed | 43 | +| vusers.session_length.min | 11598.4 | +| vusers.session_length.max | 17005.3 | +| vusers.session_length.mean | 11854.1 | +| vusers.session_length.median | 11734.2 | +| vusers.session_length.p95 | 12213.1 | +| vusers.session_length.p99 | 12459.8 | + +### Metrics + +![](./assets/metrics-fire-engine-test-8.png) +![](./assets/metrics-test-8.png) + +**CPU Utilization:** +- **Fire-engine mia machines:** Reached 99% after 16 minutes of processing the queue, but dropped to 0% after the queue was fully processed. The sjc machine was not requested during the +- **Worker machines:** Maintained CPU utilization above 89% during the load testing time. The higher CPU value indicates an accurate maximum number of workers/machine (12). Other worker machines were not autoscaled for solving the queue as spected. + +**Memory Utilization:** +- **Fire-engine mia machines:** utilization reached 92% after 16 minutes of processing the queue. +- **Worker machines:** Maintained Memory utilization above 650MiB during the test. + +## Conclusions and Next Steps + +### Conclusions + +1. **Request Handling:** The system effectively managed to queue all requests, demonstrating its capability to handle the initial setup of traffic without any failures. +2. **Autoscaling Issues:** The other worker machines should have been turned on, but the autoscaling strategy did not work as expected. +3. **Resource Management:** The system maintained high CPU and memory utilization, indicating efficient use of resources, but the autoscaling failure needs to be addressed. + +### Next Steps + +1. **Investigate Autoscaling:** Investigate why the autoscaling strategy did not work properly and ensure that additional worker machines are turned on as needed. +2. **Optimize Autoscaling:** Implement and test improvements to the autoscaling strategy to ensure it dynamically adjusts the number of active machines based on the current load. +3. **Extended Duration Testing:** Conduct further tests with extended durations to evaluate the impact of the improved autoscaling strategy on system stability and performance. +4. **Monitor and Optimize:** Continuously monitor system performance during the new tests, focusing on the effects of the autoscaling improvements. Use the gathered data to optimize configurations and troubleshoot any new issues that arise. + +By following these steps, we can further enhance the system's performance and reliability under varying load conditions. diff --git a/apps/test-suite/load-test.yml b/apps/test-suite/load-test.yml new file mode 100644 index 00000000..1528f51c --- /dev/null +++ b/apps/test-suite/load-test.yml @@ -0,0 +1,77 @@ +config: + target: "https://staging-firecrawl-scraper-js.fly.dev/v0" + http: + timeout: 30 + phases: + # /scrape + # - duration: 60 + # arrivalRate: 10 # Initial load + # - duration: 120 + # arrivalRate: 20 # Increased load + # - duration: 180 + # arrivalRate: 30 # Peak load + # - duration: 60 + # arrivalRate: 10 # Cool down + # /crawl + - duration: 60 + arrivalRate: 1 # Initial load + - duration: 120 + arrivalRate: 2 # Increased load + - duration: 180 + arrivalRate: 3 # Peak load + - duration: 60 + arrivalRate: 1 # Cool down + defaults: + headers: + Authorization: "Bearer YOUR_API_KEY" +scenarios: + # - name: Scrape a URL + # flow: + # - post: + # url: "/scrape" + # json: + # url: "https://www.scrapethissite.com" + # pageOptions: + # onlyMainContent: true + # capture: + # - json: "$.data.markdown" + # as: markdown_content + + - name: Crawl a URL + flow: + - post: + url: "/crawl" + json: + url: "https://rsseau.fr" + crawlerOptions: + limit: 100 + pageOptions: + onlyMainContent: true + capture: + - json: "$.jobId" + as: job_id + - think: 10 + - get: + url: "/crawl/status/{{ job_id }}" + capture: + - json: "$.status" + as: crawl_status + until: + - condition: "equals" + value: "completed" + variable: "crawl_status" + retry: + count: 20 + wait: 10 + + # - name: Search for a query + # flow: + # - post: + # url: "/search" + # json: + # query: "firecrawl" + # pageOptions: + # fetchPageContent: true + # capture: + # - json: "$.data[0].markdown" + # as: search_markdown_content \ No newline at end of file diff --git a/apps/test-suite/package.json b/apps/test-suite/package.json index 33aa2cd9..bd4d052a 100644 --- a/apps/test-suite/package.json +++ b/apps/test-suite/package.json @@ -3,7 +3,8 @@ "version": "1.0.0", "description": "", "scripts": { - "test": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false", + "test:suite": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false", + "test:load": "artillery run --output ./load-test-results/test-run-report.json load-test.yml", "test:scrape": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false --testPathPattern=tests/scrape.test.ts", "test:crawl": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false --testPathPattern=tests/crawl.test.ts" },