Source
xxxxxxxxxx
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
package oracle
import (
"context"
"golang.zabbix.com/sdk/zbxerr"
)
func fraHandler(ctx context.Context, conn OraClient, params map[string]string, _ ...string) (interface{}, error) {
var FRA string
row, err := conn.QueryRow(ctx, `
SELECT
JSON_OBJECTAGG(v.METRIC VALUE v.VALUE)
FROM
(
SELECT
METRIC,
SUM(VALUE) AS VALUE
FROM
(
SELECT
'space_limit' AS METRIC,
SPACE_LIMIT AS VALUE
FROM
V$RECOVERY_FILE_DEST
UNION
SELECT
'space_used',
SPACE_USED AS VALUE
FROM
V$RECOVERY_FILE_DEST
UNION
SELECT
'space_reclaimable',
SPACE_RECLAIMABLE AS VALUE
FROM
V$RECOVERY_FILE_DEST
UNION
SELECT
'number_of_files',
NUMBER_OF_FILES AS VALUE
FROM
V$RECOVERY_FILE_DEST
UNION
SELECT
'usable_pct',
DECODE(SPACE_LIMIT, 0, 0, (100 - (100 * (SPACE_USED - SPACE_RECLAIMABLE) / SPACE_LIMIT))) AS VALUE
FROM
V$RECOVERY_FILE_DEST
UNION
SELECT
'restore_point',
COUNT(*) AS VALUE
FROM
V$RESTORE_POINT
UNION
SELECT
DISTINCT *
FROM
TABLE(sys.ODCIVARCHAR2LIST('space_limit', 'space_used', 'space_reclaimable', 'number_of_files', 'usable_pct')),
TABLE(sys.ODCINUMBERLIST(0, 0, 0, 0, 0))
)
GROUP BY
METRIC