Run 2 summary

https://diamant.ru/diamant-jewelry-catalog/product/51-310-01741-2/

Tested 2025-01-15 05:06:27 using Chrome 131.0.6778.85 (runtime settings).

SummaryWaterfall MetricsFilmstrip CoachPageXrayCPU Third partyScreenshotsaxe

Summary

MetricValue
Page metrics
Performance score68
Total page size3.9 MB
Requests119
Timing metrics
TTFB184 ms
First Paint445 ms
Fully Loaded2.157 s
Google Web Vitals
TTFB184 ms
First Contentful Paint (FCP) 445 ms
Largest Contentful Paint (LCP) 1.344 s
Cumulative Layout Shift (CLS) 0.03
Total Blocking Time232 ms
Max Potential FID169 ms
CPU metrics
CPU long tasks6
CPU last long task happens at1.747 s
Visual Metrics
First Visual Change434 ms
Speed Index1.358 s
Visual Complete 85%1.900 s
Visual Complete 99%6.900 s
Last Visual Change6.900 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.5 sCPU Long Task duration 154 msFirst Visual Change 434 msFirst Contentful Paint 445 ms
0.6 sDOM Content Loaded Time 576 msPage Load Time 584 msCPU Long Task duration 169 ms
0.8 s
0.9 sLayout Shift 0.00217 874 ms
1 sLayout Shift 0.00438 933 ms
1.1 sCPU Long Task duration 129 ms
1.2 sLayout Shift 0.00219 1.197 s
1.3 sCPU Long Task duration 52 msZone 1.206 sZone:ZoneAwarePromise 1.210 sZone:toString 1.211 sZone:util 1.211 sZone:legacy 1.212 sZone:timers 1.212 sZone:requestAnimationFrame 1.212 sZone:blocking 1.212 sZone:EventTarget 1.213 sZone:MutationObserver 1.214 sCPU Long Task duration 75 ms
1.4 sLCP <> 1.344 sLayout Shift 0.01751 1.346 s
1.5 sLayout Shift 0.00115 1.449 sLayout Shift 0.00076 1.472 s
1.6 sLayout Shift 0.00084 1.543 sLayout Shift 0.00102 1.572 s
1.7 sLayout Shift 0.00113 1.652 s
1.8 sCPU Long Task duration 57 ms
1.9 sLayout Shift 0.00142 1.812 sVisual Complete 85% 1.900 sVisual Complete 95% 1.900 s
2 s
2.1 s
2.2 sFully Loaded 2.157 s
2.3 s
2.4 s
2.5 s
2.6 s
2.7 s
2.8 s
2.9 s
3 s
3.1 s
3.2 s
3.3 s
3.4 s
3.5 s
3.6 s
3.7 s
3.8 s
3.9 s
4 s
4.1 s
4.2 s
4.3 s
4.4 s
4.5 s
4.6 s
4.7 s
4.8 s
4.9 s
5 s
5.1 s
5.2 s
5.3 s
5.4 s
5.5 s
5.6 s
5.7 s
5.8 s
5.9 s
6 s
6.1 s
6.2 s
6.3 s
6.4 s
6.5 s
6.6 s
6.7 s
6.8 s
6.9 sLast Visual Change 6.900 sVisual Complete 99% 6.900 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.1.

I am the coach

Coach score

