2015-05-18 17:46:44 +00:00
|
|
|
package postgresql
|
|
|
|
|
|
|
|
import (
|
2015-09-13 08:30:38 +00:00
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
2015-05-18 17:46:44 +00:00
|
|
|
|
2017-04-05 00:37:44 +00:00
|
|
|
// register in driver.
|
|
|
|
_ "github.com/jackc/pgx/stdlib"
|
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2018-01-06 00:03:09 +00:00
|
|
|
"github.com/influxdata/telegraf/internal"
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
2015-05-18 17:46:44 +00:00
|
|
|
)
|
|
|
|
|
2015-12-19 22:58:57 +00:00
|
|
|
type Postgresql struct {
|
2018-01-06 00:03:09 +00:00
|
|
|
Service
|
2016-03-14 09:32:07 +00:00
|
|
|
Databases []string
|
2016-09-07 08:39:55 +00:00
|
|
|
IgnoredDatabases []string
|
2015-05-18 17:46:44 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 20:36:36 +00:00
|
|
|
var ignoredColumns = map[string]bool{"stats_reset": true}
|
2015-09-14 00:11:49 +00:00
|
|
|
|
2015-05-18 22:10:11 +00:00
|
|
|
var sampleConfig = `
|
2016-02-18 21:26:51 +00:00
|
|
|
## specify address via a url matching:
|
2016-03-31 23:50:24 +00:00
|
|
|
## postgres://[pqgotest[:password]]@localhost[/dbname]\
|
|
|
|
## ?sslmode=[disable|verify-ca|verify-full]
|
2016-02-18 21:26:51 +00:00
|
|
|
## or a simple string:
|
|
|
|
## host=localhost user=pqotest password=... sslmode=... dbname=app_production
|
|
|
|
##
|
|
|
|
## All connection parameters are optional.
|
|
|
|
##
|
|
|
|
## Without the dbname parameter, the driver will default to a database
|
|
|
|
## with the same name as the user. This dbname is just for instantiating a
|
|
|
|
## connection with the server and doesn't restrict the databases we are trying
|
|
|
|
## to grab metrics for.
|
|
|
|
##
|
2015-12-19 00:09:01 +00:00
|
|
|
address = "host=localhost user=postgres sslmode=disable"
|
2018-01-06 00:03:09 +00:00
|
|
|
## A custom name for the database that will be used as the "server" tag in the
|
|
|
|
## measurement output. If not specified, a default one generated from
|
|
|
|
## the connection address is used.
|
|
|
|
# outputaddress = "db01"
|
|
|
|
|
|
|
|
## connection configuration.
|
|
|
|
## maxlifetime - specify the maximum lifetime of a connection.
|
|
|
|
## default is forever (0s)
|
|
|
|
max_lifetime = "0s"
|
2015-10-15 21:53:29 +00:00
|
|
|
|
2016-09-07 08:39:55 +00:00
|
|
|
## A list of databases to explicitly ignore. If not specified, metrics for all
|
|
|
|
## databases are gathered. Do NOT use with the 'databases' option.
|
|
|
|
# ignored_databases = ["postgres", "template0", "template1"]
|
|
|
|
|
2016-02-18 21:26:51 +00:00
|
|
|
## A list of databases to pull metrics about. If not specified, metrics for all
|
2017-03-09 11:19:03 +00:00
|
|
|
## databases are gathered. Do NOT use with the 'ignored_databases' option.
|
2015-12-19 22:58:57 +00:00
|
|
|
# databases = ["app_production", "testing"]
|
2015-05-18 22:10:11 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
func (p *Postgresql) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Postgresql) Description() string {
|
|
|
|
return "Read metrics from one or many postgresql servers"
|
|
|
|
}
|
|
|
|
|
2015-09-14 00:11:49 +00:00
|
|
|
func (p *Postgresql) IgnoredColumns() map[string]bool {
|
|
|
|
return ignoredColumns
|
|
|
|
}
|
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
func (p *Postgresql) Gather(acc telegraf.Accumulator) error {
|
2017-04-05 00:37:44 +00:00
|
|
|
var (
|
2018-01-06 00:03:09 +00:00
|
|
|
err error
|
|
|
|
query string
|
|
|
|
columns []string
|
2017-04-05 00:37:44 +00:00
|
|
|
)
|
2015-09-13 08:30:38 +00:00
|
|
|
|
2016-09-07 08:39:55 +00:00
|
|
|
if len(p.Databases) == 0 && len(p.IgnoredDatabases) == 0 {
|
2015-09-13 08:30:38 +00:00
|
|
|
query = `SELECT * FROM pg_stat_database`
|
2016-09-07 08:39:55 +00:00
|
|
|
} else if len(p.IgnoredDatabases) != 0 {
|
|
|
|
query = fmt.Sprintf(`SELECT * FROM pg_stat_database WHERE datname NOT IN ('%s')`,
|
|
|
|
strings.Join(p.IgnoredDatabases, "','"))
|
2015-09-13 08:30:38 +00:00
|
|
|
} else {
|
2015-12-19 22:58:57 +00:00
|
|
|
query = fmt.Sprintf(`SELECT * FROM pg_stat_database WHERE datname IN ('%s')`,
|
|
|
|
strings.Join(p.Databases, "','"))
|
2015-09-13 08:30:38 +00:00
|
|
|
}
|
2015-05-18 17:46:44 +00:00
|
|
|
|
2018-01-06 00:03:09 +00:00
|
|
|
rows, err := p.DB.Query(query)
|
2015-09-13 08:30:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-18 17:46:44 +00:00
|
|
|
|
2015-09-13 08:30:38 +00:00
|
|
|
defer rows.Close()
|
2015-05-18 17:46:44 +00:00
|
|
|
|
2015-09-13 16:51:50 +00:00
|
|
|
// grab the column information from the result
|
2018-01-06 00:03:09 +00:00
|
|
|
if columns, err = rows.Columns(); err != nil {
|
2015-09-13 08:30:38 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-05-18 17:46:44 +00:00
|
|
|
|
2015-09-13 08:30:38 +00:00
|
|
|
for rows.Next() {
|
2018-01-06 00:03:09 +00:00
|
|
|
err = p.accRow(rows, acc, columns)
|
2015-09-13 08:30:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-05-18 17:46:44 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-05 00:37:44 +00:00
|
|
|
|
2016-02-10 09:40:48 +00:00
|
|
|
query = `SELECT * FROM pg_stat_bgwriter`
|
|
|
|
|
2018-01-06 00:03:09 +00:00
|
|
|
bg_writer_row, err := p.DB.Query(query)
|
2016-02-10 09:40:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer bg_writer_row.Close()
|
|
|
|
|
|
|
|
// grab the column information from the result
|
2018-01-06 00:03:09 +00:00
|
|
|
if columns, err = bg_writer_row.Columns(); err != nil {
|
2016-02-10 09:40:48 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-05-18 17:46:44 +00:00
|
|
|
|
2016-02-10 09:40:48 +00:00
|
|
|
for bg_writer_row.Next() {
|
2018-01-06 00:03:09 +00:00
|
|
|
err = p.accRow(bg_writer_row, acc, columns)
|
2016-02-10 09:40:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2018-01-06 00:03:09 +00:00
|
|
|
|
2016-02-10 09:40:48 +00:00
|
|
|
return bg_writer_row.Err()
|
2015-05-18 17:46:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type scanner interface {
|
|
|
|
Scan(dest ...interface{}) error
|
|
|
|
}
|
|
|
|
|
2018-01-06 00:03:09 +00:00
|
|
|
func (p *Postgresql) accRow(row scanner, acc telegraf.Accumulator, columns []string) error {
|
2015-09-13 08:30:38 +00:00
|
|
|
var columnVars []interface{}
|
|
|
|
var dbname bytes.Buffer
|
|
|
|
|
2015-09-13 16:51:50 +00:00
|
|
|
// this is where we'll store the column name with its *interface{}
|
2015-09-13 08:30:38 +00:00
|
|
|
columnMap := make(map[string]*interface{})
|
|
|
|
|
2018-01-06 00:03:09 +00:00
|
|
|
for _, column := range columns {
|
2015-09-13 08:30:38 +00:00
|
|
|
columnMap[column] = new(interface{})
|
|
|
|
}
|
|
|
|
|
2015-09-13 16:51:50 +00:00
|
|
|
// populate the array of interface{} with the pointers in the right order
|
2015-09-13 08:30:38 +00:00
|
|
|
for i := 0; i < len(columnMap); i++ {
|
2018-01-06 00:03:09 +00:00
|
|
|
columnVars = append(columnVars, columnMap[columns[i]])
|
2015-09-13 08:30:38 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 16:51:50 +00:00
|
|
|
// deconstruct array of variables and send to Scan
|
2015-09-13 08:30:38 +00:00
|
|
|
err := row.Scan(columnVars...)
|
2015-05-18 17:46:44 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-02-10 09:40:48 +00:00
|
|
|
if columnMap["datname"] != nil {
|
|
|
|
// extract the database name from the column map
|
2017-01-24 20:36:36 +00:00
|
|
|
dbname.WriteString((*columnMap["datname"]).(string))
|
2016-02-10 09:40:48 +00:00
|
|
|
} else {
|
|
|
|
dbname.WriteString("postgres")
|
2015-09-13 08:30:38 +00:00
|
|
|
}
|
|
|
|
|
2016-03-14 09:32:07 +00:00
|
|
|
var tagAddress string
|
|
|
|
tagAddress, err = p.SanitizedAddress()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
tags := map[string]string{"server": tagAddress, "db": dbname.String()}
|
2015-09-13 08:30:38 +00:00
|
|
|
|
2015-12-19 00:09:01 +00:00
|
|
|
fields := make(map[string]interface{})
|
2015-09-13 08:30:38 +00:00
|
|
|
for col, val := range columnMap {
|
2015-09-14 00:11:49 +00:00
|
|
|
_, ignore := ignoredColumns[col]
|
|
|
|
if !ignore {
|
2015-12-19 00:09:01 +00:00
|
|
|
fields[col] = *val
|
2015-09-13 08:30:38 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-19 00:09:01 +00:00
|
|
|
acc.AddFields("postgresql", fields, tags)
|
2015-05-18 17:46:44 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
inputs.Add("postgresql", func() telegraf.Input {
|
2018-01-06 00:03:09 +00:00
|
|
|
return &Postgresql{
|
|
|
|
Service: Service{
|
|
|
|
MaxIdle: 1,
|
|
|
|
MaxOpen: 1,
|
|
|
|
MaxLifetime: internal.Duration{
|
|
|
|
Duration: 0,
|
|
|
|
},
|
2018-08-01 22:44:10 +00:00
|
|
|
IsPgBouncer: false,
|
2018-01-06 00:03:09 +00:00
|
|
|
},
|
|
|
|
}
|
2015-05-18 17:46:44 +00:00
|
|
|
})
|
|
|
|
}
|