204 lines
23 KiB
Plaintext
204 lines
23 KiB
Plaintext
CREATE EXTENSION pg_stat_monitor;
|
|
create table foo (id int generated by default as identity,col1 varchar(100) not null,primary key(id));
|
|
SELECT pg_stat_monitor_reset();
|
|
pg_stat_monitor_reset
|
|
-----------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * from pg_stat_monitor_settings;
|
|
name | value | default_value | description | minimum | maximum | options | restart
|
|
------------------------------------------+--------+---------------+----------------------------------------------------------------------------------------------------------+---------+------------+----------------+---------
|
|
pg_stat_monitor.pgsm_max | 1 | 100 | Sets the maximum size of shared memory in (MB) used for statement's metadata tracked by pg_stat_monitor. | 1 | 1000 | | yes
|
|
pg_stat_monitor.pgsm_query_max_len | 10000 | 2048 | Sets the maximum length of query. | 1024 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_track_utility | yes | yes | Selects whether utility commands are tracked. | | | yes, no | no
|
|
pg_stat_monitor.pgsm_normalized_query | no | no | Selects whether save query in normalized format. | | | yes, no | no
|
|
pg_stat_monitor.pgsm_max_buckets | 10 | 10 | Sets the maximum number of buckets. | 1 | 10 | | yes
|
|
pg_stat_monitor.pgsm_bucket_time | 60 | 60 | Sets the time in seconds per bucket. | 1 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_histogram_min | 0 | 0 | Sets the time in millisecond. | 0 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_histogram_max | 100000 | 100000 | Sets the time in millisecond. | 10 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_histogram_buckets | 10 | 10 | Sets the maximum number of histogram buckets | 2 | 50 | | yes
|
|
pg_stat_monitor.pgsm_query_shared_buffer | 1 | 20 | Sets the maximum size of shared memory in (MB) used for query tracked by pg_stat_monitor. | 1 | 10000 | | yes
|
|
pg_stat_monitor.pgsm_overflow_target | 0 | 1 | Sets the overflow target for pg_stat_monitor | 0 | 1 | | yes
|
|
pg_stat_monitor.pgsm_enable_query_plan | yes | no | Enable/Disable query plan monitoring | | | yes, no | no
|
|
pg_stat_monitor.pgsm_track | all | top | Selects which statements are tracked by pg_stat_monitor. | | | none, top, all | no
|
|
pg_stat_monitor.pgsm_extract_comments | yes | no | Enable/Disable extracting comments from queries. | | | yes, no | no
|
|
pg_stat_monitor.pgsm_track_planning | yes | no | Selects whether planning statistics are tracked. | | | yes, no | no
|
|
(15 rows)
|
|
|
|
SELECT substr(query, 0, 50), length(query), bucket, queryid, calls, elevel, sqlcode, message from pg_stat_monitor;
|
|
substr | length | bucket | queryid | calls | elevel | sqlcode | message
|
|
---------------------------------------------------+--------+--------+------------------+-------+--------+---------+---------
|
|
SELECT key, txt_0, value_0 FROM TBL_3 | 37 | 7 | 20DBA6828489F5C | 1 | 0 | |
|
|
CREATE TABLE TBL_5(key text primary key, txt_0 te | 190 | 7 | D3A3EECC1A5320C1 | 2 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 69 | 7 | 8A3E62C8CDDD9733 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 53 | 7 | 98EE98C0A136221F | 1 | 0 | |
|
|
INSERT INTO TBL_2(key, txt_0, value_0, txt_1, val | 160 | 7 | F7A6032CE4BBA59A | 1 | 0 | |
|
|
CREATE TABLE TBL_3(key text primary key, txt_0 te | 140 | 7 | E591CDC9199A2848 | 2 | 0 | |
|
|
UPDATE TBL_2 SET value_0 = 233665123, value_1 = 2 | 79 | 7 | F0E843B51DE2EE36 | 1 | 0 | |
|
|
INSERT INTO TBL_5(key, txt_0, value_0, txt_1, val | 121 | 7 | 136E24529417D5E7 | 1 | 0 | |
|
|
UPDATE TBL_4 SET value_0 = 1036140795, value_1 = | 123 | 7 | C07B7ABFF0D106D7 | 1 | 0 | |
|
|
UPDATE TBL_4 SET value_0 = 1843993368, value_1 = | 80 | 7 | A5791D1CFBB6FAA7 | 1 | 0 | |
|
|
INSERT INTO TBL_4(key, txt_0, value_0) VALUES('00 | 80 | 7 | F080D3EC62067A1B | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 53 | 7 | EE91B6DA51D9AD6C | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 69 | 7 | F3B7BEF02629DA0D | 1 | 0 | |
|
|
UPDATE TBL_3 SET value_0 = 1129566413 | 37 | 7 | 42C137E8296B7B13 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 53 | 7 | DBFDB7981AEB07 | 1 | 0 | |
|
|
UPDATE TBL_2 SET value_0 = 861021530, value_1 = 2 | 57 | 7 | 5A3B72B3D714FF8A | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_4 | 37 | 7 | 21D40B37FE159591 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 53 | 7 | 64DCE08492228639 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 101 | 7 | 2E632329D6BF54D5 | 1 | 0 | |
|
|
INSERT INTO TBL_5(key, txt_0, value_0, txt_1, val | 243 | 7 | 531DD5B35CF7630A | 1 | 0 | |
|
|
INSERT INTO TBL_0(key, txt_0, value_0) VALUES('00 | 80 | 7 | 33BB7D634EA87EC0 | 1 | 0 | |
|
|
INSERT INTO TBL_5(key, txt_0, value_0, txt_1, val | 285 | 7 | 4BFCEC3D6B8B2389 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 85 | 7 | 5AF4EB1FDEE106F1 | 1 | 0 | |
|
|
SELECT * from pg_stat_monitor_settings | 38 | 7 | 1FC4A7E71F639F9D | 1 | 0 | |
|
|
CREATE TABLE TBL_0(key text primary key, txt_0 te | 65 | 7 | 2370BA7F69455FDE | 2 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 85 | 7 | 5E3AE9677A5CE42F | 1 | 0 | |
|
|
INSERT INTO TBL_1(key, txt_0, value_0) VALUES('00 | 81 | 7 | 425215546842CC9F | 1 | 0 | |
|
|
UPDATE TBL_1 SET value_0 = 1189641421 | 37 | 7 | 58307E26872267E6 | 1 | 0 | |
|
|
INSERT INTO TBL_2(key, txt_0, value_0) VALUES('00 | 80 | 7 | C5934EEBC3AFA46B | 1 | 0 | |
|
|
INSERT INTO TBL_4(key, txt_0, value_0, txt_1, val | 162 | 7 | C8F4FFB0C37A185B | 1 | 0 | |
|
|
INSERT INTO TBL_3(key, txt_0, value_0, txt_1, val | 164 | 7 | F2F54F14A9D869BD | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_0 | 37 | 7 | 4717FB60E3CC503B | 1 | 0 | |
|
|
UPDATE TBL_3 SET value_0 = 137806862, value_1 = 4 | 98 | 7 | 29BE7C136A1E13BF | 1 | 0 | |
|
|
INSERT INTO TBL_2(key, txt_0, value_0, txt_1, val | 123 | 7 | 1042FB7071669FBD | 1 | 0 | |
|
|
UPDATE TBL_0 SET value_0 = 1681692777 | 37 | 7 | 84E8FF47CCC35A79 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_1 | 37 | 7 | 642812FD3BD60B9 | 1 | 0 | |
|
|
CREATE TABLE TBL_1(key text primary key, txt_0 te | 90 | 7 | DA9FC3ABF2D1C209 | 2 | 0 | |
|
|
INSERT INTO TBL_1(key, txt_0, value_0, txt_1, val | 120 | 7 | 3E34961802B1F799 | 1 | 0 | |
|
|
SELECT pg_stat_monitor_reset() | 30 | 7 | DED7C3BDC91B9C6D | 1 | 0 | |
|
|
UPDATE TBL_4 SET value_0 = 2053999932 | 37 | 7 | 6FD98289D24978C2 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 69 | 7 | 1664EFC58E5FC941 | 1 | 0 | |
|
|
UPDATE TBL_3 SET value_0 = 184803526, value_1 = 4 | 57 | 7 | 777CC1DE559A3E66 | 1 | 0 | |
|
|
UPDATE TBL_2 SET value_0 = 336465782 | 36 | 7 | 912DEFFBDDE76F | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_5 | 37 | 7 | 67C5269569CDB71E | 1 | 0 | |
|
|
CREATE TABLE TBL_2(key text primary key, txt_0 te | 115 | 7 | CE277C93214FCB24 | 2 | 0 | |
|
|
INSERT INTO TBL_3(key, txt_0, value_0) VALUES('00 | 81 | 7 | 3DBCC9E726D14CA1 | 1 | 0 | |
|
|
INSERT INTO TBL_4(key, txt_0, value_0, txt_1, val | 244 | 7 | FEE0AB71F441E443 | 1 | 0 | |
|
|
INSERT INTO TBL_4(key, txt_0, value_0, txt_1, val | 204 | 7 | 4718A03D9F4B3A5 | 1 | 0 | |
|
|
INSERT INTO TBL_5(key, txt_0, value_0, txt_1, val | 160 | 7 | B361F9DF99F5D18E | 1 | 0 | |
|
|
UPDATE TBL_3 SET value_0 = 1424268980, value_1 = | 80 | 7 | 7A0CF7AC932A3BC6 | 1 | 0 | |
|
|
INSERT INTO TBL_5(key, txt_0, value_0, txt_1, val | 203 | 7 | 5EABBB0C356C813F | 1 | 0 | |
|
|
CREATE TABLE TBL_4(key text primary key, txt_0 te | 165 | 7 | F0D9F5857E930C16 | 2 | 0 | |
|
|
INSERT INTO TBL_4(key, txt_0, value_0, txt_1, val | 122 | 7 | B56564995B2EDD01 | 1 | 0 | |
|
|
UPDATE TBL_4 SET value_0 = 855636226, value_1 = 1 | 102 | 7 | 60DF94323EB8A8F8 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 53 | 7 | 74A743B139055406 | 1 | 0 | |
|
|
INSERT INTO TBL_3(key, txt_0, value_0, txt_1, val | 122 | 7 | CD952DBAE952CF6B | 1 | 0 | |
|
|
INSERT INTO TBL_3(key, txt_0, value_0, txt_1, val | 203 | 7 | E9DA5C8CD89D1A69 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 69 | 7 | C368081377909E88 | 1 | 0 | |
|
|
INSERT INTO TBL_5(key, txt_0, value_0) VALUES('00 | 81 | 7 | 4F3EA5E59FFA3EE | 1 | 0 | |
|
|
UPDATE TBL_1 SET value_0 = 1025202362, value_1 = | 59 | 7 | 44EB0DD7B8765DBC | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2 | 37 | 7 | 1AAF5BC84396638E | 1 | 0 | |
|
|
UPDATE TBL_4 SET value_0 = 1264095060, value_1 = | 59 | 7 | BF4BE35F437265F4 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 85 | 7 | 1AE30BFC91FD9D56 | 1 | 0 | |
|
|
(63 rows)
|
|
|
|
SELECT count(queryid) from pg_stat_monitor;
|
|
count
|
|
-------
|
|
63
|
|
(1 row)
|
|
|
|
SELECT pg_stat_monitor_reset();
|
|
pg_stat_monitor_reset
|
|
-----------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * from pg_stat_monitor_settings;
|
|
name | value | default_value | description | minimum | maximum | options | restart
|
|
------------------------------------------+--------+---------------+----------------------------------------------------------------------------------------------------------+---------+------------+----------------+---------
|
|
pg_stat_monitor.pgsm_max | 1 | 100 | Sets the maximum size of shared memory in (MB) used for statement's metadata tracked by pg_stat_monitor. | 1 | 1000 | | yes
|
|
pg_stat_monitor.pgsm_query_max_len | 10000 | 2048 | Sets the maximum length of query. | 1024 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_track_utility | yes | yes | Selects whether utility commands are tracked. | | | yes, no | no
|
|
pg_stat_monitor.pgsm_normalized_query | no | no | Selects whether save query in normalized format. | | | yes, no | no
|
|
pg_stat_monitor.pgsm_max_buckets | 10 | 10 | Sets the maximum number of buckets. | 1 | 10 | | yes
|
|
pg_stat_monitor.pgsm_bucket_time | 60 | 60 | Sets the time in seconds per bucket. | 1 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_histogram_min | 0 | 0 | Sets the time in millisecond. | 0 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_histogram_max | 100000 | 100000 | Sets the time in millisecond. | 10 | 2147483647 | | yes
|
|
pg_stat_monitor.pgsm_histogram_buckets | 10 | 10 | Sets the maximum number of histogram buckets | 2 | 50 | | yes
|
|
pg_stat_monitor.pgsm_query_shared_buffer | 1 | 20 | Sets the maximum size of shared memory in (MB) used for query tracked by pg_stat_monitor. | 1 | 10000 | | yes
|
|
pg_stat_monitor.pgsm_overflow_target | 1 | 1 | Sets the overflow target for pg_stat_monitor | 0 | 1 | | yes
|
|
pg_stat_monitor.pgsm_enable_query_plan | yes | no | Enable/Disable query plan monitoring | | | yes, no | no
|
|
pg_stat_monitor.pgsm_track | all | top | Selects which statements are tracked by pg_stat_monitor. | | | none, top, all | no
|
|
pg_stat_monitor.pgsm_extract_comments | yes | no | Enable/Disable extracting comments from queries. | | | yes, no | no
|
|
pg_stat_monitor.pgsm_track_planning | yes | no | Selects whether planning statistics are tracked. | | | yes, no | no
|
|
(15 rows)
|
|
|
|
SELECT substr(query, 0, 50), length(query), bucket, queryid, calls, elevel, sqlcode, message from pg_stat_monitor;
|
|
substr | length | bucket | queryid | calls | elevel | sqlcode | message
|
|
---------------------------------------------------+--------+--------+------------------+-------+--------+---------+---------
|
|
CREATE TABLE TBL_2_4(key text primary key, txt_0 | 167 | 8 | 45D0728F70837703 | 2 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 55 | 8 | 44008D5A23F76423 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2_4 | 39 | 8 | 2B54471951894604 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2_1 | 39 | 8 | EECA294B4F4BFA31 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 87 | 8 | 175EC70143A0B1EF | 1 | 0 | |
|
|
INSERT INTO TBL_2_2(key, txt_0, value_0, txt_1, v | 162 | 8 | 966BB8A73D9D0CB1 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 71 | 8 | EE70E798E0D391B1 | 1 | 0 | |
|
|
INSERT INTO TBL_2_2(key, txt_0, value_0) VALUES(' | 82 | 8 | FF97B9D9C6F55008 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2_0 | 39 | 8 | BEABFDEAD2814D49 | 1 | 0 | |
|
|
SELECT pg_stat_monitor_reset() | 30 | 8 | DED7C3BDC91B9C6D | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 55 | 8 | A2938DCD37EA0B53 | 1 | 0 | |
|
|
CREATE TABLE TBL_2_1(key text primary key, txt_0 | 92 | 8 | EB49AF77DF6ACE91 | 2 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 87 | 8 | AB3D91620522B027 | 1 | 0 | |
|
|
INSERT INTO TBL_2_4(key, txt_0, value_0) VALUES(' | 82 | 8 | 725801B5D3BF0FC7 | 1 | 0 | |
|
|
INSERT INTO TBL_2_5(key, txt_0, value_0, txt_1, v | 205 | 8 | DF620AAF2D68C1B9 | 1 | 0 | |
|
|
INSERT INTO TBL_2_4(key, txt_0, value_0, txt_1, v | 124 | 8 | DC3E349EB74C19E5 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 55 | 8 | 2B56BD4846F0945A | 1 | 0 | |
|
|
UPDATE TBL_2_2 SET value_0 = 233665123, value_1 = | 81 | 8 | 37B4252EA3D0ACD0 | 1 | 0 | |
|
|
UPDATE TBL_2_2 SET value_0 = 336465782 | 38 | 8 | B3F9A1C4B84F1F6E | 1 | 0 | |
|
|
INSERT INTO TBL_2_3(key, txt_0, value_0) VALUES(' | 83 | 8 | 3B74D31DC24049AE | 1 | 0 | |
|
|
INSERT INTO TBL_2_1(key, txt_0, value_0, txt_1, v | 122 | 8 | E67C2A4876991361 | 1 | 0 | |
|
|
INSERT INTO TBL_2_5(key, txt_0, value_0) VALUES(' | 83 | 8 | 8AFE97DA5BA270F3 | 1 | 0 | |
|
|
INSERT INTO TBL_2_5(key, txt_0, value_0, txt_1, v | 287 | 8 | B86F5F013045BB35 | 1 | 0 | |
|
|
UPDATE TBL_2_3 SET value_0 = 184803526, value_1 = | 59 | 8 | 481E62DF6E13F673 | 1 | 0 | |
|
|
UPDATE TBL_2_3 SET value_0 = 137806862, value_1 = | 100 | 8 | 4826BD5A1850C3DB | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 55 | 8 | 6F4658C0C4D476E4 | 1 | 0 | |
|
|
UPDATE TBL_2_4 SET value_0 = 1843993368, value_1 | 82 | 8 | ED5B292A448E4E44 | 1 | 0 | |
|
|
CREATE TABLE TBL_2_2(key text primary key, txt_0 | 117 | 8 | 439CC4659745887A | 2 | 0 | |
|
|
INSERT INTO TBL_2_3(key, txt_0, value_0, txt_1, v | 166 | 8 | 578B4CBEC849C5AC | 1 | 0 | |
|
|
INSERT INTO TBL_2_4(key, txt_0, value_0, txt_1, v | 164 | 8 | 38A7344ABD42E2D4 | 1 | 0 | |
|
|
UPDATE TBL_2_3 SET value_0 = 1129566413 | 39 | 8 | 6D9B5FD9B3ECB930 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 71 | 8 | 2F9348F3E811B79A | 1 | 0 | |
|
|
INSERT INTO TBL_2_3(key, txt_0, value_0, txt_1, v | 205 | 8 | 2D60780B6E5147F4 | 1 | 0 | |
|
|
UPDATE TBL_2_4 SET value_0 = 855636226, value_1 = | 104 | 8 | 5FC4696DAD56E2EA | 1 | 0 | |
|
|
CREATE TABLE TBL_2_5(key text primary key, txt_0 | 192 | 8 | B3FA223A87014AE | 2 | 0 | |
|
|
INSERT INTO TBL_2_5(key, txt_0, value_0, txt_1, v | 245 | 8 | ED14C4FF5E930055 | 1 | 0 | |
|
|
CREATE TABLE TBL_2_3(key text primary key, txt_0 | 142 | 8 | F079ED304A17DBC5 | 2 | 0 | |
|
|
INSERT INTO TBL_2_4(key, txt_0, value_0, txt_1, v | 246 | 8 | C0C08BEE90320 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2_5 | 39 | 8 | 82535261690FDE1D | 1 | 0 | |
|
|
SELECT * from pg_stat_monitor_settings | 38 | 8 | 1FC4A7E71F639F9D | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2_2 | 39 | 8 | A4945C687430A780 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 87 | 8 | 3B37D99AD3D9106D | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 71 | 8 | 56787B092622E1F | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 103 | 8 | 2689FAB68E4D0D85 | 1 | 0 | |
|
|
INSERT INTO TBL_2_5(key, txt_0, value_0, txt_1, v | 123 | 8 | 78B7E1236DE48707 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0 FROM TBL_2_3 | 39 | 8 | 678DD130B42BE005 | 1 | 0 | |
|
|
INSERT INTO TBL_2_4(key, txt_0, value_0, txt_1, v | 206 | 8 | B282D8834F6C7796 | 1 | 0 | |
|
|
INSERT INTO TBL_2_2(key, txt_0, value_0, txt_1, v | 125 | 8 | 9CF25142A821A28A | 1 | 0 | |
|
|
INSERT INTO TBL_2_0(key, txt_0, value_0) VALUES(' | 82 | 8 | 8697D20BA92E0E4F | 1 | 0 | |
|
|
INSERT INTO TBL_2_3(key, txt_0, value_0, txt_1, v | 124 | 8 | C09694BDCD5115CB | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1 FROM T | 55 | 8 | 48162B33BC7640C3 | 1 | 0 | |
|
|
UPDATE TBL_2_4 SET value_0 = 1264095060, value_1 | 61 | 8 | 867FF05B638DBE97 | 1 | 0 | |
|
|
INSERT INTO TBL_2_1(key, txt_0, value_0) VALUES(' | 83 | 8 | 7E999BC11FAAB01D | 1 | 0 | |
|
|
UPDATE TBL_2_1 SET value_0 = 1189641421 | 39 | 8 | 8EB080EC0FE7A841 | 1 | 0 | |
|
|
SELECT key, txt_0, value_0, txt_1, value_1, txt_2 | 71 | 8 | 8CF9F5BEF1F4EA82 | 1 | 0 | |
|
|
UPDATE TBL_2_3 SET value_0 = 1424268980, value_1 | 82 | 8 | 3DF7E3F09F312E6C | 1 | 0 | |
|
|
UPDATE TBL_2_4 SET value_0 = 2053999932 | 39 | 8 | 3681F525B0E1E277 | 1 | 0 | |
|
|
UPDATE TBL_2_2 SET value_0 = 861021530, value_1 = | 59 | 8 | F24B049D9A1F87B6 | 1 | 0 | |
|
|
UPDATE TBL_2_0 SET value_0 = 1681692777 | 39 | 8 | D17CA038032BEF1 | 1 | 0 | |
|
|
UPDATE TBL_2_4 SET value_0 = 1036140795, value_1 | 125 | 8 | 714EBA1E5D48D2F9 | 1 | 0 | |
|
|
CREATE TABLE TBL_2_0(key text primary key, txt_0 | 67 | 8 | 2FDDD5D4F3A6A2E5 | 2 | 0 | |
|
|
UPDATE TBL_2_1 SET value_0 = 1025202362, value_1 | 61 | 8 | 840DA100E65E11AB | 1 | 0 | |
|
|
INSERT INTO TBL_2_5(key, txt_0, value_0, txt_1, v | 162 | 8 | 73D7DCDC196DA935 | 1 | 0 | |
|
|
(63 rows)
|
|
|
|
SELECT count(queryid) from pg_stat_monitor;
|
|
count
|
|
-------
|
|
63
|
|
(1 row)
|
|
|
|
Drop extension pg_stat_monitor;
|