Skip to content

Commit c184d51

Browse files
author
Dementii Priadko
committed
Merge branch 'fix-metric-errors' into 'main'
Added limits to query text export, optimized storage, added vacuum metric to... See merge request postgres-ai/postgres_ai!41
2 parents cfbb6a4 + 5795429 commit c184d51

File tree

6 files changed

+1738
-5
lines changed

6 files changed

+1738
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Failure to secure these ports may expose sensitive database information!
3939
Create a new DB user in database to be monitored (skip this if you want just to check out `postgres_ai` monitoring with a synthetic `demo` database):
4040
```sql
4141
-- Create a user for Postgres AI monitoring
42+
begin
4243
create user postgres_ai_mon with password '<password>';
4344

4445
grant connect on database <database_name> to postgres_ai_mon;
@@ -65,6 +66,7 @@ where a.attnum > 0 and not a.attisdropped;
6566

6667
grant select on public.pg_statistic to pg_monitor;
6768
alter user postgres_ai_mon set search_path = "$user", public, pg_catalog;
69+
commit
6870
```
6971

7072
**One command setup:**

0 commit comments

Comments
 (0)