mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
49fc737cd0
Suggested by Stephen Frost, Brian Faherty.
31 lines
864 B
PL/PgSQL
31 lines
864 B
PL/PgSQL
-- An example of monitoring pgBackRest from within PostgresSQL
|
|
--
|
|
-- Use copy to export data from the pgBackRest info command into the jsonb
|
|
-- type so it can be queried directly by PostgresSQL.
|
|
|
|
-- Create monitor schema
|
|
create schema monitor;
|
|
|
|
-- Get pgBackRest info in JSON format
|
|
create function monitor.pgbackrest_info()
|
|
returns jsonb AS $$
|
|
declare
|
|
data jsonb;
|
|
begin
|
|
-- Create a temp table to hold the JSON data
|
|
create temp table temp_pgbackrest_data (data jsonb);
|
|
|
|
-- Copy data into the table directory from the pgBackRest into command
|
|
copy temp_pgbackrest_data (data)
|
|
from program
|
|
'pgbackrest --output=json info | tr ''\n'' '' ''' (format text);
|
|
|
|
select temp_pgbackrest_data.data
|
|
into data
|
|
from temp_pgbackrest_data;
|
|
|
|
drop table temp_pgbackrest_data;
|
|
|
|
return data;
|
|
end $$ language plpgsql;
|