Performance advice (68)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 2 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.80
Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
Offenders:
  • https://cdn.sokolov.ru/upload/content/area/0472b2d024062b19371932fc4cb83583.jpg
  • https://pmdn.sokolov.io/pics/CB/E6/780B4237E5DBB4898922D8BCAB82.jpg
  • Inline CSS for faster first render (inlineCss)The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.95
    Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
    Avoid CPU Long Tasks (longTasks)The page has 6 CPU long tasks with the total of 636 ms. The total blocking time is 232 ms and 1 long task before first contentful paint with total time of 154 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.0
    Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.
    Offenders:
  • self
  • self
  • self
  • self
  • self
  • self
  • Avoid Frontend single point of failures (spof)The page has 10 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.90
    Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.
    Offenders:
  • https://static-catalog.diamant.ru/_next/static/css/a16538aab560fdd2.css
  • https://static-catalog.diamant.ru/_next/static/css/1f57efefabe50f85.css
  • https://static-catalog.diamant.ru/_next/static/css/5ea1eca43c8d2b32.css
  • https://static-catalog.diamant.ru/_next/static/css/d14b3cbc8f7c46c4.css
  • https://static-catalog.diamant.ru/_next/static/css/4398113f455f593f.css
  • https://static-catalog.diamant.ru/_next/static/css/f2f640d30117f472.css
  • https://static-catalog.diamant.ru/_next/static/css/923538a4e5a3c925.css
  • https://static-catalog.diamant.ru/_next/static/css/b03e009bf1bbe802.css
  • https://static-catalog.diamant.ru/_next/static/css/3e0b7ee64752ffdb.css
  • https://static-catalog.diamant.ru/_next/static/css/7d06de3534181a6c.css
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 40 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 141.8 kB the next access.0
    Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
    Offenders:
  • https://diamant.ru/api/v5/profile/
  • https://diamant.ru/api/v5/profile/products/
  • https://diamant.ru/api/v5/handbooks/currency-rates/
  • https://diamant.ru/api/v5/location/check/
  • https://diamant.ru/api/v4/content/area/refund-info-kt/
  • https://static-catalog.diamant.ru/meta/diamant-manifest.json
  • https://diamant.ru/api/v4/content/area/feedback-channels/
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://static-catalog.diamant.ru/meta/diamant-new-favicon.ico
  • https://diamant.ru/api/v5/handbooks/delivery-info/
  • https://diamant.ru/api/v5/products/comment-info/?url_codes=51-310-01741-2
  • https://diamant.ru/api/v5/products/price/51-310-01741-2/
  • https://diamant.ru/api/v5/catalog/product-info/51-310-01741-2/
  • https://diamant.ru/api/v5/products/sale-label/?url_code=51-310-01741-2
  • https://catalog.sokolov.ru/api/v2/products/51-310-01741-2/
  • https://seo.sokolov.ru/api/v1/meta/product/51-310-01741-2/
  • https://static-catalog.diamant.ru/meta/diamant-new-favicon.svg
  • https://static-catalog.diamant.ru/icons/notification-border.svg
  • https://diamant.ru/api/v4/content/area/personal-price/
  • https://diamant.ru/api/v4/catalog/product/51-310-01741-2/installment-pay/
  • https://diamant.ru/api/v4/content/area/payment-info-kt/
  • https://diamant.ru/api/v5/products/coupon/51-310-01741-2/
  • https://diamant.ru/api/v5/catalog/product/51-310-01741-2/comments-files/?per-page=99
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-310-01741-2,51-310-01741-1,31-310-01741-2
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-320-01741-2
  • https://pmdn.sokolov.io/pics/03/71/69E8DC518DA478E9814DF3D8B96F.jpg
  • https://catalog.sokolov.ru/api/v2/products/sizes/51-310-01741-2/
  • https://pmdn.sokolov.io/pics/A4/D3/90E439B64B14FE44C78880D35F8E.jpg
  • https://pmdn.sokolov.io/pics/FF/1B/2E175947A7001A2230860CEDF1D5.jpg
  • https://pmdn.sokolov.io/pics/6B/3F/EFA00688554A2A609F8717D087E1.jpg
  • https://diamant.ru/icons/star-marked-gold.svg
  • https://pmdn.sokolov.io/pics/D1/BF/BC6A2ACD67D8638CC67FA0736503.jpg
  • https://diamant.ru/api/v4/catalog/product/51-310-01741-2/comments/?page=1&page-size=5
  • https://diamant.ru/api/v5/products/prices/?url_codes=31-310-01741-2,51-310-01741-1,51-310-01741-2
  • https://diamant.ru/api/v5/products/prices/?url_codes=51-320-01741-2
  • https://pmdn.sokolov.io/pics/CB/E6/780B4237E5DBB4898922D8BCAB82.jpg
  • https://autocomplete.diginetica.net/_health
  • https://pmdn.sokolov.io/pics/93/FF/FD0A5A2A1BE5621DD525B9A19B9C.jpg
  • https://pmdn.sokolov.io/pics/DA/0D/D00CB25390A313F606C74D5F7647.jpg
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • Long cache headers is good (cacheHeadersLong)The page has 1 request that have a shorter cache time than 30 days (but still a cache time).99
    Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
    Offenders:
  • https://cdn.diginetica.net/5183/client.js
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 116.1 kB and uncompressed size is 696.1 kB. That is big and the CSS could most probably be smaller.50
    Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore.
    Offenders:
    URLTransfer sizeContent size
    https://static-catalog.diamant.ru/_next/static/css/a16538aab560fdd2.css 50.6 KB365.6 KB
    https://static-catalog.diamant.ru/_next/static/css/1f57efefabe50f85.css 5.6 KB27.7 KB
    https://static-catalog.diamant.ru/_next/static/css/5ea1eca43c8d2b32.css 7.7 KB41.3 KB
    https://static-catalog.diamant.ru/_next/static/css/d14b3cbc8f7c46c4.css 8.4 KB40.0 KB
    https://static-catalog.diamant.ru/_next/static/css/4398113f455f593f.css 32.7 KB183.2 KB
    https://static-catalog.diamant.ru/_next/static/css/f2f640d30117f472.css 1.2 KB1.9 KB
    https://static-catalog.diamant.ru/_next/static/css/923538a4e5a3c925.css 1.2 KB1.8 KB
    https://static-catalog.diamant.ru/_next/static/css/b03e009bf1bbe802.css 4.1 KB15.9 KB
    https://static-catalog.diamant.ru/_next/static/css/3e0b7ee64752ffdb.css 911 B886 B
    https://static-catalog.diamant.ru/_next/static/css/7d06de3534181a6c.css 1.1 KB1.6 KB
    The favicon should be small and cacheable (favicon)The favicon has no cache time. 50
    Description: It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type.
    Offenders:
  • https://static-catalog.diamant.ru/meta/diamant-new-favicon.ico
  • Avoid too many fonts (fewFonts)The page has 4 font requests. Do you really need them? What value does the fonts give the user?60
    Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
    Offenders:
  • https://cdn.sokolov.ru/fonts/montserrat/bold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/regular.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/medium.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 807.2 kB and the uncompressed size is 2.7 MB. This is totally crazy! There is really room for improvement here. 0
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://static-catalog.diamant.ru/_next/static/chunks/webpack-4173becefb9a38a8.js 8.3 KB14.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js 66.5 KB204.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js 32.3 KB109.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js 172.1 KB605.3 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4643-fe528e618c90a44c.js 33.2 KB110.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1389-6de8ec0aad0d4042.js 18.0 KB61.7 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4729-d2f7556ef5a1e9ce.js 2.6 KB3.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/9436-8b7e73a429627c4a.js 6.7 KB15.6 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7482-9a607b05a6263238.js 27.7 KB78.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7220-4b91df52d3ca4a3b.js 29.7 KB126.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7899-7b78878bd67976d3.js 25.7 KB94.2 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7184-0e1e17b595b138db.js 10.0 KB29.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8313-22609ce0b7f20b73.js 13.9 KB41.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4203-1c681e00b59e0bd5.js 9.2 KB26.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1023-019593fbaf6e6c7f.js 20.0 KB63.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1242-909b520758d6bf91.js 75.5 KB274.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/pages/product/client/%5Bar...edb85a250660bf.js 1.0 KB956 B
    https://static-catalog.diamant.ru/_next/static/ZaM2xOeRkrO7X-8qOq_e_/_buildManifest.js 2.1 KB5.2 KB
    https://static-catalog.diamant.ru/_next/static/ZaM2xOeRkrO7X-8qOq_e_/_ssgManifest.js 615 B77 B
    https://static-catalog.diamant.ru/_next/static/chunks/5672.c11cf4318b10989f.js 3.5 KB8.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1541.db673ffea797ece4.js 1.7 KB2.6 KB
    https://static-catalog.diamant.ru/_next/static/chunks/3333.1fd2fe3e19d424df.js 16.9 KB52.6 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7413.07cdcc44c06b3a97.js 7.9 KB21.7 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4670.dcdf4e3cdb69e019.js 1.4 KB1.5 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7811.f8cf24f034ca1213.js 2.0 KB3.3 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7152.ce91b6d3c085f192.js 1.6 KB2.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4100.32b68982a7d87933.js 1.1 KB824 B
    https://static-catalog.diamant.ru/_next/static/chunks/8316.2f0baf6b0adfaf4f.js 1.1 KB824 B
    https://static-catalog.diamant.ru/_next/static/chunks/4803.a81bac4a22023b4a.js 1013 B673 B
    https://static-catalog.diamant.ru/_next/static/chunks/566.0c0417b504718185.js 1.0 KB784 B
    https://static-catalog.diamant.ru/_next/static/chunks/5210.aa76273e47a46804.js 1.1 KB1.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8114.18f858da31fff1c0.js 980 B612 B
    https://static-catalog.diamant.ru/_next/static/chunks/6018.b56c34e864d9a98d.js 1.1 KB1.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/3301.b21bc8144664229a.js 1.3 KB1.2 KB
    https://static-catalog.diamant.ru/_next/static/chunks/5123.a7ad076cb54663ae.js 26.9 KB80.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/91f5892f.ceac726038f76803.js 746 B260 B
    https://static-catalog.diamant.ru/_next/static/chunks/5074.be7d580206864104.js 7.4 KB25.7 KB
    https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js 31.8 KB108.3 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8005.2cfdab27d2fbfd93.js 2.7 KB6.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4379.021e104d0f1004dc.js 1.4 KB1.4 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8503.89f24d83fcc15d64.js 1.0 KB710 B
    https://static-catalog.diamant.ru/_next/static/chunks/8541.bdb049e98e1b1917.js 1.2 KB1.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/5850.cee29e89da96c5a8.js 1.1 KB891 B
    https://static-catalog.diamant.ru/_next/static/chunks/6795.984c7cded611501e.js 949 B616 B
    https://static-catalog.diamant.ru/_next/static/chunks/1493.960d995915de6689.js 972 B598 B
    https://static-catalog.diamant.ru/_next/static/chunks/8165.7f0f846bb737a113.js 1.1 KB840 B
    https://static-catalog.diamant.ru/_next/static/chunks/297.596d1bb827a34b73.js 1.1 KB830 B
    https://cdn.diginetica.net/5183/client.js 111.4 KB485.5 KB
    Avoid using incorrect mime types (mimeTypes)The page has 2 misconfigured mime types. 98
    Description: It's not a great idea to let browsers guess content types (content sniffing), in some cases it can actually be a security risk.
    Offenders:
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://seo.sokolov.ru/api/v1/meta/product/51-310-01741-2/
  • Make each CSS response small (optimalCssSize)https://static-catalog.diamant.ru/_next/static/css/a16538aab560fdd2.css size is 51.8 kB (51793) and that is bigger than the limit of 14.5 kB. https://static-catalog.diamant.ru/_next/static/css/4398113f455f593f.css size is 33.5 kB (33460) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.80
    Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
    Offenders:
    URLTransfer sizeContent size
    https://static-catalog.diamant.ru/_next/static/css/a16538aab560fdd2.css 50.6 KB365.6 KB
    https://static-catalog.diamant.ru/_next/static/css/4398113f455f593f.css 32.7 KB183.2 KB
    Total page size shouldn't be too big (pageSize)The page total transfer size is 4.1 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://diamant.ru/diamant-jewelry-catalog/product/51-310-01741-2/ 11.4 KB41.4 KB
    https://cdn.sokolov.ru/fonts/montserrat/bold.woff2 52.1 KB51.7 KB
    https://cdn.sokolov.ru/fonts/montserrat/regular.woff2 52.2 KB51.8 KB
    https://cdn.sokolov.ru/fonts/montserrat/medium.woff2 51.9 KB51.6 KB
    https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2 52.0 KB51.7 KB
    https://static-catalog.diamant.ru/_next/static/css/a16538aab560fdd2.css 50.6 KB365.6 KB
    https://static-catalog.diamant.ru/_next/static/css/1f57efefabe50f85.css 5.6 KB27.7 KB
    https://static-catalog.diamant.ru/_next/static/css/5ea1eca43c8d2b32.css 7.7 KB41.3 KB
    https://static-catalog.diamant.ru/_next/static/css/d14b3cbc8f7c46c4.css 8.4 KB40.0 KB
    https://static-catalog.diamant.ru/_next/static/css/4398113f455f593f.css 32.7 KB183.2 KB
    https://static-catalog.diamant.ru/_next/static/chunks/webpack-4173becefb9a38a8.js 8.3 KB14.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js 66.5 KB204.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js 32.3 KB109.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js 172.1 KB605.3 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4643-fe528e618c90a44c.js 33.2 KB110.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1389-6de8ec0aad0d4042.js 18.0 KB61.7 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4729-d2f7556ef5a1e9ce.js 2.6 KB3.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/9436-8b7e73a429627c4a.js 6.7 KB15.6 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7482-9a607b05a6263238.js 27.7 KB78.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7220-4b91df52d3ca4a3b.js 29.7 KB126.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7899-7b78878bd67976d3.js 25.7 KB94.2 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7184-0e1e17b595b138db.js 10.0 KB29.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8313-22609ce0b7f20b73.js 13.9 KB41.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4203-1c681e00b59e0bd5.js 9.2 KB26.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1023-019593fbaf6e6c7f.js 20.0 KB63.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1242-909b520758d6bf91.js 75.5 KB274.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/pages/product/client/%5Bar...edb85a250660bf.js 1.0 KB956 B
    https://static-catalog.diamant.ru/_next/static/ZaM2xOeRkrO7X-8qOq_e_/_buildManifest.js 2.1 KB5.2 KB
    https://static-catalog.diamant.ru/_next/static/ZaM2xOeRkrO7X-8qOq_e_/_ssgManifest.js 615 B77 B
    https://static-catalog.diamant.ru/_next/static/css/f2f640d30117f472.css 1.2 KB1.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/5672.c11cf4318b10989f.js 3.5 KB8.0 KB
    https://static-catalog.diamant.ru/_next/static/css/923538a4e5a3c925.css 1.2 KB1.8 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1541.db673ffea797ece4.js 1.7 KB2.6 KB
    https://static-catalog.diamant.ru/_next/static/css/b03e009bf1bbe802.css 4.1 KB15.9 KB
    https://static-catalog.diamant.ru/_next/static/chunks/3333.1fd2fe3e19d424df.js 16.9 KB52.6 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7413.07cdcc44c06b3a97.js 7.9 KB21.7 KB
    https://static-catalog.diamant.ru/_next/static/css/3e0b7ee64752ffdb.css 911 B886 B
    https://static-catalog.diamant.ru/_next/static/chunks/4670.dcdf4e3cdb69e019.js 1.4 KB1.5 KB
    https://static-catalog.diamant.ru/_next/static/css/7d06de3534181a6c.css 1.1 KB1.6 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7811.f8cf24f034ca1213.js 2.0 KB3.3 KB
    https://static-catalog.diamant.ru/_next/static/chunks/7152.ce91b6d3c085f192.js 1.6 KB2.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4100.32b68982a7d87933.js 1.1 KB824 B
    https://static-catalog.diamant.ru/_next/static/chunks/8316.2f0baf6b0adfaf4f.js 1.1 KB824 B
    https://static-catalog.diamant.ru/_next/static/chunks/4803.a81bac4a22023b4a.js 1013 B673 B
    https://static-catalog.diamant.ru/_next/static/chunks/566.0c0417b504718185.js 1.0 KB784 B
    https://static-catalog.diamant.ru/_next/static/chunks/5210.aa76273e47a46804.js 1.1 KB1.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8114.18f858da31fff1c0.js 980 B612 B
    https://diamant.ru/api/v4/profile/viewed-product/ 1.0 KB84 B
    https://static-catalog.diamant.ru/_next/static/chunks/6018.b56c34e864d9a98d.js 1.1 KB1.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/3301.b21bc8144664229a.js 1.3 KB1.2 KB
    https://diamant.ru/api/v5/profile/ 816 B69 B
    https://diamant.ru/api/v6/basket/easy-calculate/ 1.3 KB392 B
    https://diamant.ru/api/v5/profile/products/ 1.1 KB40 B
    https://diamant.ru/api/v5/handbooks/currency-rates/ 682 B155 B
    https://diamant.ru/api/v5/location/check/ 1.1 KB128 B
    https://diamant.ru/api/v4/content/area/refund-info-kt/ 1.3 KB1.9 KB
    https://seo.sokolov.ru/api/v1/meta/ip/ 0 b0 b
    https://static-catalog.diamant.ru/meta/diamant-manifest.json 898 B640 B
    https://diamant.ru/api/v4/content/area/feedback-channels/ 1.1 KB2.4 KB
    https://seo.sokolov.ru/api/v1/meta/ip/ 207 B31 B
    https://static-catalog.diamant.ru/meta/diamant-new-favicon.ico 1.4 KB9.4 KB
    https://catalog.sokolov.ru/api/v2/products/51-310-01741-2/ 0 b0 b
    https://diamant.ru/api/v5/handbooks/delivery-info/ 1.7 KB3.7 KB
    https://diamant.ru/api/v5/products/comment-info/?url_codes=51-310-01741-2 929 B463 B
    https://diamant.ru/api/v5/products/price/51-310-01741-2/ 734 B571 B
    https://diamant.ru/api/v5/catalog/product-info/51-310-01741-2/ 595 B238 B
    https://diamant.ru/api/v5/products/sale-label/?url_code=51-310-01741-2 738 B188 B
    https://seo.sokolov.ru/api/v1/meta/product/51-310-01741-2/ 0 b0 b
    https://catalog.sokolov.ru/api/v2/products/51-310-01741-2/ 2.8 KB11.4 KB
    https://seo.sokolov.ru/api/v1/meta/product/51-310-01741-2/ 1.9 KB1.7 KB
    https://static-catalog.diamant.ru/meta/diamant-new-favicon.svg 894 B680 B
    https://static-catalog.diamant.ru/_next/static/chunks/5123.a7ad076cb54663ae.js 26.9 KB80.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/91f5892f.ceac726038f76803.js 746 B260 B
    https://static-catalog.diamant.ru/_next/static/chunks/5074.be7d580206864104.js 7.4 KB25.7 KB
    https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js 31.8 KB108.3 KB
    https://static-catalog.diamant.ru/_next/static/chunks/8005.2cfdab27d2fbfd93.js 2.7 KB6.1 KB
    https://static-catalog.diamant.ru/_next/static/chunks/4379.021e104d0f1004dc.js 1.4 KB1.4 KB
    https://static-catalog.diamant.ru/icons/notification-border.svg 675 B195 B
    https://static-catalog.diamant.ru/_next/static/chunks/8503.89f24d83fcc15d64.js 1.0 KB710 B
    https://static-catalog.diamant.ru/_next/static/chunks/8541.bdb049e98e1b1917.js 1.2 KB1.1 KB
    https://diamant.ru/api/v4/content/area/personal-price/ 1.5 KB2.5 KB
    https://static-catalog.diamant.ru/_next/static/chunks/5850.cee29e89da96c5a8.js 1.1 KB891 B
    https://diamant.ru/api/v6/basket/easy-calculate/ 1.0 KB392 B
    https://diamant.ru/api/v4/catalog/product/51-310-01741-2/installment-pay/ 938 B825 B
    https://diamant.ru/api/v4/content/area/payment-info-kt/ 1.7 KB5.3 KB
    https://catalog.sokolov.ru/api/v2/products/?url_codes=51-320-01741-2 0 b0 b
    https://diamant.ru/api/v4/content/filter/product/ 1.1 KB1.5 KB
    https://catalog.sokolov.ru/api/v2/products/?url_codes=51-310-01741-2,51-310-01741-1,31-310-01741-2 0 b0 b
    https://catalog.sokolov.ru/api/v2/products/sizes/51-310-01741-2/ 0 b0 b
    https://diamant.ru/api/v5/products/coupon/51-310-01741-2/ 486 B76 B
    https://diamant.ru/api/v5/catalog/product/51-310-01741-2/comments-files/?per-page=99 591 B202 B
    https://catalog.sokolov.ru/api/v2/products/?url_codes=51-310-01741-2,51-310-01741-1,31-310-01741-2 3.9 KB27.8 KB
    https://catalog.sokolov.ru/api/v2/products/?url_codes=51-320-01741-2 2.4 KB9.3 KB
    https://pmdn.sokolov.io/pics/03/71/69E8DC518DA478E9814DF3D8B96F.jpg 2.4 KB2.2 KB
    https://catalog.sokolov.ru/api/v2/products/sizes/51-310-01741-2/ 525 B125 B
    https://pmdn.sokolov.io/pics/A4/D3/90E439B64B14FE44C78880D35F8E.jpg 2.2 KB1.9 KB
    https://pmdn.sokolov.io/pics/FF/1B/2E175947A7001A2230860CEDF1D5.jpg 3.6 KB3.3 KB
    https://pmdn.sokolov.io/pics/6B/3F/EFA00688554A2A609F8717D087E1.jpg 3.3 KB3.0 KB
    https://diamant.ru/icons/star-marked-gold.svg 483 B264 B
    https://pmdn.sokolov.io/pics/D1/BF/BC6A2ACD67D8638CC67FA0736503.jpg 70.6 KB70.3 KB
    https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4 2.7 MB2.7 MB
    https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4 N/A2.1 MB
    https://static-catalog.diamant.ru/_next/static/chunks/6795.984c7cded611501e.js 949 B616 B
    https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4 N/A2.3 MB
    https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4 N/A64.0 KB
    https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4 N/A128.0 KB
    https://diamant.ru/api/v4/catalog/product/51-310-01741-2/comments/?page=1&page-size=5 782 B675 B
    https://diamant.ru/api/v5/products/prices/?url_codes=31-310-01741-2,51-310-01741-1,51-310-01741-2 609 B480 B
    https://diamant.ru/api/v5/products/prices/?url_codes=51-320-01741-2 565 B161 B
    https://cdn.sokolov.ru/upload/content/area/0472b2d024062b19371932fc4cb83583.jpg 15.2 KB15.0 KB
    https://static-catalog.diamant.ru/_next/static/chunks/1493.960d995915de6689.js 972 B598 B
    https://static-catalog.diamant.ru/_next/static/chunks/8165.7f0f846bb737a113.js 1.1 KB840 B
    https://static-catalog.diamant.ru/_next/static/chunks/297.596d1bb827a34b73.js 1.1 KB830 B
    https://cdn.diginetica.net/5183/client.js 111.4 KB485.5 KB
    https://pmdn.sokolov.io/pics/CB/E6/780B4237E5DBB4898922D8BCAB82.jpg 17.5 KB17.2 KB
    https://autocomplete.diginetica.net/_health 363 B2 B
    https://pmdn.sokolov.io/pics/93/FF/FD0A5A2A1BE5621DD525B9A19B9C.jpg 2.4 KB2.2 KB
    https://pmdn.sokolov.io/pics/DA/0D/D00CB25390A313F606C74D5F7647.jpg 2.4 KB2.1 KB
    https://tracking.diginetica.net/csc-event...ica.net/csc-event 37 B37 B
    Don't use private headers on static content (privateAssets)The page has 6 requests with private headers. The main page has a private header. It could be right in some cases where the user can be logged in and served specific content. But if your asset is static it should never be private. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.50
    Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
    Offenders:
  • https://diamant.ru/diamant-jewelry-catalog/product/51-310-01741-2/
  • https://catalog.sokolov.ru/api/v2/products/51-310-01741-2/
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-310-01741-2,51-310-01741-1,31-310-01741-2
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-320-01741-2
  • https://catalog.sokolov.ru/api/v2/products/sizes/51-310-01741-2/
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • Avoid missing and error requests (responseOk)The page has 2 error responses. The page has 2 responses with code 404. 80
    Description: Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.
    Offenders:
  • https://diamant.ru/api/v5/profile/
  • https://diamant.ru/api/v5/products/coupon/51-310-01741-2/
  • Best practice advice (84)

    TitleAdviceScore
    Do not send too long headers (longHeaders)https://diamant.ru/a...e/viewed-product/ has a header set-cookie that is 742 characters long. https://diamant.ru/api/v5/profile/ has a header set-cookie that is 633 characters long. https://diamant.ru/a...t/easy-calculate/ has a header set-cookie that is 947 characters long. https://diamant.ru/a...profile/products/ has a header set-cookie that is 947 characters long. https://diamant.ru/a...5/location/check/ has a header set-cookie that is 977 characters long. 95
    Description: Do not send response headers that are too long.
    Offenders:
  • https://diamant.ru/api/v4/profile/viewed-product/
  • https://diamant.ru/api/v5/profile/
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v5/profile/products/
  • https://diamant.ru/api/v5/location/check/
  • Avoid too many third party requests (thirdParty)The page do 28% requests to third party domains (33 requests and 3.3 MB). First party is 86 requests and 848.1 kB. The page transfer more bytes from third party domains (3.3 MB) then first party (848.1 kB). The regex .*diamant.* was used to calculate first/third party requests.0
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 9 responses that sets both a max-age and expires header. There are 5 responses that sets a pragma no-cache header (that is a request header). There are 118 responses that sets a server header. 0
    Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
    Offenders:
  • https://diamant.ru/diamant-jewelry-catalog/product/51-310-01741-2/
  • https://cdn.sokolov.ru/fonts/montserrat/bold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/bold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/regular.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/regular.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/medium.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/medium.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2
  • https://static-catalog.diamant.ru/_next/static/css/a16538aab560fdd2.css
  • https://static-catalog.diamant.ru/_next/static/css/1f57efefabe50f85.css
  • https://static-catalog.diamant.ru/_next/static/css/5ea1eca43c8d2b32.css
  • https://static-catalog.diamant.ru/_next/static/css/d14b3cbc8f7c46c4.css
  • https://static-catalog.diamant.ru/_next/static/css/4398113f455f593f.css
  • https://static-catalog.diamant.ru/_next/static/chunks/webpack-4173becefb9a38a8.js
  • https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js
  • https://static-catalog.diamant.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js
  • https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js
  • https://static-catalog.diamant.ru/_next/static/chunks/4643-fe528e618c90a44c.js
  • https://static-catalog.diamant.ru/_next/static/chunks/1389-6de8ec0aad0d4042.js
  • https://static-catalog.diamant.ru/_next/static/chunks/4729-d2f7556ef5a1e9ce.js
  • https://static-catalog.diamant.ru/_next/static/chunks/9436-8b7e73a429627c4a.js
  • https://static-catalog.diamant.ru/_next/static/chunks/7482-9a607b05a6263238.js
  • https://static-catalog.diamant.ru/_next/static/chunks/7220-4b91df52d3ca4a3b.js
  • https://static-catalog.diamant.ru/_next/static/chunks/7899-7b78878bd67976d3.js
  • https://static-catalog.diamant.ru/_next/static/chunks/7184-0e1e17b595b138db.js
  • https://static-catalog.diamant.ru/_next/static/chunks/8313-22609ce0b7f20b73.js
  • https://static-catalog.diamant.ru/_next/static/chunks/4203-1c681e00b59e0bd5.js
  • https://static-catalog.diamant.ru/_next/static/chunks/1023-019593fbaf6e6c7f.js
  • https://static-catalog.diamant.ru/_next/static/chunks/1242-909b520758d6bf91.js
  • https://static-catalog.diamant.ru/_next/static/chunks/pages/product/client/%5Bar...edb85a250660bf.js
  • https://static-catalog.diamant.ru/_next/static/ZaM2xOeRkrO7X-8qOq_e_/_buildManifest.js
  • https://static-catalog.diamant.ru/_next/static/ZaM2xOeRkrO7X-8qOq_e_/_ssgManifest.js
  • https://static-catalog.diamant.ru/_next/static/css/f2f640d30117f472.css
  • https://static-catalog.diamant.ru/_next/static/chunks/5672.c11cf4318b10989f.js
  • https://static-catalog.diamant.ru/_next/static/css/923538a4e5a3c925.css
  • https://static-catalog.diamant.ru/_next/static/chunks/1541.db673ffea797ece4.js
  • https://static-catalog.diamant.ru/_next/static/css/b03e009bf1bbe802.css
  • https://static-catalog.diamant.ru/_next/static/chunks/3333.1fd2fe3e19d424df.js
  • https://static-catalog.diamant.ru/_next/static/chunks/7413.07cdcc44c06b3a97.js
  • https://static-catalog.diamant.ru/_next/static/css/3e0b7ee64752ffdb.css
  • https://static-catalog.diamant.ru/_next/static/chunks/4670.dcdf4e3cdb69e019.js
  • https://static-catalog.diamant.ru/_next/static/css/7d06de3534181a6c.css
  • https://static-catalog.diamant.ru/_next/static/chunks/7811.f8cf24f034ca1213.js
  • https://static-catalog.diamant.ru/_next/static/chunks/7152.ce91b6d3c085f192.js
  • https://static-catalog.diamant.ru/_next/static/chunks/4100.32b68982a7d87933.js
  • https://static-catalog.diamant.ru/_next/static/chunks/8316.2f0baf6b0adfaf4f.js
  • https://static-catalog.diamant.ru/_next/static/chunks/4803.a81bac4a22023b4a.js
  • https://static-catalog.diamant.ru/_next/static/chunks/566.0c0417b504718185.js
  • https://static-catalog.diamant.ru/_next/static/chunks/5210.aa76273e47a46804.js
  • https://static-catalog.diamant.ru/_next/static/chunks/8114.18f858da31fff1c0.js
  • https://diamant.ru/api/v4/profile/viewed-product/
  • https://diamant.ru/api/v4/profile/viewed-product/
  • https://diamant.ru/api/v4/profile/viewed-product/
  • https://static-catalog.diamant.ru/_next/static/chunks/6018.b56c34e864d9a98d.js
  • https://static-catalog.diamant.ru/_next/static/chunks/3301.b21bc8144664229a.js
  • https://diamant.ru/api/v5/profile/
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v5/profile/products/
  • https://diamant.ru/api/v5/profile/products/
  • https://diamant.ru/api/v5/profile/products/
  • https://diamant.ru/api/v5/handbooks/currency-rates/
  • https://diamant.ru/api/v5/location/check/
  • https://diamant.ru/api/v4/content/area/refund-info-kt/
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://static-catalog.diamant.ru/meta/diamant-manifest.json
  • https://diamant.ru/api/v4/content/area/feedback-channels/
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://static-catalog.diamant.ru/meta/diamant-new-favicon.ico
  • https://catalog.sokolov.ru/api/v2/products/51-310-01741-2/
  • https://diamant.ru/api/v5/handbooks/delivery-info/
  • https://diamant.ru/api/v5/products/comment-info/?url_codes=51-310-01741-2
  • https://diamant.ru/api/v5/products/price/51-310-01741-2/
  • https://diamant.ru/api/v5/catalog/product-info/51-310-01741-2/
  • https://diamant.ru/api/v5/products/sale-label/?url_code=51-310-01741-2
  • https://seo.sokolov.ru/api/v1/meta/product/51-310-01741-2/
  • https://catalog.sokolov.ru/api/v2/products/51-310-01741-2/
  • https://seo.sokolov.ru/api/v1/meta/product/51-310-01741-2/
  • https://static-catalog.diamant.ru/meta/diamant-new-favicon.svg
  • https://static-catalog.diamant.ru/_next/static/chunks/5123.a7ad076cb54663ae.js
  • https://static-catalog.diamant.ru/_next/static/chunks/91f5892f.ceac726038f76803.js
  • https://static-catalog.diamant.ru/_next/static/chunks/5074.be7d580206864104.js
  • https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js
  • https://static-catalog.diamant.ru/_next/static/chunks/8005.2cfdab27d2fbfd93.js
  • https://static-catalog.diamant.ru/_next/static/chunks/4379.021e104d0f1004dc.js
  • https://static-catalog.diamant.ru/icons/notification-border.svg
  • https://static-catalog.diamant.ru/_next/static/chunks/8503.89f24d83fcc15d64.js
  • https://static-catalog.diamant.ru/_next/static/chunks/8541.bdb049e98e1b1917.js
  • https://diamant.ru/api/v4/content/area/personal-price/
  • https://static-catalog.diamant.ru/_next/static/chunks/5850.cee29e89da96c5a8.js
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v6/basket/easy-calculate/
  • https://diamant.ru/api/v4/catalog/product/51-310-01741-2/installment-pay/
  • https://diamant.ru/api/v4/content/area/payment-info-kt/
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-320-01741-2
  • https://diamant.ru/api/v4/content/filter/product/
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-310-01741-2,51-310-01741-1,31-310-01741-2
  • https://catalog.sokolov.ru/api/v2/products/sizes/51-310-01741-2/
  • https://diamant.ru/api/v5/products/coupon/51-310-01741-2/
  • https://diamant.ru/api/v5/catalog/product/51-310-01741-2/comments-files/?per-page=99
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-310-01741-2,51-310-01741-1,31-310-01741-2
  • https://catalog.sokolov.ru/api/v2/products/?url_codes=51-320-01741-2
  • https://pmdn.sokolov.io/pics/03/71/69E8DC518DA478E9814DF3D8B96F.jpg
  • https://catalog.sokolov.ru/api/v2/products/sizes/51-310-01741-2/
  • https://pmdn.sokolov.io/pics/A4/D3/90E439B64B14FE44C78880D35F8E.jpg
  • https://pmdn.sokolov.io/pics/FF/1B/2E175947A7001A2230860CEDF1D5.jpg
  • https://pmdn.sokolov.io/pics/6B/3F/EFA00688554A2A609F8717D087E1.jpg
  • https://diamant.ru/icons/star-marked-gold.svg
  • https://pmdn.sokolov.io/pics/D1/BF/BC6A2ACD67D8638CC67FA0736503.jpg
  • https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4
  • https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4
  • https://static-catalog.diamant.ru/_next/static/chunks/6795.984c7cded611501e.js
  • https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4
  • https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4
  • https://2pmdn.sokolov.io/pics/E8/F7/05326A41FBC21B81BBFB5A28A0F6.mp4
  • https://diamant.ru/api/v4/catalog/product/51-310-01741-2/comments/?page=1&page-size=5
  • https://diamant.ru/api/v5/products/prices/?url_codes=31-310-01741-2,51-310-01741-1,51-310-01741-2
  • https://diamant.ru/api/v5/products/prices/?url_codes=51-320-01741-2
  • https://cdn.sokolov.ru/upload/content/area/0472b2d024062b19371932fc4cb83583.jpg
  • https://static-catalog.diamant.ru/_next/static/chunks/1493.960d995915de6689.js
  • https://static-catalog.diamant.ru/_next/static/chunks/8165.7f0f846bb737a113.js
  • https://static-catalog.diamant.ru/_next/static/chunks/297.596d1bb827a34b73.js
  • https://cdn.diginetica.net/5183/client.js
  • https://pmdn.sokolov.io/pics/CB/E6/780B4237E5DBB4898922D8BCAB82.jpg
  • https://pmdn.sokolov.io/pics/93/FF/FD0A5A2A1BE5621DD525B9A19B9C.jpg
  • https://pmdn.sokolov.io/pics/DA/0D/D00CB25390A313F606C74D5F7647.jpg
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • Privacy advice (86)

    TitleAdviceScore
    Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
    Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
    Offenders:
  • https://diamant.ru/diamant-jewelry-catalog/product/51-310-01741-2/
  • Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader)Set a referrer-policy header to make sure you do not leak user information.0
    Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
    Offenders:
  • https://diamant.ru/diamant-jewelry-catalog/product/51-310-01741-2/
  • Set a strict transport header to make sure the user always use HTTPS. (strictTransportSecurityHeader)A strict transport header is set but miss out on setting includeSubDomainsThe max age is lower than six months. Increase it to get a better score.70
    Description: The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security.

    Page info

    Page info
    TitleКольцо из золота с гранатом арт. 51-310-01741-2 от DIAMANT
    Width1904
    Height2384
    DOM elements884
    Avg DOM depth14
    Max DOM depth23
    Iframes0
    Script tags22
    Local storage169 B
    Session storage550 B
    Network Information API4g
    Resource Hints
    dns-prefetch
    http://cdn.diginetica.net/
    preconnect
    http://autocomplete.diginetica.net/
    https://static.criteo.net/
    https://cm.g.doubleclick.net/
    https://ad.mail.ru/
    https://googleads.g.doubleclick.net/
    https://www.googletagmanager.com/
    https://www.google-analytics.com/
    https://api.mindbox.ru/
    https://api.flocktory.com/
    https://demo4.paasweb.co.il/

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    Amazon Web Services 100  PaaS
    HSTS 100  Security
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | Metrics from CDP | 

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)184 ms
    First Contentful Paint (FCP)445 ms
    Largest Contentful Paint (LCP)1.344 s
    Cumulative Layout Shift (CLS)0.03
    Total Blocking Time (TBT)232 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP195
    Time spent in recalculate style before FCP16.086 ms
    Extra timings
    TTFB184 ms
    First Paint445 ms
    Load Event End584 ms
    Fully loaded2.157 s
    User Timing marks
    Zone1.206 s
    Zone:ZoneAwarePromise1.210 s
    Zone:toString1.211 s
    Zone:util1.211 s
    Zone:legacy1.212 s
    Zone:timers1.212 s
    Zone:requestAnimationFrame1.212 s
    Zone:blocking1.212 s
    Zone:EventTarget1.213 s
    Zone:MutationObserver1.214 s
    Zone:IntersectionObserver1.214 s
    Zone:FileReader1.214 s
    Zone:on_property1.214 s
    Zone:customElements1.235 s
    Zone:XHR1.235 s
    Zone:geolocation1.235 s
    Zone:PromiseRejectionEvent1.236 s
    Zone:queueMicrotask1.236 s
    User Timing measures
    NameStart timeDuration
    Next.js-before-hydration0 ms574 ms
    Next.js-hydration574 ms105 ms
    Zone1.206 s4 ms
    Zone:ZoneAwarePromise1.210 s1 ms
    Zone:toString1.211 s0 ms
    Zone:util1.211 s1 ms
    Zone:legacy1.212 s0 ms
    Zone:timers1.212 s0 ms
    Zone:requestAnimationFrame1.212 s0 ms
    Zone:blocking1.212 s0 ms
    Zone:EventTarget1.213 s1 ms
    Zone:MutationObserver1.214 s0 ms
    Zone:IntersectionObserver1.214 s0 ms
    Zone:FileReader1.214 s0 ms
    Zone:on_property1.214 s20 ms
    Zone:customElements1.235 s0 ms
    Zone:XHR1.235 s0 ms
    Zone:geolocation1.235 s0 ms
    Zone:PromiseRejectionEvent1.236 s0 ms
    Zone:queueMicrotask1.236 s0 ms

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Render time 1.344 s
    Elements that needed recalculate style before LCP1262
    Time spent in recalculate style before LCP92.213 ms
    Load time1.344 s
    URL https://pmdn.sokolov...CC67FA0736503.jpg
    Size (width*height)294577
    DOM path
    <>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    The Largest Contentful Paint API highlighted this image as a part of the LCP.

    LCP

    Detected Cumulative Layout Shift

    0.03257 cumulative layout shift collected from the Cumulative Layout Shift API.

    These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

    ScoreHTML Element
    0.01751<div class="Product_sklv-product-page__first__ZiZca"></div>,<div class="Block_block__vb2mU Product_sklv-product-page__price-new__8OXcd"></div>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1),body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > div > section > div
    0.00438<div class="Product_sklv-product-page__first__ZiZca"></div>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1)
    0.00219<div class="Product_sklv-product-page__first__ZiZca"></div>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1)
    0.00217<span class="CitySelectButton_city-text___XqH_"></span>,<button class="ButtonDeprecated_sklv-button__Wy8xr ButtonDeprecated_sklv-button_borderless__776ey" types="borderless"></button>
    body > div#__next > div#catalog > div > header > div:eq(1) > div > div:eq(1) > div:eq(0) > div:eq(1) > button > span,body > div#__next > div#catalog > div > header > div:eq(1) > div > div:eq(1) > div:eq(0) > div:eq(2) > a > button
    0.00142<div class="Variants_complect__Jlhe_ Variants_complect_ordinary__8TAm0" data-sklv-action="complect"></div>,<div class="swiper swiper-initialized swiper-horizontal swiper-watch-progress Variants_complect__slider___jVLs swiper-backface-hidden"></div>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(0) > section:eq(6) > div > div:eq(1),body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(0) > section:eq(6) > div > div:eq(1) > div:eq(1) > div
    0.00115<li class="Breadcrumbs_breadcrumbs__item__sF0Wx"></li>,<li class="Breadcrumbs_breadcrumbs__item__sF0Wx" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"></li>,<li class="Breadcrumbs_breadcrumbs__item__sF0Wx" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"></li>,<div class="Sticker_sticker__e8vd8 Sticker_m__7Cxub Chips_sklv-product-page-sticker__xmkvY" style="color: rgb(0, 0, 0); background-color: rgb(242, 242, 242);"></div>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(0) > nav > ul > li:eq(1),body > div#__next > div#catalog > div > main > div > div > div > div:eq(0) > nav > ul > li:eq(2),body > div#__next > div#catalog > div > main > div > div > div > div:eq(0) > nav > ul > li:eq(3),body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(0) > section:eq(3) > div > div:eq(1)
    0.00113<section class="Product_sklv-product-page__characteristics__vIA_9"></section>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(0) > section:eq(5)
    0.00102<section class="Product_sklv-product-page__characteristics__vIA_9"></section>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(0) > section:eq(5)
    0.00084<div class="ProductSizes_sklv-sizes__btn-wrapper__LH1sW Product_sklv-product-page__sizes-btn-wrap__ptNb8"></div>,<section class="Product_sklv-product-page__delivery__me_8X"></section>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > section:eq(0) > div > div:eq(2),body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > section:eq(2)
    0.00076<div></div>,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20" class="icon PersAuth_offers-guest__icon__F5upT"></svg>,<button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT Button_button__primary__8IzQd AddToCartBtn_btn-basket__bZBtD Product_btn-basket__FCmI6" type="button"></button>,<section class="Product_sklv-product-page__sizes__zqpAq"></section>,<section class="Product_sklv-product-page__delivery__me_8X"></section>
    body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > div > section > div > div > div:eq(1) > div > div,body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > div > section > div > div > div:eq(1) > svg,body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > div > section > div > button,body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > section:eq(0),body > div#__next > div#catalog > div > main > div > div > div > div:eq(1) > div:eq(1) > div:eq(1) > section:eq(2)
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Long Animation Frames

    Read more about the Long Animation Frames API here here.

    The top 10 longest animation frames entries

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    122 ms176 ms2 ms1.8 ms0.2 ms
    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js

    Forced Style And Layout Duration: 10 ms

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    104 ms155.7 ms0.3 ms0 ms0.3 ms
    https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js

    Invoker:  https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js
    Invoker Type: classic-script
    Window attribution: self

    https://static-catalog.diamant.ru/_next/static/chunks/pages/product/client/%5Barticle%5D-56edb85a250660bf.js

    Invoker:  https://static-catalog.diamant.ru/_next/static/chunks/pages/product/client/%5Barticle%5D-56edb85a250660bf.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    87 ms146.6 ms7.4 ms3.6 ms3.8 ms
    https://static-catalog.diamant.ru/_next/static/chunks/5123.a7ad076cb54663ae.js

    Invoker:  https://static-catalog.diamant.ru/_next/static/chunks/5123.a7ad076cb54663ae.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    37 ms139.7 ms9.3 ms4.2 ms5.1 ms
    https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js

    Invoker:  https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js
    Invoker Type: classic-script
    Window attribution: self

    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js

    Forced Style And Layout Duration: 18 ms

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    34 ms82.2 ms25.8 ms21.4 ms4.4 ms
    https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js

    Forced Style And Layout Duration: 2 ms

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    https://cdn.diginetica.net/5183/client.js

    Invoker:  https://cdn.diginetica.net/5183/client.js
    Invoker Type: classic-script
    Window attribution: self

    https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js

    Invoker:  FrameRequestCallback
    Invoker Type: user-callback
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms156.4 ms24.6 ms0.1 ms24.5 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms56.1 ms5.9 ms5.2 ms0.7 ms
    https://static-catalog.diamant.ru/_next/static/chunks/3333.1fd2fe3e19d424df.js

    Forced Style And Layout Duration: 6 ms

    Invoker:  https://static-catalog.diamant.ru/_next/static/chunks/3333.1fd2fe3e19d424df.js
    Invoker Type: classic-script
    Window attribution: self

    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms52.9 ms4.1 ms3.2 ms0.9 ms
    https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js

    Forced Style And Layout Duration: 6 ms

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms94.6 ms2.4 ms1.2 ms1.2 ms
    https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: -1

    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js

    Forced Style And Layout Duration: 1 ms

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    https://static-catalog.diamant.ru/_next/static/chunks/4643-fe528e618c90a44c.js

    Forced Style And Layout Duration: 1 ms

    Invoker:  DIV.onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    https://static-catalog.diamant.ru/_next/static/chunks/4643-fe528e618c90a44c.js

    Forced Style And Layout Duration: 2 ms

    Invoker:  DIV.onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms68.2 ms2.8 ms1.7 ms1.1 ms
    No availible script information.

    Server timings

    There are no Server Timings.

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents3
    Frames3
    JSEventListeners628
    LayoutObjects786
    MediaKeySessions0
    MediaKeys0
    Nodes1360
    Resources83
    ContextLifecycleStateObservers74
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers3
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents67
    LayoutCount51
    RecalcStyleCount88
    LayoutDuration43
    RecalcStyleDuration112
    DevToolsCommandDuration32
    ScriptDuration819
    V8CompileDuration2
    TaskDuration1572
    TaskOtherDuration565
    ThreadTime2
    ProcessTime5
    JSHeapUsedSize12991288
    JSHeapTotalSize33579008
    FirstMeaningfulPaint1230
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests119
    Total domains10
    Total transfer size3.9 MB
    Total content size10.9 MB
    Responses missing compression42
    Number of cookies24
    Third party cookies0
    Requests per response code
    200111
    2011
    2065
    4042

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b11.4 KB41.4 KB1
    css0 b113.4 KB679.8 KB10
    javascript555 B788.3 KB2.6 MB48
    image343 B119.6 KB117.1 KB10
    font0 b208.2 KB206.8 KB4
    json0 b33.9 KB73.1 KB29
    other0 b0 b0 b2
    favicon0 b1.4 KB9.4 KB1
    plain0 b0 b0 b4
    svg0 b2.0 KB1.1 KB3
    video0 b2.7 MB7.2 MB5
    Total898 B3.9 MB10.9 MB117

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    diamant.ru2.010 s34.1 KB64.0 KB25
    cdn.sokolov.ru573 ms223.4 KB221.7 KB5
    static-catalog.diamant.ru3.888 s794.1 KB2.8 MB61
    seo.sokolov.ru138 ms2.1 KB1.7 KB4
    catalog.sokolov.ru314 ms9.6 KB48.6 KB8
    pmdn.sokolov.io483 ms104.3 KB102.1 KB8
    2pmdn.sokolov.io1.442 s2.7 MB7.2 MB5
    cdn.diginetica.net88 ms111.4 KB485.5 KB1
    autocomplete.diginetica.net65 ms363 B2 B1
    tracking.diginetica.net73 ms37 B37 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 year1 year
    Last modified22 hours3 weeks1 year

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css8.4 KB5
    javascript233.3 KB29
    image119.6 KB10
    font0 b0
    json33.9 KB29
    other0 b2
    favicon1.4 KB1
    plain0 b4
    svg2.0 KB3
    video2.7 MB5
    Total3.1 MB90

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css8.4 KB5
    javascript233.3 KB29
    image119.6 KB10
    font0 b0
    json33.9 KB29
    other0 b2
    favicon1.4 KB1
    plain0 b4
    svg2.0 KB3
    video2.7 MB5
    Total3.1 MB90

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    000

    Render information

    URLType
    https://static-catal...aad0f4ef292f9a.jsnon_blocking
    https://cdn.digineti...et/5183/client.jsnon_blocking
    https://static-catal...9b520758d6bf91.jsnon_blocking
    https://static-catal...a8921dab738876.jsnon_blocking
    https://cdn.sokolov....rat/regular.woff2non_blocking
    https://cdn.sokolov....serrat/bold.woff2non_blocking
    https://cdn.sokolov....at/semibold.woff2non_blocking
    https://cdn.sokolov....rrat/medium.woff2non_blocking
    https://static-catal...538aab560fdd2.cssnon_blocking
    https://static-catal...528e618c90a44c.jsnon_blocking
    https://static-catal...8113f455f593f.cssnon_blocking
    https://static-catal...33f27b2dfdcc1f.jsnon_blocking
    https://static-catal...26009e658608fe.jsnon_blocking
    https://static-catal...91df52d3ca4a3b.jsnon_blocking
    https://static-catal...607b05a6263238.jsnon_blocking
    https://static-catal...ad076cb54663ae.jsnon_blocking
    https://static-catal...78878bd67976d3.jsnon_blocking
    https://static-catal...9593fbaf6e6c7f.jsnon_blocking
    https://static-catal...e8ec0aad0d4042.jsnon_blocking
    https://static-catal...d2fe3e19d424df.jsnon_blocking
    https://static-catal...609ce0b7f20b73.jsnon_blocking
    https://static-catal...1e17b595b138db.jsnon_blocking
    https://static-catal...681e00b59e0bd5.jsnon_blocking
    https://static-catal...b3cbc8f7c46c4.cssnon_blocking
    https://static-catal...73becefb9a38a8.jsnon_blocking
    https://static-catal...cdcc44c06b3a97.jsnon_blocking
    https://static-catal...1eca43c8d2b32.cssnon_blocking
    https://static-catal...7d580206864104.jsnon_blocking
    https://static-catal...7e73a429627c4a.jsnon_blocking
    https://static-catal...7efefabe50f85.cssnon_blocking
    https://static-catal...e009bf1bbe802.cssdynamically_injected_non_blocking
    https://static-catal...1cf4318b10989f.jsnon_blocking
    https://static-catal...fdab27d2fbfd93.jsnon_blocking
    https://static-catal...f7556ef5a1e9ce.jsnon_blocking
    https://static-catal..._buildManifest.jsnon_blocking
    https://static-catal...cf24f034ca1213.jsnon_blocking
    https://static-catal...673ffea797ece4.jsnon_blocking
    https://static-catal...91b6d3c085f192.jsnon_blocking
    https://static-catal...df4e3cdb69e019.jsnon_blocking
    https://static-catal...1e104d0f1004dc.jsnon_blocking
    https://static-catal...1bc8144664229a.jsnon_blocking
    https://static-catal...b049e98e1b1917.jsnon_blocking
    https://static-catal...640d30117f472.cssdynamically_injected_non_blocking
    https://static-catal...538a4e5a3c925.cssdynamically_injected_non_blocking
    https://static-catal...76273e47a46804.jsnon_blocking
    https://static-catal...6c34e864d9a98d.jsnon_blocking
    https://static-catal...6de3534181a6c.cssdynamically_injected_non_blocking
    https://static-catal...e29e89da96c5a8.jsnon_blocking
    https://static-catal...6d1bb827a34b73.jsnon_blocking
    https://static-catal...0f846bb737a113.jsnon_blocking
    https://static-catal...b68982a7d87933.jsnon_blocking
    https://static-catal...0baf6b0adfaf4f.jsnon_blocking
    https://static-catal...edb85a250660bf.jsnon_blocking
    https://static-catal...0417b504718185.jsnon_blocking
    https://static-catal...f24d83fcc15d64.jsnon_blocking
    https://static-catal...1bac4a22023b4a.jsnon_blocking
    https://static-catal...f858da31fff1c0.jsnon_blocking
    https://static-catal...0d995915de6689.jsnon_blocking
    https://static-catal...4c7cded611501e.jsnon_blocking
    https://static-catal...b7ee64752ffdb.cssdynamically_injected_non_blocking
    https://static-catal...ac726038f76803.jsnon_blocking
    https://static-catal..._/_ssgManifest.jsnon_blocking
    CPU Long Tasks | CPU Time Spent | CPU Time Spent Per Request | CPU Time Per Tool/Domain | 

    CPU

    Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.

    Long Tasks

    Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.

    TypeQuantityTotal duration (ms)
    Total Blocking Time 232
    Max Potential First Input Delay 169
    Long Tasks before First Paint1154
    Long Tasks before First Contentful Paint1154
    Long Tasks before Largest Contentful Paint5579
    Long Tasks after Load Event End5482
    Total Long Tasks6636

    CPU last long task happened at 1.747 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self423154window
    self586169window
    self1062129window
    self120452window
    self126575window
    self174757window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML17
    styleLayout159
    paintCompositeRender31
    scriptParseCompile2
    scriptEvaluation1068
    garbageCollection33
    other268
    Events (ms)
    FunctionCall673
    RunMicrotasks245
    RunTask220
    UpdateLayoutTree117
    v8.run86
    Layout43
    Paint21
    V8.BytecodeBudgetInterrupt14
    V8.GC_SCAVENGER_SCAVENGE_PARALLEL12
    v8.callFunction12
    Layerize10
    V8.HandleInterrupts10
    PrePaint10

    Time spent per request

    URLCPU time (ms)
    https://static-catalog.diamant.ru/_next/static/chunks/framework-12a8921dab738876.js736
    https://static-catalog.diamant.ru/_next/static/chunks/6434.a726009e658608fe.js122
    https://static-catalog.diamant.ru/_next/static/chunks/pages/product/client/%5Barticle%5D-56edb85a250660bf.js84
    https://static-catalog.diamant.ru/_next/static/chunks/pages/_app-63aad0f4ef292f9a.js67
    https://cdn.diginetica.net/5183/client.js61
    https://static-catalog.diamant.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js30
    https://static-catalog.diamant.ru/_next/static/chunks/3333.1fd2fe3e19d424df.js22
    https://static-catalog.diamant.ru/_next/static/chunks/4643-fe528e618c90a44c.js21
    https://static-catalog.diamant.ru/_next/static/chunks/5123.a7ad076cb54663ae.js14

    CPU time spent

    Tool/domainTime (ms)
    static-catalog.diamant.ru1095.4
    cdn.diginetica.net61.4
    | Categories | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    CategoryNumber of tools

    Unmatched third party domains

    Here's a list of domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty.

    cdn.sokolov.ru
    seo.sokolov.ru
    catalog.sokolov.ru
    pmdn.sokolov.io
    2pmdn.sokolov.io
    cdn.diginetica.net
    autocomplete.diginetica.net
    tracking.diginetica.net

    First party requests and sizes per content type

    Calculated using .*diamant.* (use --firstParty to configure).

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b11.4 KB41.4 KB1
    css0 b113.4 KB679.8 KB10
    javascript0 b676.9 KB2.1 MB47
    image0 b0 b0 b0
    font0 b0 b0 b0
    json0 b21.9 KB22.8 KB22
    favicon0 b1.4 KB9.4 KB1
    svg0 b2.0 KB1.1 KB3
    TotalN/A828.2 KB2.9 MB86

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b0 b0 b0
    javascript555 B111.4 KB485.5 KB1
    image343 B119.6 KB117.1 KB10
    font0 b208.2 KB206.8 KB4
    other0 b0 b0 b2
    json0 b12.1 KB50.3 KB7
    plain0 b0 b0 b4
    video0 b2.7 MB7.2 MB5
    Total867 B3.1 MB8.1 MB33
    afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

    Screenshots

    afterPageCompleteCheck.png

    afterPageCompleteCheck.png

    layoutShift.png

    layoutShift.png

    largestContentfulPaint.png

    largestContentfulPaint.png

    Axe

    Axe is an accessibility testing engine for websites and other HTML-based user interfaces. Tested using axe-core version 4.10.2. Read more about axe-core .

    Violations

    critical
    Buttons must have discernible text (cat.name-role-value,wcag2a,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.4.1.2,ACT) - button-nameEnsure buttons have discernible text
    Fix any of the following: Element does not have inner text that is visible to screen readers aria-label attribute does not exist or is empty aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty Element has no title attribute Element does not have an implicit (wrapped) <label> Element does not have an explicit <label> Element's default semantics were not overridden with role="none" or role="presentation"
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu NavigationButton_navigation-button__hQ0nc NavigationButton_navigation-button_no-text__qPhxD" type="button">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu NavigationButton_navigation-button__hQ0nc NavigationButton_navigation-button_no-text__qPhxD" type="button">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu NavigationButton_navigation-button__hQ0nc NavigationButton_navigation-button_no-text__qPhxD" type="button">
    • <button type="button" class="ButtonDeprecated_sklv-button__Wy8xr ButtonDeprecated_sklv-button_icon___v8v7 IconButton_icon-button__kK7yS UserMenu_user_menu-header-close_button__1SB79" types="icon" icon="close" loading="">
    • <button type="button" class="ButtonDeprecated_sklv-button__Wy8xr ButtonDeprecated_sklv-button_icon___v8v7 Breadcrumbs_breadcrumbs__more-btn__uIXMe" data-tooltip-id="breadcrumbs">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn IconButton_icon-button__rbJuu SliderButtons_slider-buttons__btn__VsDug" type="button" data-qa="share">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu SliderButtons_slider-buttons__btn__VsDug" type="button" data-qa="main_add_to_favorite">
    • <button type="button" class="desktop_pagination-btn__5hfD5 desktop_pagination-btn_prev__w05Rf navigation_btn__s0d7U swiper-button-disabled" disabled="">
    • <button type="button" class="desktop_pagination-btn__5hfD5 desktop_pagination-btn_next__k_l87 navigation_btn__s0d7U">
    • <button type="button" icon="chevron-right" class="ButtonDeprecated_sklv-button__Wy8xr ButtonDeprecated_sklv-button_transparent__0PsDH ButtonDeprecated_sklv-button_min-content__0EEYi ButtonDeprecated_sklv-button_icon___v8v7 IconButton_icon-button__kK7yS ProductPriceNew_sklv-price-base__button__EZqjY" types="transparent,min-content,icon" loading="">
    • <button class="">
    • <button class="liker__button liker__button-dislike">
    serious
    Elements must meet minimum color contrast ratio thresholds (cat.color,wcag2aa,wcag143,TTv5,TT13.c,EN-301-549,EN-9.1.4.3,ACT) - color-contrastEnsure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds
    Fix any of the following: Element has insufficient color contrast of 3.94 (foreground color: #808080, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1
    • <span itemprop="name">Кольца из красного золота 585 пробы</span>
    • <button class="sklv-btn-link Desktop_summary-btn-link__2tDah"><span itemprop="reviewCount">1</span> отзыв</button>
    • <div class="Chips_sklv-product-page-tags__bonus__EGE7f">
    • <span>Материал</span>
    • <span>Примерный вес</span>
    • <span>Вставка</span>
    • <p class="Characteristics_sklv-product-page-characteristics-warning__xENIN">Реальные характеристики изделия могут иметь незначительные отличия от представленных на сайте.</p>
    • <button class="Characteristics_sklv-product-page-characteristics-btn__GN1Ky">Все характеристики</button>
    • <span>1 изделие в комплекте</span>
    • <span class="PersAuth_offers-guest__text_blue__J3rHt">Войдите</span>
    • <span data-qa="property_name">Артикул</span>
    • <span data-qa="property_name">Бренд</span>
    • <span data-qa="property_name">Для кого</span>
    • <span data-qa="property_name">Примерный вес</span>
    • <span data-qa="property_name">Тип металла</span>
    • <span data-qa="property_name">Проба</span>
    • <span data-qa="property_name">Тип вставки</span>
    • <span data-qa="property_name">Форма вставки</span>
    • <span data-qa="property_name">Количество</span>
    • <span data-qa="property_name">Цвет</span>
    • <span data-qa="property_name">Вес</span>
    • <span data-qa="property_name">Размеры вставки</span>
    • <span data-qa="property_name">Ширина кольца</span>
    • <span data-qa="property_name">Ширина</span>
    • <span data-qa="property_name">Высота</span>
    • <span data-qa="property_name">Длина</span>
    • <span class="HeaderDescMedia_add-new__text__uFOu_">Добавьте видеоотзыв</span>
    • <span class="HeaderDescInfo_count__Tm6He">1 отзыв</span>
    • <span class="Review_review__date__kvAwQ" itemprop="datePublished">8 апреля 2024</span>
    • <span class="DiamantFooter_diamant_footer_title__gMCJ5">Покупателям</span>
    • <span class="DiamantFooter_diamant_footer_title__gMCJ5">О компании</span>
    • <span class="DiamantFooter_diamant_footer_title__gMCJ5">Правовая информация</span>
    moderate
    Heading levels should only increase by one (cat.semantics,best-practice) - heading-orderEnsure the order of headings is semantically correct
    Fix any of the following: Heading order invalid
    • <h5 class="Typography_h5__AKsOV Comments_reviews-title__S3xoX">Отзывы 1</h5>
    serious
    Links must have discernible text (cat.name-role-value,wcag2a,wcag244,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.2.4.4,EN-9.4.1.2,ACT) - link-nameEnsure links have discernible text
    Fix all of the following: Element is in tab order and does not have accessible text Fix any of the following: Element does not have text that is visible to screen readers aria-label attribute does not exist or is empty aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty Element has no title attribute
    • <a class="TopLine_sklv-topline__link__BIztV" href="/"></a>
    • <a itemprop="url" content="https://diamant.ru" href="/">
    • <a class="ButtonBase_button__PDJz2 ButtonBase_link__TyRSd" target="_self" href="https://diamant.ru/favorites/">
    • <a class="ButtonBase_button__PDJz2 ButtonBase_link__TyRSd" target="_self" href="https://diamant.ru/basket/">
    • <a class="BannerPromo_wrapper__MT4Lm" href="/personal/main/"><img alt="" loading="lazy" width="313" height="64" decoding="async" data-nimg="1" class="BannerPromo_image__SL6W0" src="https://cdn.sokolov.ru/upload/content/area/0472b2d024062b19371932fc4cb83583.jpg" style="color: transparent;"></a>
    • <a href="/diamant-jewelry-catalog/product/31-310-01741-2/">
    • <a href="/diamant-jewelry-catalog/product/51-310-01741-1/">
    • <a href="/diamant-jewelry-catalog/product/51-310-01741-2/">
    • <a href="/diamant-jewelry-catalog/product/51-320-01741-2/">
    • <a href="https://ok.ru/group/57622034841843" class="DiamantFooter_diamant_footer_icons_item__CbQXL" target="_blank" rel="nofollow">
    • <a href="https://vk.com/diamantrussia" class="DiamantFooter_diamant_footer_icons_item__CbQXL" target="_blank" rel="nofollow">
    <ul> and <ol> must only directly contain <li>, <script> or <template> elements (cat.structure,wcag2a,wcag131,EN-301-549,EN-9.1.3.1) - listEnsure that lists are structured correctly
    Fix all of the following: List element has direct children that are not allowed: a
    • <ul class="UserMenu_user_menu-links_list__XdG8h">
    • <ul class="diamant_header-bottom-links__KAfQx">
    critical
    Zooming and scaling must not be disabled (cat.sensory-and-visual-cues,wcag2aa,wcag144,EN-301-549,EN-9.1.4.4,ACT) - meta-viewportEnsure <meta name="viewport"> does not disable text scaling and zooming
    Fix any of the following: user-scalable=no on <meta> tag disables zooming on mobile devices
    • <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimal-ui, user-scalable=no">
    • <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimal-ui, user-scalable=no">