PostgreSQL loadable plugin
Source
/*
** Zabbix
** Copyright 2001-2024 Zabbix SIA
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
**/
package plugin
import (
"golang.zabbix.com/sdk/conf"
"golang.zabbix.com/sdk/plugin"
)
// Session struct holds individual options for PostgreSQL connection for each session.
type Session struct {
// URI is a connection string consisting of a network scheme, a host address and a port or a path to a Unix-socket.
URI string `conf:"name=Uri,optional"`
// User of PostgreSQL server.
User string `conf:"optional"`
// Password to send to protected PostgreSQL server.
Password string `conf:"optional"`
// Database of PostgreSQL server.
Database string `conf:"optional"`
// Connection type of PostgreSQL server.
TLSConnect string `conf:"name=TLSConnect,optional"`
// Certificate Authority filepath for PostgreSQL server.
TLSCAFile string `conf:"name=TLSCAFile,optional"`
// Certificate filepath for PostgreSQL server.
TLSCertFile string `conf:"name=TLSCertFile,optional"`
// Key filepath for PostgreSQL server.
TLSKeyFile string `conf:"name=TLSKeyFile,optional"`
// CacheMode for PostgreSQL server.
CacheMode string `conf:"name=CacheMode,optional"`
}
// PluginOptions are options for PostgreSQL connection.
type PluginOptions struct {
plugin.SystemOptions `conf:"optional,name=System"`
// Timeout is the maximum time in seconds for waiting when a connection has to be established.
// Default value equals to the global agent timeout.
Timeout int `conf:"optional,range=1:30"`
// CallTimeout is the maximum time in seconds for waiting when a request has to be done.