PgAdmin shows statistics of each run of a step of pg_agent (job). The list details the run ID, status, result, start & end & duration. The following is how it looks:
How to get it by query command ?
PgAdmin shows statistics of each run of a step of pg_agent (job). The list details the run ID, status, result, start & end & duration. The following is how it looks:
How to get it by query command ?
pg_agent create a catalog (like a schema) 'pgagent' for each database, you can query the different log table as follow:
To get log of all step runs :
SELECT * FROM pgagent.pga_jobsteplog
Best regards, Tim