From ce84ac517eb8ecd435a8430dd4f4d6008c417ddd Mon Sep 17 00:00:00 2001 From: Oscar Kilhed Date: Wed, 24 Sep 2025 12:50:02 +0200 Subject: [PATCH] Dashboards: Increase limit of annotation tags (#111538) increase limit of annotation tags --- public/app/features/annotations/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/annotations/api.ts b/public/app/features/annotations/api.ts index 4975f3e1d49..c4d5622ce55 100644 --- a/public/app/features/annotations/api.ts +++ b/public/app/features/annotations/api.ts @@ -39,7 +39,7 @@ class LegacyAnnotationServer implements AnnotationServer { } async tags() { - const response = await getBackendSrv().get('/api/annotations/tags'); + const response = await getBackendSrv().get('/api/annotations/tags?limit=1000'); return response.result.tags.map(({ tag, count }) => ({ term: tag, count,