dashboard: add bots to overview

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-04-02 14:30:29 +02:00
parent 11ad077472
commit 16a1c08160
6 changed files with 159 additions and 13 deletions

View File

@@ -31,6 +31,7 @@ ORDER BY
(project_id, created_at, profile_id) SETTINGS index_granularity = 8192;
CREATE TABLE openpanel.events_bots (
`id` UUID DEFAULT generateUUIDv4(),
`project_id` String,
`name` String,
`type` String,
@@ -70,4 +71,9 @@ CREATE TABLE ba (
`b` String
) ENGINE MergeTree
ORDER BY
(a, b) SETTINGS index_granularity = 8192;
(a, b) SETTINGS index_granularity = 8192;
ALTER TABLE
test.events_bots
ADD
COLUMN id UUID DEFAULT generateUUIDv4() FIRST;