123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- import omit from 'lodash/omit';
- import {Client, ResponseMeta} from 'sentry/api';
- import {t} from 'sentry/locale';
- import {MetricsApiResponse, Organization, PageFilters, TagCollection} from 'sentry/types';
- import {Series} from 'sentry/types/echarts';
- import {CustomMeasurementCollection} from 'sentry/utils/customMeasurements/customMeasurements';
- import {TableData} from 'sentry/utils/discover/discoverQuery';
- import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
- import {getMetricsApiRequestQuery, getSeriesName, groupByOp} from 'sentry/utils/metrics';
- import {
- formatMRI,
- formatMRIField,
- getMRI,
- getUseCaseFromMRI,
- } from 'sentry/utils/metrics/mri';
- import {OnDemandControlContext} from 'sentry/utils/performance/contexts/onDemandControl';
- import {MetricSearchBar} from 'sentry/views/dashboards/widgetBuilder/buildSteps/filterResultsStep/metricSearchBar';
- import {FieldValueOption} from 'sentry/views/discover/table/queryField';
- import {FieldValueKind} from 'sentry/views/discover/table/types';
- import {DisplayType, Widget, WidgetQuery} from '../types';
- import {DatasetConfig, handleOrderByReset} from './base';
- const DEFAULT_WIDGET_QUERY: WidgetQuery = {
- name: '',
- fields: [''],
- columns: [''],
- fieldAliases: [],
- aggregates: [''],
- conditions: '',
- orderby: '',
- };
- export const MetricsConfig: DatasetConfig<MetricsApiResponse, MetricsApiResponse> = {
- defaultWidgetQuery: DEFAULT_WIDGET_QUERY,
- enableEquations: false,
- getTableRequest: (
- api: Client,
- _: Widget,
- query: WidgetQuery,
- organization: Organization,
- pageFilters: PageFilters,
- __?: OnDemandControlContext,
- limit?: number
- ) => getMetricRequest(api, query, organization, pageFilters, limit),
- getSeriesRequest: getMetricSeriesRequest,
- getCustomFieldRenderer: (field, meta) => getFieldRenderer(field, meta, false),
- SearchBar: MetricSearchBar,
- handleOrderByReset: handleMetricTableOrderByReset,
- supportedDisplayTypes: [
- DisplayType.AREA,
- DisplayType.BAR,
- DisplayType.BIG_NUMBER,
- DisplayType.LINE,
- DisplayType.TABLE,
- DisplayType.TOP_N,
- ],
- transformSeries: transformMetricsResponseToSeries,
- transformTable: transformMetricsResponseToTable,
- getTableFieldOptions: getFields,
- getTimeseriesSortOptions: getMetricTimeseriesSortOptions,
- getTableSortOptions: getMetricTableSortOptions,
- filterTableOptions: filterMetricOperations,
- filterYAxisOptions: () => option => filterMetricOperations(option),
- filterAggregateParams: filterMetricMRIs,
- filterYAxisAggregateParams: () => option => filterMetricMRIs(option),
- getGroupByFieldOptions: getTagsForMetric,
- getFieldHeaderMap: getFormattedMRIHeaders,
- };
- function getFormattedMRIHeaders(query?: WidgetQuery) {
- if (!query) {
- return {};
- }
- return (query.fields || []).reduce((acc, field, index) => {
- const fieldAlias = query.fieldAliases?.[index];
- acc[field] = fieldAlias || formatMRIField(field);
- return acc;
- }, {});
- }
- function getMetricTimeseriesSortOptions(_, widgetQuery) {
- if (!widgetQuery.columns) {
- return [];
- }
- return widgetQuery.columns.reduce((acc, column) => {
- return {
- ...acc,
- [column]: {
- label: column,
- value: {
- kind: FieldValueKind.TAG,
- meta: {
- name: column,
- dataType: 'string',
- },
- },
- },
- };
- }, {});
- }
- function getMetricTableSortOptions(_, widgetQuery) {
- if (!widgetQuery.fields[0]) {
- return [];
- }
- return widgetQuery.fields.map((field, i) => {
- const mri = getMRI(field);
- const alias = widgetQuery.fieldAliases?.[i];
- return {
- label: alias ?? formatMRI(mri),
- value: mri,
- };
- });
- }
- function getFields(
- organization: Organization,
- _?: TagCollection | undefined,
- __?: CustomMeasurementCollection,
- api?: Client
- ) {
- if (!api) {
- return {};
- }
- return api
- .requestPromise(`/organizations/${organization.slug}/metrics/meta/`, {
- query: {useCase: 'custom'},
- })
- .then(metaReponse => {
- const groupedByOp = groupByOp(metaReponse);
- const fieldOptions: Record<string, any> = {};
- Object.entries(groupedByOp).forEach(([operation, fields]) => {
- fieldOptions[`function:${operation}`] = {
- label: `${operation}(${'\u2026'})`,
- value: {
- kind: FieldValueKind.FUNCTION,
- meta: {
- name: operation,
- parameters: [
- {
- kind: 'column',
- columnTypes: [fields[0].type],
- defaultValue: fields[0].mri,
- required: true,
- },
- ],
- },
- },
- };
- });
- metaReponse
- .sort((a, b) => a.name.localeCompare(b.name))
- .forEach(field => {
- fieldOptions[`field:${field.mri}`] = {
- label: field.name,
- value: {
- kind: FieldValueKind.METRICS,
- meta: {
- name: field.mri,
- dataType: field.type,
- },
- },
- };
- });
- return fieldOptions;
- });
- }
- function filterMetricOperations(option: FieldValueOption) {
- return option.value.kind === FieldValueKind.FUNCTION;
- }
- function filterMetricMRIs(option: FieldValueOption) {
- return option.value.kind === FieldValueKind.METRICS;
- }
- function getTagsForMetric(
- organization: Organization,
- _?: TagCollection,
- __?: CustomMeasurementCollection,
- api?: Client,
- queries?: WidgetQuery[]
- ) {
- const fieldOptions = {};
- if (!api) {
- return fieldOptions;
- }
- const field = queries?.[0].aggregates[0] ?? '';
- const mri = getMRI(field);
- const useCase = getUseCaseFromMRI(mri);
- return api
- .requestPromise(`/organizations/${organization.slug}/metrics/tags/`, {
- query: {metric: mri, useCase},
- })
- .then(tagsResponse => {
- tagsResponse.forEach(tag => {
- fieldOptions[`field:${tag.key}`] = {
- label: tag.key,
- value: {
- kind: FieldValueKind.TAG,
- meta: {name: tag.key, dataType: 'string'},
- },
- };
- });
- return fieldOptions;
- });
- }
- function getMetricSeriesRequest(
- api: Client,
- widget: Widget,
- queryIndex: number,
- organization: Organization,
- pageFilters: PageFilters
- ) {
- const query = widget.queries[queryIndex];
- return getMetricRequest(api, query, organization, pageFilters, widget.limit);
- }
- function handleMetricTableOrderByReset(widgetQuery: WidgetQuery, newFields: string[]) {
- const disableSortBy = widgetQuery.columns.includes('session.status');
- if (disableSortBy) {
- widgetQuery.orderby = '';
- }
- return handleOrderByReset(widgetQuery, newFields);
- }
- export function transformMetricsResponseToTable(data: MetricsApiResponse): TableData {
- const rows = data.groups.map((group, index) => {
- const groupColumn = mapMetricGroupsToFields(group.by);
- const value = mapMetricGroupsToFields(group.totals);
- return {
- id: String(index),
- ...groupColumn,
- ...value,
- };
- });
- const singleRow = rows[0];
- const meta = {
- ...changeObjectValuesToTypes(omit(singleRow, 'id')),
- };
- return {meta, data: rows};
- }
- function mapMetricGroupsToFields(
- results: Record<string, number | string | null> | undefined
- ) {
- if (!results) {
- return {};
- }
- const mappedResults: typeof results = {};
- for (const [key, value] of Object.entries(results)) {
- mappedResults[key] = value;
- }
- return mappedResults;
- }
- function changeObjectValuesToTypes(
- obj: Record<string, number | string | null> | undefined
- ) {
- return Object.entries(obj ?? {}).reduce((acc, [key, value]) => {
- acc[key] = typeof value;
- return acc;
- }, {});
- }
- export function transformMetricsResponseToSeries(
- data: MetricsApiResponse,
- widgetQuery: WidgetQuery
- ) {
- if (data === null) {
- return [];
- }
- const results: Series[] = [];
- const queryAlias = widgetQuery.name;
- if (!data.groups.length) {
- return [
- {
- seriesName: `(${t('no results')})`,
- data: data.intervals.map(interval => ({
- name: interval,
- value: 0,
- })),
- },
- ];
- }
- data.groups.forEach(group => {
- Object.keys(group.series).forEach(field => {
- results.push({
- seriesName:
- queryAlias ||
- getSeriesName(group, data.groups.length === 1, widgetQuery.columns),
- data: data.intervals.map((interval, index) => ({
- name: interval,
- value: group.series[field][index] ?? 0,
- })),
- });
- });
- });
- return results.sort((a, b) => {
- return a.data[0].value < b.data[0].value ? -1 : 1;
- });
- }
- function getMetricRequest(
- api: Client,
- query: WidgetQuery,
- organization: Organization,
- pageFilters: PageFilters,
- limit?: number
- ): Promise<[MetricsApiResponse, string | undefined, ResponseMeta | undefined]> {
- if (!query.aggregates[0]) {
- // No aggregate selected, return empty response
- return Promise.resolve([
- {
- intervals: [],
- groups: [],
- meta: [],
- },
- 'OK',
- {
- getResponseHeader: () => '',
- },
- ] as any);
- }
- const per_page = limit && Number(limit) >= 10 ? limit : 10;
- const requestData = getMetricsApiRequestQuery(
- {
- field: query.aggregates[0],
- query: query.conditions,
- groupBy: query.columns,
- },
- pageFilters,
- {
- per_page,
- useNewMetricsLayer: false,
- }
- );
- const pathname = `/organizations/${organization.slug}/metrics/data/`;
- return api.requestPromise(pathname, {
- includeAllArgs: true,
- query: requestData,
- });
- }
|