mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 17:36:37 +00:00
* feat: add dynamic table based on query * fix: group by repeating * fix: change view when groupBy exist in the list * fix: table scroll * feat: add the pagination and update options menu * feat: trace explorer is updated --------- Co-authored-by: Yevhen Shevchenko <y.shevchenko@seedium.io> Co-authored-by: Nazarenko19 <danil.nazarenko2000@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { OptionsQuery } from './types';
|
|
|
|
export const URL_OPTIONS = 'options';
|
|
|
|
export const defaultOptionsQuery: OptionsQuery = {
|
|
selectColumns: [],
|
|
maxLines: 0,
|
|
format: 'default',
|
|
};
|