123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- import {getInterval} from 'sentry/components/charts/utils';
- import {SeriesDataUnit} from 'sentry/types/echarts';
- import EventView, {MetaType} from 'sentry/utils/discover/eventView';
- import {
- DiscoverQueryProps,
- useGenericDiscoverQuery,
- } from 'sentry/utils/discover/genericDiscoverQuery';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import {calculatePerformanceScore} from 'sentry/views/performance/browser/webVitals/utils/calculatePerformanceScore';
- export const useProjectWebVitalsTimeseriesQuery = () => {
- const pageFilters = usePageFilters();
- const location = useLocation();
- const organization = useOrganization();
- const projectTimeSeriesEventView = EventView.fromNewQueryWithPageFilters(
- {
- yAxis: [
- 'p75(measurements.lcp)',
- 'p75(measurements.fcp)',
- 'p75(measurements.cls)',
- 'p75(measurements.ttfb)',
- 'p75(measurements.fid)',
- ],
- name: 'Web Vitals',
- query:
- 'transaction.op:pageload (transaction:/performance* or transaction:/discover* or transaction:/dashboards*)',
- version: 2,
- fields: [],
- interval: getInterval(pageFilters.selection.datetime, 'low'),
- },
- pageFilters.selection
- );
- const result = useGenericDiscoverQuery<
- {
- data: any[];
- meta: MetaType;
- },
- DiscoverQueryProps
- >({
- route: 'events-stats',
- eventView: projectTimeSeriesEventView,
- location,
- orgSlug: organization.slug,
- getRequestPayload: () => ({
- ...projectTimeSeriesEventView.getEventsAPIPayload(location),
- yAxis: projectTimeSeriesEventView.yAxis,
- topEvents: projectTimeSeriesEventView.topEvents,
- excludeOther: 0,
- partial: 1,
- orderby: undefined,
- interval: projectTimeSeriesEventView.interval,
- }),
- options: {
- enabled: pageFilters.isReady,
- refetchOnWindowFocus: false,
- },
- });
- const data: {
- cls: SeriesDataUnit[];
- fcp: SeriesDataUnit[];
- fid: SeriesDataUnit[];
- lcp: SeriesDataUnit[];
- total: SeriesDataUnit[];
- ttfb: SeriesDataUnit[];
- } = {
- lcp: [],
- fcp: [],
- cls: [],
- ttfb: [],
- fid: [],
- total: [],
- };
- result?.data?.['p75(measurements.lcp)'].data.forEach((interval, index) => {
- const {totalScore, lcpScore, fcpScore, fidScore, clsScore, ttfbScore} =
- calculatePerformanceScore({
- lcp: result?.data?.['p75(measurements.lcp)'].data[index][1][0].count,
- fcp: result?.data?.['p75(measurements.fcp)'].data[index][1][0].count,
- cls: result?.data?.['p75(measurements.cls)'].data[index][1][0].count,
- ttfb: result?.data?.['p75(measurements.ttfb)'].data[index][1][0].count,
- fid: result?.data?.['p75(measurements.fid)'].data[index][1][0].count,
- });
- data.total.push({
- value: totalScore,
- name: interval[0] * 1000,
- });
- data.cls.push({
- value: clsScore,
- name: interval[0] * 1000,
- });
- data.lcp.push({
- value: lcpScore,
- name: interval[0] * 1000,
- });
- data.fcp.push({
- value: fcpScore,
- name: interval[0] * 1000,
- });
- data.ttfb.push({
- value: ttfbScore,
- name: interval[0] * 1000,
- });
- data.fid.push({
- value: fidScore,
- name: interval[0] * 1000,
- });
- });
- return {data, isLoading: result.isLoading};
- };
|