'포스트그레스 로그 조회'에 해당되는 글 1건


1. EXTENSION 설치

CREATE EXTENSION file_fdw;

2. FOREIGN SERVER 생성

CREATE SERVER pglog FOREIGN DATA WRAPPER file_fdw;

3. PG LOG FILE 테이블 생성

CREATE FOREIGN TABLE dba_pglog_201901 (
  log_time timestamp(3) with time zone,
  user_name text,
  database_name text,
  process_id integer,
  connection_from text,
  session_id text,
  session_line_num bigint,
  command_tag text,
  session_start_time timestamp with time zone,
  virtual_transaction_id text,
  transaction_id bigint,
  error_severity text,
  sql_state_code text,
  message text,
  detail text,
  hint text,
  internal_query text,
  internal_query_pos integer,
  context text,
  query text,
  query_pos integer,
  location text,
  application_name text
) SERVER pglog
OPTIONS ( filename '/pg_log/pg_201901.csv', format 'csv' );

--PG LOG 경로 넣기

4. PG LOG 조회

select log_time, user_name, database_name, connection_from, command_tag, session_start_time, 

error_severity, sql_state_code,  message, detail, hint, application_name, internal_query,query, query_pos, location 
from dba_pglog_201901
where command_tag != 'idle'
and     database_name = 'TESTDB'
order by 1 desc

https://www.postgresql.org/docs/current/file-fdw.html

블로그 이미지

운명을바꾸는자

IT와 함께 살아가는 삶

,