** 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/>.
"golang.zabbix.com/sdk/errs"
"golang.zabbix.com/sdk/zbxerr"
func archiveHandler(ctx context.Context, conn OraClient, params map[string]string, _ ...string) (interface{}, error) {
query, args := getArchiveQuery(params["Destination"])
row, err := conn.QueryRow(ctx, query, args...)
return nil, errs.WrapConst(err, zbxerr.ErrorCannotFetchData)
err = row.Scan(&archiveLogs)
return nil, errs.WrapConst(err, zbxerr.ErrorCannotFetchData)
func getArchiveQuery(destName string) (string, []any) {
JSON_OBJECT(d.DEST_NAME VALUE
'status' VALUE DECODE(d.STATUS, 'VALID', 3, 'DEFERRED', 2, 'ERROR', 1, 0),
'log_sequence' VALUE d.LOG_SEQUENCE,
'error' VALUE NVL(TO_CHAR(d.ERROR), ' ')
AND db.LOG_MODE = 'ARCHIVELOG'`