· 4 years ago · Apr 08, 2021, 07:36 PM
1[16-12] 'select gen_random_uuid()' LANGUAGE SQL;
204-08-2021 02:29:09PM
3postgresql-12.service
4[16-13]
504-08-2021 02:29:09PM
6postgresql-12.service
7[16-14] CREATE TABLE hdb_catalog.hdb_source_catalog_version(
804-08-2021 02:29:09PM
9postgresql-12.service
10[16-15] version TEXT NOT NULL,
1104-08-2021 02:29:09PM
12postgresql-12.service
13[16-16] upgraded_on TIMESTAMPTZ NOT NULL
1404-08-2021 02:29:09PM
15postgresql-12.service
16[16-3] pid=3687189,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 STATEMENT: /* We define our own uuid generator function that uses gen_random_uuid() underneath.
1704-08-2021 02:29:09PM
18postgresql-12.service
19[16-4] Since the column default is not directly referencing gen_random_uuid(),
2004-08-2021 02:29:09PM
21postgresql-12.service
22[16-5] it prevents the column default to be dropped when pgcrypto or public schema is dropped unwittingly.
2304-08-2021 02:29:09PM
24postgresql-12.service
25[16-6]
2604-08-2021 02:29:09PM
27postgresql-12.service
28[16-7] See https://github.com/hasura/graphql-engine/issues/4217
2904-08-2021 02:29:09PM
30postgresql-12.service
31[16-8] */
3204-08-2021 02:29:09PM
33postgresql-12.service
34[16-1] pid=3687189,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 ERROR: function gen_random_uuid() does not exist at character 581
3504-08-2021 02:29:09PM
36postgresql-12.service
37[16-2] pid=3687189,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 HINT: No function matches the given name and argument types. You might need to add explicit type casts.
3804-08-2021 02:29:09PM
39postgresql-12.service
40[15-1] pid=3687189,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 LOG: connection authorized: user=doadmin database=odoo13 SSL enabled (protocol=TLSv1.2, cipher=ECDHE-RSA-AES256-GCM-SHA384, bits=256, compression=off)
4104-08-2021 02:29:09PM
42postgresql-12.service
43[14-1] pid=3687189,user=[unknown],db=[unknown],app=[unknown],client=10.132.217.122 LOG: connection received: host=10.132.217.122 port=59502
4404-08-2021 02:29:06PM
45postgresql-12.service
46[16-91] INSERT INTO hdb_catalog.event_log
4704-08-2021 02:29:06PM
48postgresql-12.service
49[16-92] (id, schema_name, table_name, trigger_name, payload)
5004-08-2021 02:29:06PM
51postgresql-12.service
52[16-93] VALUES
5304-08-2021 02:29:06PM
54postgresql-12.service
55[16-94] (id, schema_name, table_name, trigger_name, payload);
5604-08-2021 02:29:06PM
57postgresql-12.service
58[16-95] RETURN id;
5904-08-2021 02:29:06PM
60postgresql-12.service
61[16-96] END;
6204-08-2021 02:29:06PM
63postgresql-12.service
64[16-97] $$ LANGUAGE plpgsql;
6504-08-2021 02:29:06PM
66postgresql-12.service
67[16-98]
6804-08-2021 02:29:06PM
69postgresql-12.service
70[16-71] session_variables := current_setting('hasura.user', 't');
7104-08-2021 02:29:06PM
72postgresql-12.service
73[16-72] trace_context := current_setting('hasura.tracecontext', 't');
7404-08-2021 02:29:06PM
75postgresql-12.service
76[16-73] ELSE
7704-08-2021 02:29:06PM
78postgresql-12.service
79[16-74] BEGIN
8004-08-2021 02:29:06PM
81postgresql-12.service
82[16-75] session_variables := current_setting('hasura.user');
8304-08-2021 02:29:06PM
84postgresql-12.service
85[16-76] EXCEPTION WHEN OTHERS THEN
8604-08-2021 02:29:06PM
87postgresql-12.service
88[16-77] session_variables := NULL;
8904-08-2021 02:29:06PM
90postgresql-12.service
91[16-78] END;
9204-08-2021 02:29:06PM
93postgresql-12.service
94[16-79] BEGIN
9504-08-2021 02:29:06PM
96postgresql-12.service
97[16-80] trace_context := current_setting('hasura.tracecontext');
9804-08-2021 02:29:06PM
99postgresql-12.service
100[16-81] EXCEPTION WHEN OTHERS THEN
10104-08-2021 02:29:06PM
102postgresql-12.service
103[16-82] trace_context := NULL;
10404-08-2021 02:29:06PM
105postgresql-12.service
106[16-83] END;
10704-08-2021 02:29:06PM
108postgresql-12.service
109[16-84] END IF;
11004-08-2021 02:29:06PM
111postgresql-12.service
112[16-85] payload := json_build_object(
11304-08-2021 02:29:06PM
114postgresql-12.service
115[16-86] 'op', op,
11604-08-2021 02:29:06PM
117postgresql-12.service
118[16-87] 'data', row_data,
11904-08-2021 02:29:06PM
120postgresql-12.service
121[16-88] 'session_variables', session_variables,
12204-08-2021 02:29:06PM
123postgresql-12.service
124[16-89] 'trace_context', trace_context
12504-08-2021 02:29:06PM
126postgresql-12.service
127[16-90] );
12804-08-2021 02:29:06PM
129postgresql-12.service
130[16-61] DECLARE
13104-08-2021 02:29:06PM
132postgresql-12.service
133[16-62] id text;
13404-08-2021 02:29:06PM
135postgresql-12.service
136[16-63] payload json;
13704-08-2021 02:29:06PM
138postgresql-12.service
139[16-64] session_variables json;
14004-08-2021 02:29:06PM
141postgresql-12.service
142[16-65] server_version_num int;
14304-08-2021 02:29:06PM
144postgresql-12.service
145[16-66] trace_context json;
14604-08-2021 02:29:06PM
147postgresql-12.service
148[16-67] BEGIN
14904-08-2021 02:29:06PM
150postgresql-12.service
151[16-68] id := gen_random_uuid();
15204-08-2021 02:29:06PM
153postgresql-12.service
154[16-69] server_version_num := current_setting('server_version_num');
15504-08-2021 02:29:06PM
156postgresql-12.service
157[16-70] IF server_version_num >= 90600 THEN
15804-08-2021 02:29:06PM
159postgresql-12.service
160[16-57]
16104-08-2021 02:29:06PM
162postgresql-12.service
163[16-58] CREATE OR REPLACE FUNCTION
16404-08-2021 02:29:06PM
165postgresql-12.service
166[16-59] hdb_catalog.insert_event_log(schema_name text, table_name text, trigger_name text, op text, row_data json)
16704-08-2021 02:29:06PM
168postgresql-12.service
169[16-60] RETURNS text AS $$
17004-08-2021 02:29:06PM
171postgresql-12.service
172[16-47] event_id TEXT,
17304-08-2021 02:29:06PM
174postgresql-12.service
175[16-48] status INTEGER,
17604-08-2021 02:29:06PM
177postgresql-12.service
178[16-49] request JSON,
17904-08-2021 02:29:06PM
180postgresql-12.service
181[16-50] response JSON,
18204-08-2021 02:29:06PM
183postgresql-12.service
184[16-51] created_at TIMESTAMP DEFAULT NOW(),
18504-08-2021 02:29:06PM
186postgresql-12.service
187[16-52]
18804-08-2021 02:29:06PM
189postgresql-12.service
190[16-53] FOREIGN KEY (event_id) REFERENCES hdb_catalog.event_log (id)
19104-08-2021 02:29:06PM
192postgresql-12.service
193[16-54] );
19404-08-2021 02:29:06PM
195postgresql-12.service
196[16-55]
19704-08-2021 02:29:06PM
198postgresql-12.service
199[16-56] CREATE INDEX ON hdb_catalog.event_invocation_logs (event_id);
20004-08-2021 02:29:06PM
201postgresql-12.service
202[16-31] tries INTEGER NOT NULL DEFAULT 0,
20304-08-2021 02:29:06PM
204postgresql-12.service
205[16-32] created_at TIMESTAMP DEFAULT NOW(),
20604-08-2021 02:29:06PM
207postgresql-12.service
208[16-33] /* when locked IS NULL the event is unlocked and can be processed */
20904-08-2021 02:29:06PM
210postgresql-12.service
211[16-34] locked TIMESTAMPTZ,
21204-08-2021 02:29:06PM
213postgresql-12.service
214[16-35] next_retry_at TIMESTAMP,
21504-08-2021 02:29:06PM
216postgresql-12.service
217[16-36] archived BOOLEAN NOT NULL DEFAULT FALSE
21804-08-2021 02:29:06PM
219postgresql-12.service
220[16-37] );
22104-08-2021 02:29:06PM
222postgresql-12.service
223[16-38]
22404-08-2021 02:29:06PM
225postgresql-12.service
226[16-39] CREATE INDEX ON hdb_catalog.event_log (trigger_name);
22704-08-2021 02:29:06PM
228postgresql-12.service
229[16-40] CREATE INDEX ON hdb_catalog.event_log (locked);
23004-08-2021 02:29:06PM
231postgresql-12.service
232[16-41] CREATE INDEX ON hdb_catalog.event_log (delivered);
23304-08-2021 02:29:06PM
234postgresql-12.service
235[16-42] CREATE INDEX ON hdb_catalog.event_log (created_at);
23604-08-2021 02:29:06PM
237postgresql-12.service
238[16-43]
23904-08-2021 02:29:06PM
240postgresql-12.service
241[16-44] CREATE TABLE hdb_catalog.event_invocation_logs
24204-08-2021 02:29:06PM
243postgresql-12.service
244[16-45] (
24504-08-2021 02:29:06PM
246postgresql-12.service
247[16-46] id TEXT DEFAULT hdb_catalog.gen_hasura_uuid() PRIMARY KEY,
24804-08-2021 02:29:06PM
249postgresql-12.service
250[16-24] id TEXT DEFAULT hdb_catalog.gen_hasura_uuid() PRIMARY KEY,
25104-08-2021 02:29:06PM
252postgresql-12.service
253[16-25] schema_name TEXT NOT NULL,
25404-08-2021 02:29:06PM
255postgresql-12.service
256[16-26] table_name TEXT NOT NULL,
25704-08-2021 02:29:06PM
258postgresql-12.service
259[16-27] trigger_name TEXT NOT NULL,
26004-08-2021 02:29:06PM
261postgresql-12.service
262[16-28] payload JSONB NOT NULL,
26304-08-2021 02:29:06PM
264postgresql-12.service
265[16-29] delivered BOOLEAN NOT NULL DEFAULT FALSE,
26604-08-2021 02:29:06PM
267postgresql-12.service
268[16-30] error BOOLEAN NOT NULL DEFAULT FALSE,
26904-08-2021 02:29:06PM
270postgresql-12.service
271[16-18]
27204-08-2021 02:29:06PM
273postgresql-12.service
274[16-19] CREATE UNIQUE INDEX hdb_source_catalog_version_one_row
27504-08-2021 02:29:06PM
276postgresql-12.service
277[16-20] ON hdb_catalog.hdb_source_catalog_version((version IS NOT NULL));
27804-08-2021 02:29:06PM
279postgresql-12.service
280[16-21]
28104-08-2021 02:29:06PM
282postgresql-12.service
283[16-22] CREATE TABLE hdb_catalog.event_log
28404-08-2021 02:29:06PM
285postgresql-12.service
286[16-23] (
28704-08-2021 02:29:06PM
288postgresql-12.service
289[16-12] 'select gen_random_uuid()' LANGUAGE SQL;
29004-08-2021 02:29:06PM
291postgresql-12.service
292[16-13]
29304-08-2021 02:29:06PM
294postgresql-12.service
295[16-14] CREATE TABLE hdb_catalog.hdb_source_catalog_version(
29604-08-2021 02:29:06PM
297postgresql-12.service
298[16-15] version TEXT NOT NULL,
29904-08-2021 02:29:06PM
300postgresql-12.service
301[16-16] upgraded_on TIMESTAMPTZ NOT NULL
30204-08-2021 02:29:06PM
303postgresql-12.service
304[16-17] );
30504-08-2021 02:29:06PM
306postgresql-12.service
307[16-6]
30804-08-2021 02:29:06PM
309postgresql-12.service
310[16-7] See https://github.com/hasura/graphql-engine/issues/4217
31104-08-2021 02:29:06PM
312postgresql-12.service
313[16-8] */
31404-08-2021 02:29:06PM
315postgresql-12.service
316[16-9] CREATE OR REPLACE FUNCTION hdb_catalog.gen_hasura_uuid() RETURNS uuid AS
31704-08-2021 02:29:06PM
318postgresql-12.service
319[16-10] -- We assume gen_random_uuid() is available in the search_path.
32004-08-2021 02:29:06PM
321postgresql-12.service
322[16-11] -- This may not be true but we can't do much till https://github.com/hasura/graphql-engine/issues/3657
32304-08-2021 02:29:06PM
324postgresql-12.service
325[16-1] pid=3687184,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 ERROR: function gen_random_uuid() does not exist at character 581
32604-08-2021 02:29:06PM
327postgresql-12.service
328[16-2] pid=3687184,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 HINT: No function matches the given name and argument types. You might need to add explicit type casts.
32904-08-2021 02:29:06PM
330postgresql-12.service
331[16-3] pid=3687184,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 STATEMENT: /* We define our own uuid generator function that uses gen_random_uuid() underneath.
33204-08-2021 02:29:06PM
333postgresql-12.service
334[16-4] Since the column default is not directly referencing gen_random_uuid(),
33504-08-2021 02:29:06PM
336postgresql-12.service
337[16-5] it prevents the column default to be dropped when pgcrypto or public schema is dropped unwittingly.
33804-08-2021 02:29:06PM
339postgresql-12.service
340[15-1] pid=3687184,user=doadmin,db=odoo13,app=[unknown],client=10.132.217.122 LOG: connection authorized: user=doadmin database=odoo13 SSL enabled (protocol=TLSv1.2, cipher=ECDHE-RSA-AES256-GCM-SHA384, bits=256, compression=off)
34104-08-2021 02:29:06PM
342postgresql-12.service
343[14-1] pid=3687184,user=[unknown],db=[unknown],app=[unknown],client=10.132.217.122 LOG: connection received: host=10.132.217.122 port=59498
34404-08-2021 02:29:00PM
345postgresql-12.service
346[15-1] pid=3687173,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
34704-08-2021 02:29:00PM
348postgresql-12.service
349[14-1] pid=3687173,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
35004-08-2021 02:29:00PM
351postgresql-12.service
352[16-1] pid=3687172,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.043 user=postgres database=metabase host=[local]
35304-08-2021 02:29:00PM
354postgresql-12.service
355[15-1] pid=3687172,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
35604-08-2021 02:29:00PM
357postgresql-12.service
358[14-1] pid=3687172,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
35904-08-2021 02:29:00PM
360postgresql-12.service
361[16-1] pid=3687171,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.051 user=postgres database=asimeddb host=[local]
36204-08-2021 02:29:00PM
363postgresql-12.service
364[15-1] pid=3687171,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
36504-08-2021 02:29:00PM
366postgresql-12.service
367[14-1] pid=3687171,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
36804-08-2021 02:29:00PM
369postgresql-12.service
370[16-1] pid=3687170,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.068 user=postgres database=defaultdb host=[local]
37104-08-2021 02:29:00PM
372postgresql-12.service
373[15-1] pid=3687170,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
37404-08-2021 02:29:00PM
375postgresql-12.service
376[14-1] pid=3687170,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
37704-08-2021 02:28:30PM
378postgresql-12.service
379[16-1] pid=3687130,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.023 user=postgres database=postgres host=[local]
38004-08-2021 02:28:30PM
381postgresql-12.service
382[15-1] pid=3687130,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
38304-08-2021 02:28:30PM
384postgresql-12.service
385[14-1] pid=3687130,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
38604-08-2021 02:28:30PM
387postgresql-12.service
388[16-1] pid=3687129,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.182 user=postgres database=odoo13_pruebas host=[local]
38904-08-2021 02:28:30PM
390postgresql-12.service
391[15-1] pid=3687129,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
39204-08-2021 02:28:30PM
393postgresql-12.service
394[14-1] pid=3687129,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
39504-08-2021 02:28:30PM
396postgresql-12.service
397[16-1] pid=3687128,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.183 user=postgres database=odoo13 host=[local]
39804-08-2021 02:28:30PM
399postgresql-12.service
400[15-1] pid=3687128,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
40104-08-2021 02:28:30PM
402postgresql-12.service
403[14-1] pid=3687128,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
40404-08-2021 02:28:30PM
405postgresql-12.service
406[16-1] pid=3687127,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.046 user=postgres database=metabase host=[local]
40704-08-2021 02:28:30PM
408postgresql-12.service
409[15-1] pid=3687127,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
41004-08-2021 02:28:30PM
411postgresql-12.service
412[14-1] pid=3687127,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
41304-08-2021 02:28:30PM
414postgresql-12.service
415[16-1] pid=3687126,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.052 user=postgres database=asimeddb host=[local]
41604-08-2021 02:28:30PM
417postgresql-12.service
418[15-1] pid=3687126,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
41904-08-2021 02:28:30PM
420postgresql-12.service
421[14-1] pid=3687126,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
42204-08-2021 02:28:30PM
423postgresql-12.service
424[16-1] pid=3687125,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.080 user=postgres database=defaultdb host=[local]
42504-08-2021 02:28:30PM
426postgresql-12.service
427[15-1] pid=3687125,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
42804-08-2021 02:28:30PM
429postgresql-12.service
430[14-1] pid=3687125,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
43104-08-2021 02:28:09PM
432postgresql-12.service
433[16-4]
43404-08-2021 02:28:09PM
435postgresql-12.service
436[16-2] pid=3685207,user=doadmin,db=odoo13,app=pgAdmin 4 - DB:odoo13,client=10.132.217.119 STATEMENT: CREATE SCHEMA hdb_catalog
43704-08-2021 02:28:09PM
438postgresql-12.service
439[16-3] AUTHORIZATION doadmin;
44004-08-2021 02:28:09PM
441postgresql-12.service
442[16-1] pid=3685207,user=doadmin,db=odoo13,app=pgAdmin 4 - DB:odoo13,client=10.132.217.119 ERROR: schema "hdb_catalog" already exists
44304-08-2021 02:28:05PM
444postgresql-12.service
445[16-1] pid=3687090,user=doadmin,db=defaultdb,app=do-pruned,client=127.0.0.1 LOG: disconnection: session time: 0:00:00.042 user=doadmin database=defaultdb host=127.0.0.1 port=59416
44604-08-2021 02:28:05PM
447postgresql-12.service
448[15-1] pid=3687090,user=doadmin,db=defaultdb,app=[unknown],client=127.0.0.1 LOG: connection authorized: user=doadmin database=defaultdb application_name=do-pruned SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256, compression=off)
44904-08-2021 02:28:05PM
450postgresql-12.service
451[14-1] pid=3687090,user=[unknown],db=[unknown],app=[unknown],client=127.0.0.1 LOG: connection received: host=127.0.0.1 port=59416
45204-08-2021 02:28:04PM
453postgresql-12.service
454[16-1] pid=3687088,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.117 user=postgres database=defaultdb host=[local]
45504-08-2021 02:28:04PM
456postgresql-12.service
457[15-1] pid=3687088,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
45804-08-2021 02:28:04PM
459postgresql-12.service
460[14-1] pid=3687088,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
46104-08-2021 02:28:00PM
462postgresql-12.service
463[16-1] pid=3687082,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.026 user=postgres database=postgres host=[local]
46404-08-2021 02:28:00PM
465postgresql-12.service
466[15-1] pid=3687082,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
46704-08-2021 02:28:00PM
468postgresql-12.service
469[14-1] pid=3687082,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
47004-08-2021 02:28:00PM
471postgresql-12.service
472[16-1] pid=3687081,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.202 user=postgres database=odoo13_pruebas host=[local]
47304-08-2021 02:28:00PM
474postgresql-12.service
475[15-1] pid=3687081,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
47604-08-2021 02:28:00PM
477postgresql-12.service
478[14-1] pid=3687081,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
47904-08-2021 02:28:00PM
480postgresql-12.service
481[16-1] pid=3687080,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.181 user=postgres database=odoo13 host=[local]
48204-08-2021 02:28:00PM
483postgresql-12.service
484[15-1] pid=3687080,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
48504-08-2021 02:28:00PM
486postgresql-12.service
487[14-1] pid=3687080,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
48804-08-2021 02:28:00PM
489postgresql-12.service
490[16-1] pid=3687079,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.043 user=postgres database=metabase host=[local]
49104-08-2021 02:28:00PM
492postgresql-12.service
493[15-1] pid=3687079,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
49404-08-2021 02:28:00PM
495postgresql-12.service
496[14-1] pid=3687079,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
49704-08-2021 02:28:00PM
498postgresql-12.service
499[16-1] pid=3687078,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.048 user=postgres database=asimeddb host=[local]
50004-08-2021 02:28:00PM
501postgresql-12.service
502[15-1] pid=3687078,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
50304-08-2021 02:28:00PM
504postgresql-12.service
505[14-1] pid=3687078,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
50604-08-2021 02:28:00PM
507postgresql-12.service
508[16-1] pid=3687076,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.091 user=postgres database=defaultdb host=[local]
50904-08-2021 02:28:00PM
510postgresql-12.service
511[15-1] pid=3687076,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
51204-08-2021 02:28:00PM
513postgresql-12.service
514[14-1] pid=3687076,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
51504-08-2021 02:27:30PM
516postgresql-12.service
517[16-1] pid=3687032,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.022 user=postgres database=postgres host=[local]
51804-08-2021 02:27:30PM
519postgresql-12.service
520[15-1] pid=3687032,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
52104-08-2021 02:27:30PM
522postgresql-12.service
523[14-1] pid=3687032,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
52404-08-2021 02:27:30PM
525postgresql-12.service
526[16-1] pid=3687031,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.190 user=postgres database=odoo13_pruebas host=[local]
52704-08-2021 02:27:30PM
528postgresql-12.service
529[15-1] pid=3687031,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
53004-08-2021 02:27:30PM
531postgresql-12.service
532[14-1] pid=3687031,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
53304-08-2021 02:27:30PM
534postgresql-12.service
535[16-1] pid=3687030,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.185 user=postgres database=odoo13 host=[local]
53604-08-2021 02:27:30PM
537postgresql-12.service
538[15-1] pid=3687030,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
53904-08-2021 02:27:30PM
540postgresql-12.service
541[14-1] pid=3687030,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
54204-08-2021 02:27:30PM
543postgresql-12.service
544[16-1] pid=3687029,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.054 user=postgres database=metabase host=[local]
54504-08-2021 02:27:30PM
546postgresql-12.service
547[15-1] pid=3687029,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
54804-08-2021 02:27:30PM
549postgresql-12.service
550[14-1] pid=3687029,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
55104-08-2021 02:27:30PM
552postgresql-12.service
553[16-1] pid=3687028,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.059 user=postgres database=asimeddb host=[local]
55404-08-2021 02:27:30PM
555postgresql-12.service
556[15-1] pid=3687028,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
55704-08-2021 02:27:30PM
558postgresql-12.service
559[14-1] pid=3687028,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
56004-08-2021 02:27:30PM
561postgresql-12.service
562[16-1] pid=3687027,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.110 user=postgres database=defaultdb host=[local]
56304-08-2021 02:27:30PM
564postgresql-12.service
565[15-1] pid=3687027,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
56604-08-2021 02:27:30PM
567postgresql-12.service
568[14-1] pid=3687027,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
56904-08-2021 02:27:05PM
570postgresql-12.service
571[16-1] pid=3686992,user=doadmin,db=defaultdb,app=do-pruned,client=127.0.0.1 LOG: disconnection: session time: 0:00:00.031 user=doadmin database=defaultdb host=127.0.0.1 port=59394
57204-08-2021 02:27:05PM
573postgresql-12.service
574[15-1] pid=3686992,user=doadmin,db=defaultdb,app=[unknown],client=127.0.0.1 LOG: connection authorized: user=doadmin database=defaultdb application_name=do-pruned SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256, compression=off)
57504-08-2021 02:27:05PM
576postgresql-12.service
577[14-1] pid=3686992,user=[unknown],db=[unknown],app=[unknown],client=127.0.0.1 LOG: connection received: host=127.0.0.1 port=59394
57804-08-2021 02:27:00PM
579postgresql-12.service
580[16-1] pid=3686985,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.024 user=postgres database=postgres host=[local]
58104-08-2021 02:27:00PM
582postgresql-12.service
583[15-1] pid=3686985,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
58404-08-2021 02:27:00PM
585postgresql-12.service
586[14-1] pid=3686985,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
58704-08-2021 02:27:00PM
588postgresql-12.service
589[16-1] pid=3686984,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.189 user=postgres database=odoo13_pruebas host=[local]
59004-08-2021 02:27:00PM
591postgresql-12.service
592[15-1] pid=3686984,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
59304-08-2021 02:27:00PM
594postgresql-12.service
595[14-1] pid=3686984,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
59604-08-2021 02:27:00PM
597postgresql-12.service
598[16-1] pid=3686983,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.186 user=postgres database=odoo13 host=[local]
59904-08-2021 02:27:00PM
600postgresql-12.service
601[15-1] pid=3686983,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
60204-08-2021 02:27:00PM
603postgresql-12.service
604[14-1] pid=3686983,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
60504-08-2021 02:27:00PM
606postgresql-12.service
607[16-1] pid=3686982,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.044 user=postgres database=metabase host=[local]
60804-08-2021 02:27:00PM
609postgresql-12.service
610[15-1] pid=3686982,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
61104-08-2021 02:27:00PM
612postgresql-12.service
613[14-1] pid=3686982,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
61404-08-2021 02:27:00PM
615postgresql-12.service
616[16-1] pid=3686980,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.061 user=postgres database=asimeddb host=[local]
61704-08-2021 02:27:00PM
618postgresql-12.service
619[15-1] pid=3686980,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
62004-08-2021 02:27:00PM
621postgresql-12.service
622[14-1] pid=3686980,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
62304-08-2021 02:27:00PM
624postgresql-12.service
625[16-1] pid=3686979,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.085 user=postgres database=defaultdb host=[local]
62604-08-2021 02:27:00PM
627postgresql-12.service
628[15-1] pid=3686979,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
62904-08-2021 02:27:00PM
630postgresql-12.service
631[14-1] pid=3686979,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
63204-08-2021 02:26:30PM
633postgresql-12.service
634[16-1] pid=3686940,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.024 user=postgres database=postgres host=[local]
63504-08-2021 02:26:30PM
636postgresql-12.service
637[15-1] pid=3686940,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
63804-08-2021 02:26:30PM
639postgresql-12.service
640[14-1] pid=3686940,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
64104-08-2021 02:26:30PM
642postgresql-12.service
643[16-1] pid=3686939,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.202 user=postgres database=odoo13_pruebas host=[local]
64404-08-2021 02:26:30PM
645postgresql-12.service
646[15-1] pid=3686939,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
64704-08-2021 02:26:30PM
648postgresql-12.service
649[14-1] pid=3686939,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
65004-08-2021 02:26:30PM
651postgresql-12.service
652[16-1] pid=3686938,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.232 user=postgres database=odoo13 host=[local]
65304-08-2021 02:26:30PM
654postgresql-12.service
655[15-1] pid=3686938,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
65604-08-2021 02:26:30PM
657postgresql-12.service
658[14-1] pid=3686938,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
65904-08-2021 02:26:30PM
660postgresql-12.service
661[16-1] pid=3686936,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.065 user=postgres database=metabase host=[local]
66204-08-2021 02:26:30PM
663postgresql-12.service
664[15-1] pid=3686936,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
66504-08-2021 02:26:30PM
666postgresql-12.service
667[14-1] pid=3686936,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
66804-08-2021 02:26:30PM
669postgresql-12.service
670[16-1] pid=3686935,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.056 user=postgres database=asimeddb host=[local]
67104-08-2021 02:26:30PM
672postgresql-12.service
673[15-1] pid=3686935,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
67404-08-2021 02:26:30PM
675postgresql-12.service
676[14-1] pid=3686935,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
67704-08-2021 02:26:30PM
678postgresql-12.service
679[16-1] pid=3686934,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.094 user=postgres database=defaultdb host=[local]
68004-08-2021 02:26:30PM
681postgresql-12.service
682[15-1] pid=3686934,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
68304-08-2021 02:26:30PM
684postgresql-12.service
685[14-1] pid=3686934,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
68604-08-2021 02:26:05PM
687postgresql-12.service
688[16-1] pid=3686900,user=doadmin,db=defaultdb,app=do-pruned,client=127.0.0.1 LOG: disconnection: session time: 0:00:00.039 user=doadmin database=defaultdb host=127.0.0.1 port=59374
68904-08-2021 02:26:05PM
690postgresql-12.service
691[15-1] pid=3686900,user=doadmin,db=defaultdb,app=[unknown],client=127.0.0.1 LOG: connection authorized: user=doadmin database=defaultdb application_name=do-pruned SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256, compression=off)
69204-08-2021 02:26:05PM
693postgresql-12.service
694[14-1] pid=3686900,user=[unknown],db=[unknown],app=[unknown],client=127.0.0.1 LOG: connection received: host=127.0.0.1 port=59374
69504-08-2021 02:26:04PM
696postgresql-12.service
697[16-1] pid=3686897,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.088 user=postgres database=defaultdb host=[local]
69804-08-2021 02:26:04PM
699postgresql-12.service
700[15-1] pid=3686897,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
70104-08-2021 02:26:04PM
702postgresql-12.service
703[14-1] pid=3686897,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
70404-08-2021 02:26:00PM
705postgresql-12.service
706[16-1] pid=3686892,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.020 user=postgres database=postgres host=[local]
70704-08-2021 02:26:00PM
708postgresql-12.service
709[15-1] pid=3686892,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
71004-08-2021 02:26:00PM
711postgresql-12.service
712[14-1] pid=3686892,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
71304-08-2021 02:26:00PM
714postgresql-12.service
715[16-1] pid=3686891,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.202 user=postgres database=odoo13_pruebas host=[local]
71604-08-2021 02:26:00PM
717postgresql-12.service
718[15-1] pid=3686891,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
71904-08-2021 02:26:00PM
720postgresql-12.service
721[14-1] pid=3686891,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
72204-08-2021 02:26:00PM
723postgresql-12.service
724[16-1] pid=3686889,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.252 user=postgres database=odoo13 host=[local]
72504-08-2021 02:26:00PM
726postgresql-12.service
727[15-1] pid=3686889,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
72804-08-2021 02:26:00PM
729postgresql-12.service
730[14-1] pid=3686889,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
73104-08-2021 02:26:00PM
732postgresql-12.service
733[16-1] pid=3686888,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.043 user=postgres database=metabase host=[local]
73404-08-2021 02:26:00PM
735postgresql-12.service
736[15-1] pid=3686888,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
73704-08-2021 02:26:00PM
738postgresql-12.service
739[14-1] pid=3686888,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
74004-08-2021 02:26:00PM
741postgresql-12.service
742[16-1] pid=3686887,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.050 user=postgres database=asimeddb host=[local]
74304-08-2021 02:26:00PM
744postgresql-12.service
745[15-1] pid=3686887,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
74604-08-2021 02:26:00PM
747postgresql-12.service
748[14-1] pid=3686887,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
74904-08-2021 02:26:00PM
750postgresql-12.service
751[16-1] pid=3686886,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.069 user=postgres database=defaultdb host=[local]
75204-08-2021 02:26:00PM
753postgresql-12.service
754[15-1] pid=3686886,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
75504-08-2021 02:26:00PM
756postgresql-12.service
757[14-1] pid=3686886,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
75804-08-2021 02:25:40PM
759postgresql-12.service
760[1361-1] pid=1439,user=,db=,app=,client= LOG: checkpoint complete: wrote 385 buffers (1.6%); 0 WAL file(s) added, 0 removed, 11 recycled; write=38.679 s, sync=0.039 s, total=38.757 s; sync files=94, longest=0.004 s, average=0.001 s; distance=198484 kB, estimate=209491 kB
76104-08-2021 02:25:30PM
762postgresql-12.service
763[16-1] pid=3686847,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.027 user=postgres database=postgres host=[local]
76404-08-2021 02:25:30PM
765postgresql-12.service
766[15-1] pid=3686847,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
76704-08-2021 02:25:30PM
768postgresql-12.service
769[14-1] pid=3686847,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
77004-08-2021 02:25:30PM
771postgresql-12.service
772[16-1] pid=3686846,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.181 user=postgres database=odoo13_pruebas host=[local]
77304-08-2021 02:25:30PM
774postgresql-12.service
775[15-1] pid=3686846,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
77604-08-2021 02:25:30PM
777postgresql-12.service
778[14-1] pid=3686846,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
77904-08-2021 02:25:30PM
780postgresql-12.service
781[16-1] pid=3686844,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.203 user=postgres database=odoo13 host=[local]
78204-08-2021 02:25:30PM
783postgresql-12.service
784[15-1] pid=3686844,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
78504-08-2021 02:25:30PM
786postgresql-12.service
787[14-1] pid=3686844,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
78804-08-2021 02:25:30PM
789postgresql-12.service
790[16-1] pid=3686843,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.058 user=postgres database=metabase host=[local]
79104-08-2021 02:25:30PM
792postgresql-12.service
793[15-1] pid=3686843,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
79404-08-2021 02:25:30PM
795postgresql-12.service
796[14-1] pid=3686843,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
79704-08-2021 02:25:30PM
798postgresql-12.service
799[16-1] pid=3686842,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.058 user=postgres database=asimeddb host=[local]
80004-08-2021 02:25:30PM
801postgresql-12.service
802[15-1] pid=3686842,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
80304-08-2021 02:25:30PM
804postgresql-12.service
805[14-1] pid=3686842,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
80604-08-2021 02:25:30PM
807postgresql-12.service
808[16-1] pid=3686841,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.073 user=postgres database=defaultdb host=[local]
80904-08-2021 02:25:30PM
810postgresql-12.service
811[15-1] pid=3686841,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
81204-08-2021 02:25:30PM
813postgresql-12.service
814[14-1] pid=3686841,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
81504-08-2021 02:25:05PM
816postgresql-12.service
817[16-1] pid=3686807,user=doadmin,db=defaultdb,app=do-pruned,client=127.0.0.1 LOG: disconnection: session time: 0:00:00.031 user=doadmin database=defaultdb host=127.0.0.1 port=59354
81804-08-2021 02:25:05PM
819postgresql-12.service
820[15-1] pid=3686807,user=doadmin,db=defaultdb,app=[unknown],client=127.0.0.1 LOG: connection authorized: user=doadmin database=defaultdb application_name=do-pruned SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256, compression=off)
82104-08-2021 02:25:05PM
822postgresql-12.service
823[14-1] pid=3686807,user=[unknown],db=[unknown],app=[unknown],client=127.0.0.1 LOG: connection received: host=127.0.0.1 port=59354
82404-08-2021 02:25:01PM
825postgresql-12.service
826[1360-1] pid=1439,user=,db=,app=,client= LOG: checkpoint starting: time
82704-08-2021 02:25:00PM
828postgresql-12.service
829[16-1] pid=3686800,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.024 user=postgres database=postgres host=[local]
83004-08-2021 02:25:00PM
831postgresql-12.service
832[15-1] pid=3686800,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
83304-08-2021 02:25:00PM
834postgresql-12.service
835[14-1] pid=3686800,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
83604-08-2021 02:25:00PM
837postgresql-12.service
838[16-1] pid=3686799,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.219 user=postgres database=odoo13_pruebas host=[local]
83904-08-2021 02:25:00PM
840postgresql-12.service
841[15-1] pid=3686799,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
84204-08-2021 02:25:00PM
843postgresql-12.service
844[14-1] pid=3686799,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
84504-08-2021 02:25:00PM
846postgresql-12.service
847[16-1] pid=3686797,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.240 user=postgres database=odoo13 host=[local]
84804-08-2021 02:25:00PM
849postgresql-12.service
850[15-1] pid=3686797,user=postgres,db=odoo13,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13
85104-08-2021 02:25:00PM
852postgresql-12.service
853[14-1] pid=3686797,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
85404-08-2021 02:25:00PM
855postgresql-12.service
856[16-1] pid=3686796,user=postgres,db=metabase,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.048 user=postgres database=metabase host=[local]
85704-08-2021 02:25:00PM
858postgresql-12.service
859[15-1] pid=3686796,user=postgres,db=metabase,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=metabase
86004-08-2021 02:25:00PM
861postgresql-12.service
862[14-1] pid=3686796,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
86304-08-2021 02:25:00PM
864postgresql-12.service
865[16-1] pid=3686795,user=postgres,db=asimeddb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.055 user=postgres database=asimeddb host=[local]
86604-08-2021 02:25:00PM
867postgresql-12.service
868[15-1] pid=3686795,user=postgres,db=asimeddb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=asimeddb
86904-08-2021 02:25:00PM
870postgresql-12.service
871[14-1] pid=3686795,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
87204-08-2021 02:25:00PM
873postgresql-12.service
874[16-1] pid=3686794,user=postgres,db=defaultdb,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.071 user=postgres database=defaultdb host=[local]
87504-08-2021 02:25:00PM
876postgresql-12.service
877[15-1] pid=3686794,user=postgres,db=defaultdb,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=defaultdb
87804-08-2021 02:25:00PM
879postgresql-12.service
880[14-1] pid=3686794,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
88104-08-2021 02:24:30PM
882postgresql-12.service
883[16-1] pid=3686750,user=postgres,db=postgres,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.025 user=postgres database=postgres host=[local]
88404-08-2021 02:24:30PM
885postgresql-12.service
886[15-1] pid=3686750,user=postgres,db=postgres,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=postgres
88704-08-2021 02:24:30PM
888postgresql-12.service
889[14-1] pid=3686750,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
89004-08-2021 02:24:30PM
891postgresql-12.service
892[16-1] pid=3686749,user=postgres,db=odoo13_pruebas,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.186 user=postgres database=odoo13_pruebas host=[local]
89304-08-2021 02:24:30PM
894postgresql-12.service
895[15-1] pid=3686749,user=postgres,db=odoo13_pruebas,app=[unknown],client=[local] LOG: connection authorized: user=postgres database=odoo13_pruebas
89604-08-2021 02:24:30PM
897postgresql-12.service
898[14-1] pid=3686749,user=[unknown],db=[unknown],app=[unknown],client=[local] LOG: connection received: host=[local]
89904-08-2021 02:24:30PM
900postgresql-12.service
901[16-1] pid=3686746,user=postgres,db=odoo13,app=do-stats,client=[local] LOG: disconnection: session time: 0:00:00.218 user=postgres database=odoo13 host=[local]
902