mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
* feat: added traceoperator component and styles * chore: minor style improvments * feat: added conditions for traceoperator * chore: minor UI fixes * chore: type changes * chore: added initialvalue for trace operators * chore: Added changes to prepare request payload * chore: fixed minor styles + minor ux fix * feat: added span selector * chore: added ui changes in the editor * chore: removed traceoperations and reused queryoperations * chore: minor changes in queryaddon and aggregation for support * chore: added traceoperators in alerts * chore: minor pr review change * chore: linter fix * fix: fixed minor ts issues * fix: added limit support in traceoperator * chore: minor fix in traceoperator styles * chore: linting fix + icon changes * chore: updated type * chore: lint fixes * feat: added changes for showing querynames in alerts * feat: added trace operator grammer + antlr files * feat: added traceoperator context util * chore: added traceoperator validation function * feat: added traceoperator editor * feat: added queryname boost + operator constants * fix: pr reviews * chore: minor ui fix * fix: updated grammer files * test: added test for traceoperatorcontext * chore: removed check for multiple queries in traceexplorer * test: minor test fix * test: fixed breaking mapQueryDataFromApi test * chore: fixed logic to show trace operator * chore: updated docs link * chore: minor ui issue fix * chore: changed trace operator query name * chore: removed using spans from in trace opeartors * fix: added fix for order by in trace opeartor * feat: added changes related to saved in views in trace opeartor * chore: added changes to keep indirect descendent operator at bottom * chore: removed returnspansfrom field from traceoperator * chore: updated file names + regenerated grammer * chore: added beta tag in trace opeartor * chore: pr review fixes * Fix/tsc trace operator + tests (#8942) * fix: added tsc fixes for trace operator * chore: moved traceoperator utils * test: added test for traceopertor util * chore: tsc fix * fix: fixed tsc issue * Feat/trace operator dashboards (#8992) * chore: added callout message for multiple queries without trace operators * feat: added changes for supporting trace operators in dashboards * chore: minor changes for list panel
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import {
|
|
initialFormulaBuilderFormValues,
|
|
initialQueryBuilderFormValuesMap,
|
|
} from 'constants/queryBuilder';
|
|
import { FORMULA_REGEXP, TRACE_OPERATOR_REGEXP } from 'constants/regExp';
|
|
import {
|
|
BuilderQueryDataResourse,
|
|
IBuilderFormula,
|
|
IBuilderQuery,
|
|
IBuilderTraceOperator,
|
|
} from 'types/api/queryBuilder/queryBuilderData';
|
|
import { QueryBuilderData } from 'types/common/queryBuilder';
|
|
|
|
export const transformQueryBuilderDataModel = (
|
|
data: BuilderQueryDataResourse,
|
|
queryTypes?: Record<
|
|
string,
|
|
'builder_query' | 'builder_formula' | 'builder_trace_operator'
|
|
>,
|
|
): QueryBuilderData => {
|
|
const queryData: QueryBuilderData['queryData'] = [];
|
|
const queryFormulas: QueryBuilderData['queryFormulas'] = [];
|
|
const queryTraceOperator: QueryBuilderData['queryTraceOperator'] = [];
|
|
|
|
Object.entries(data).forEach(([key, value]) => {
|
|
const isFormula = queryTypes
|
|
? queryTypes[key] === 'builder_formula'
|
|
: FORMULA_REGEXP.test(value.queryName);
|
|
|
|
const isTraceOperator = queryTypes
|
|
? queryTypes[key] === 'builder_trace_operator'
|
|
: TRACE_OPERATOR_REGEXP.test(value.queryName);
|
|
|
|
if (isFormula) {
|
|
const formula = value as IBuilderFormula;
|
|
queryFormulas.push({ ...initialFormulaBuilderFormValues, ...formula });
|
|
} else if (isTraceOperator) {
|
|
const traceOperator = value as IBuilderTraceOperator;
|
|
queryTraceOperator.push({ ...traceOperator });
|
|
} else {
|
|
const queryFromData = value as IBuilderQuery;
|
|
queryData.push({
|
|
...initialQueryBuilderFormValuesMap.metrics,
|
|
...queryFromData,
|
|
});
|
|
}
|
|
});
|
|
|
|
return { queryData, queryFormulas, queryTraceOperator };
|
|
};
|