mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 05:46:28 +08:00
Storage/SQL: Support more filter by namespace/group/resource (#99249)
This commit is contained in:
16
pkg/storage/unified/sql/testdata/postgres--resource_stats-resource.sql
vendored
Executable file
16
pkg/storage/unified/sql/testdata/postgres--resource_stats-resource.sql
vendored
Executable file
@ -0,0 +1,16 @@
|
||||
SELECT
|
||||
"namespace",
|
||||
"group",
|
||||
"resource",
|
||||
COUNT(*),
|
||||
MAX("resource_version")
|
||||
FROM "resource"
|
||||
WHERE 1 = 1
|
||||
AND "namespace" = 'default'
|
||||
AND "group" = 'dashboard.grafana.app'
|
||||
AND "resource" = 'dashboards'
|
||||
GROUP BY
|
||||
"namespace",
|
||||
"group",
|
||||
"resource"
|
||||
;
|
Reference in New Issue
Block a user