mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-18 07:25:57 +08:00
fix: limited the endpoints table limit to 1000
This commit is contained in:
parent
ac0b640146
commit
7dad5dcd17
@ -407,7 +407,7 @@ export const getEndPointsQueryPayload = (
|
|||||||
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
||||||
having: [],
|
having: [],
|
||||||
legend: '',
|
legend: '',
|
||||||
limit: null,
|
limit: 1000,
|
||||||
orderBy: [],
|
orderBy: [],
|
||||||
queryName: 'A',
|
queryName: 'A',
|
||||||
reduceTo: 'avg',
|
reduceTo: 'avg',
|
||||||
@ -463,7 +463,7 @@ export const getEndPointsQueryPayload = (
|
|||||||
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
||||||
having: [],
|
having: [],
|
||||||
legend: '',
|
legend: '',
|
||||||
limit: null,
|
limit: 1000,
|
||||||
orderBy: [],
|
orderBy: [],
|
||||||
queryName: 'B',
|
queryName: 'B',
|
||||||
reduceTo: 'avg',
|
reduceTo: 'avg',
|
||||||
@ -518,7 +518,7 @@ export const getEndPointsQueryPayload = (
|
|||||||
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
||||||
having: [],
|
having: [],
|
||||||
legend: '',
|
legend: '',
|
||||||
limit: null,
|
limit: 1000,
|
||||||
orderBy: [],
|
orderBy: [],
|
||||||
queryName: 'C',
|
queryName: 'C',
|
||||||
reduceTo: 'avg',
|
reduceTo: 'avg',
|
||||||
@ -587,7 +587,7 @@ export const getEndPointsQueryPayload = (
|
|||||||
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
groupBy: isGroupedByAttribute ? groupBy : defaultGroupBy,
|
||||||
having: [],
|
having: [],
|
||||||
legend: '',
|
legend: '',
|
||||||
limit: null,
|
limit: 1000,
|
||||||
orderBy: [],
|
orderBy: [],
|
||||||
queryName: 'D',
|
queryName: 'D',
|
||||||
reduceTo: 'avg',
|
reduceTo: 'avg',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user