ttfb.tsx 721 B

12345678910111213141516171819
  1. import {t} from 'sentry/locale';
  2. export function TtfbDescription() {
  3. return (
  4. <div>
  5. <h3>{t('Time To First Byte (TTFB)')}</h3>
  6. <p>
  7. {t(
  8. `Time to First Byte (TTFB) is a foundational metric for measuring connection setup time and web server responsiveness in both the lab and the field. It helps identify when a web server is too slow to respond to requests. In the case of navigation requests—that is, requests for an HTML document—it precedes every other meaningful loading performance metric.`
  9. )}
  10. </p>
  11. <p>
  12. <a href="https://web.dev/ttfb/" target="_blank" rel="noreferrer">
  13. {t('Learn more about TTFB')}
  14. </a>
  15. </p>
  16. </div>
  17. );
  18. }