2017-04-03 14:30:53 +00:00
|
|
|
package openldap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"gopkg.in/ldap.v2"
|
|
|
|
|
|
|
|
"github.com/influxdata/telegraf"
|
2018-05-04 23:33:23 +00:00
|
|
|
"github.com/influxdata/telegraf/internal/tls"
|
2017-04-03 14:30:53 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Openldap struct {
|
|
|
|
Host string
|
|
|
|
Port int
|
2018-06-07 01:29:59 +00:00
|
|
|
SSL string `toml:"ssl"` // Deprecated in 1.7; use TLS
|
|
|
|
TLS string `toml:"tls"`
|
2017-04-03 14:30:53 +00:00
|
|
|
InsecureSkipVerify bool
|
2018-06-07 01:29:59 +00:00
|
|
|
SSLCA string `toml:"ssl_ca"` // Deprecated in 1.7; use TLSCA
|
|
|
|
TLSCA string `toml:"tls_ca"`
|
2017-04-03 14:30:53 +00:00
|
|
|
BindDn string
|
|
|
|
BindPassword string
|
2018-02-05 20:48:41 +00:00
|
|
|
ReverseMetricNames bool
|
2017-04-03 14:30:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const sampleConfig string = `
|
|
|
|
host = "localhost"
|
|
|
|
port = 389
|
|
|
|
|
|
|
|
# ldaps, starttls, or no encryption. default is an empty string, disabling all encryption.
|
|
|
|
# note that port will likely need to be changed to 636 for ldaps
|
|
|
|
# valid options: "" | "starttls" | "ldaps"
|
2018-06-07 01:29:59 +00:00
|
|
|
tls = ""
|
2017-04-03 14:30:53 +00:00
|
|
|
|
|
|
|
# skip peer certificate verification. Default is false.
|
|
|
|
insecure_skip_verify = false
|
|
|
|
|
|
|
|
# Path to PEM-encoded Root certificate to use to verify server certificate
|
2018-05-04 23:33:23 +00:00
|
|
|
tls_ca = "/etc/ssl/certs.pem"
|
2017-04-03 14:30:53 +00:00
|
|
|
|
|
|
|
# dn/password to bind with. If bind_dn is empty, an anonymous bind is performed.
|
|
|
|
bind_dn = ""
|
|
|
|
bind_password = ""
|
2018-02-05 20:48:41 +00:00
|
|
|
|
|
|
|
# Reverse metric names so they sort more naturally. Recommended.
|
|
|
|
# This defaults to false if unset, but is set to true when generating a new config
|
|
|
|
reverse_metric_names = true
|
2017-04-03 14:30:53 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
var searchBase = "cn=Monitor"
|
2018-02-05 20:48:41 +00:00
|
|
|
var searchFilter = "(|(objectClass=monitorCounterObject)(objectClass=monitorOperation)(objectClass=monitoredObject))"
|
|
|
|
var searchAttrs = []string{"monitorCounter", "monitorOpInitiated", "monitorOpCompleted", "monitoredInfo"}
|
2017-04-03 14:30:53 +00:00
|
|
|
var attrTranslate = map[string]string{
|
|
|
|
"monitorCounter": "",
|
2018-02-05 20:48:41 +00:00
|
|
|
"monitoredInfo": "",
|
2017-04-03 14:30:53 +00:00
|
|
|
"monitorOpInitiated": "_initiated",
|
|
|
|
"monitorOpCompleted": "_completed",
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Openldap) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Openldap) Description() string {
|
|
|
|
return "OpenLDAP cn=Monitor plugin"
|
|
|
|
}
|
|
|
|
|
|
|
|
// return an initialized Openldap
|
|
|
|
func NewOpenldap() *Openldap {
|
|
|
|
return &Openldap{
|
|
|
|
Host: "localhost",
|
|
|
|
Port: 389,
|
2018-06-07 01:29:59 +00:00
|
|
|
SSL: "",
|
|
|
|
TLS: "",
|
2017-04-03 14:30:53 +00:00
|
|
|
InsecureSkipVerify: false,
|
2018-06-07 01:29:59 +00:00
|
|
|
SSLCA: "",
|
|
|
|
TLSCA: "",
|
2017-04-03 14:30:53 +00:00
|
|
|
BindDn: "",
|
|
|
|
BindPassword: "",
|
2018-02-05 20:48:41 +00:00
|
|
|
ReverseMetricNames: false,
|
2017-04-03 14:30:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// gather metrics
|
|
|
|
func (o *Openldap) Gather(acc telegraf.Accumulator) error {
|
2018-06-07 01:29:59 +00:00
|
|
|
if o.TLS == "" {
|
|
|
|
o.TLS = o.SSL
|
|
|
|
}
|
|
|
|
if o.TLSCA == "" {
|
|
|
|
o.TLSCA = o.SSLCA
|
|
|
|
}
|
|
|
|
|
2017-04-03 14:30:53 +00:00
|
|
|
var err error
|
|
|
|
var l *ldap.Conn
|
2018-06-07 01:29:59 +00:00
|
|
|
if o.TLS != "" {
|
2017-04-03 14:30:53 +00:00
|
|
|
// build tls config
|
2018-05-04 23:33:23 +00:00
|
|
|
clientTLSConfig := tls.ClientConfig{
|
2018-06-07 01:29:59 +00:00
|
|
|
TLSCA: o.TLSCA,
|
2018-05-04 23:33:23 +00:00
|
|
|
InsecureSkipVerify: o.InsecureSkipVerify,
|
|
|
|
}
|
|
|
|
tlsConfig, err := clientTLSConfig.TLSConfig()
|
2017-04-03 14:30:53 +00:00
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return nil
|
|
|
|
}
|
2018-06-07 01:29:59 +00:00
|
|
|
if o.TLS == "ldaps" {
|
2017-04-03 14:30:53 +00:00
|
|
|
l, err = ldap.DialTLS("tcp", fmt.Sprintf("%s:%d", o.Host, o.Port), tlsConfig)
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return nil
|
|
|
|
}
|
2018-06-07 01:29:59 +00:00
|
|
|
} else if o.TLS == "starttls" {
|
2017-04-03 14:30:53 +00:00
|
|
|
l, err = ldap.Dial("tcp", fmt.Sprintf("%s:%d", o.Host, o.Port))
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
err = l.StartTLS(tlsConfig)
|
|
|
|
} else {
|
2018-06-07 01:29:59 +00:00
|
|
|
acc.AddError(fmt.Errorf("Invalid setting for ssl: %s", o.TLS))
|
2017-04-03 14:30:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
l, err = ldap.Dial("tcp", fmt.Sprintf("%s:%d", o.Host, o.Port))
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
defer l.Close()
|
|
|
|
|
|
|
|
// username/password bind
|
|
|
|
if o.BindDn != "" && o.BindPassword != "" {
|
|
|
|
err = l.Bind(o.BindDn, o.BindPassword)
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
searchRequest := ldap.NewSearchRequest(
|
|
|
|
searchBase,
|
|
|
|
ldap.ScopeWholeSubtree,
|
|
|
|
ldap.NeverDerefAliases,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
searchFilter,
|
|
|
|
searchAttrs,
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
|
|
|
|
sr, err := l.Search(searchRequest)
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
gatherSearchResult(sr, o, acc)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func gatherSearchResult(sr *ldap.SearchResult, o *Openldap, acc telegraf.Accumulator) {
|
|
|
|
fields := map[string]interface{}{}
|
|
|
|
tags := map[string]string{
|
|
|
|
"server": o.Host,
|
|
|
|
"port": strconv.Itoa(o.Port),
|
|
|
|
}
|
|
|
|
for _, entry := range sr.Entries {
|
2018-02-05 20:48:41 +00:00
|
|
|
metricName := dnToMetric(entry.DN, o)
|
2017-04-03 14:30:53 +00:00
|
|
|
for _, attr := range entry.Attributes {
|
|
|
|
if len(attr.Values[0]) >= 1 {
|
|
|
|
if v, err := strconv.ParseInt(attr.Values[0], 10, 64); err == nil {
|
|
|
|
fields[metricName+attrTranslate[attr.Name]] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
acc.AddFields("openldap", fields, tags)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-02-05 20:48:41 +00:00
|
|
|
// Convert a DN to metric name, eg cn=Read,cn=Waiters,cn=Monitor becomes waiters_read
|
|
|
|
// Assumes the last part of the DN is cn=Monitor and we want to drop it
|
|
|
|
func dnToMetric(dn string, o *Openldap) string {
|
|
|
|
if o.ReverseMetricNames {
|
|
|
|
var metricParts []string
|
|
|
|
|
|
|
|
dn = strings.Trim(dn, " ")
|
|
|
|
dn = strings.Replace(dn, " ", "_", -1)
|
|
|
|
dn = strings.Replace(dn, "cn=", "", -1)
|
|
|
|
dn = strings.ToLower(dn)
|
|
|
|
metricParts = strings.Split(dn, ",")
|
|
|
|
for i, j := 0, len(metricParts)-1; i < j; i, j = i+1, j-1 {
|
|
|
|
metricParts[i], metricParts[j] = metricParts[j], metricParts[i]
|
|
|
|
}
|
|
|
|
return strings.Join(metricParts[1:], "_")
|
|
|
|
} else {
|
|
|
|
metricName := strings.Trim(dn, " ")
|
|
|
|
metricName = strings.Replace(metricName, " ", "_", -1)
|
|
|
|
metricName = strings.ToLower(metricName)
|
|
|
|
metricName = strings.TrimPrefix(metricName, "cn=")
|
|
|
|
metricName = strings.Replace(metricName, strings.ToLower("cn=Monitor"), "", -1)
|
|
|
|
metricName = strings.Replace(metricName, "cn=", "_", -1)
|
|
|
|
return strings.Replace(metricName, ",", "", -1)
|
|
|
|
}
|
2017-04-03 14:30:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
inputs.Add("openldap", func() telegraf.Input { return NewOpenldap() })
|
|
|
|
}
|