Add query time tracking to IO Events.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
- args:
|
||||
cascade: false
|
||||
read_only: false
|
||||
sql: DROP TABLE "public"."ioevents";
|
||||
type: run_sql
|
||||
@@ -0,0 +1,11 @@
|
||||
- args:
|
||||
cascade: false
|
||||
read_only: false
|
||||
sql: CREATE TABLE "public"."ioevents"("id" bigserial NOT NULL, "created_at" timestamptz
|
||||
NOT NULL DEFAULT now(), "operationname" text NOT NULL, "time" numeric, PRIMARY
|
||||
KEY ("id") );
|
||||
type: run_sql
|
||||
- args:
|
||||
name: ioevents
|
||||
schema: public
|
||||
type: add_existing_table_or_view
|
||||
Reference in New Issue
Block a user