Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
telegraf-nftables
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Due to inactivity, this project is scheduled to be deleted on 2035-04-24.
Why is this scheduled?
Show more breadcrumbs
vqgroup
telegraf-nftables
Commits
dbd02ebb
Unverified
Commit
dbd02ebb
authored
6 years ago
by
Daniel Nelson
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add support for TLS and username/password auth to aerospike input (#4183)
parent
fbf09409
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugins/inputs/aerospike/README.md
+21
-0
21 additions, 0 deletions
plugins/inputs/aerospike/README.md
plugins/inputs/aerospike/aerospike.go
+41
-2
41 additions, 2 deletions
plugins/inputs/aerospike/aerospike.go
with
62 additions
and
2 deletions
plugins/inputs/aerospike/README.md
+
21
−
0
View file @
dbd02ebb
...
...
@@ -9,6 +9,27 @@ The metric names, to make it less complicated in querying, have replaced all `-`
All metrics are attempted to be cast to integers, then booleans, then strings.
### Configuration:
```
toml
# Read stats from aerospike server(s)
[[inputs.aerospike]]
## Aerospike servers to connect to (with port)
## This plugin will query all namespaces the aerospike
## server has configured and get stats for them.
servers
=
[
"localhost:3000"
]
# username = "telegraf"
# password = "pa$$word"
## Optional TLS Config
# enable_tls = false
# tls_ca = "/etc/telegraf/ca.pem"
# tls_cert = "/etc/telegraf/cert.pem"
# tls_key = "/etc/telegraf/key.pem"
## If false, skip chain & host verification
# insecure_skip_verify = true
```
### Measurements:
The aerospike metrics are under two measurement names:
...
...
This diff is collapsed.
Click to expand it.
plugins/inputs/aerospike/aerospike.go
+
41
−
2
View file @
dbd02ebb
package
aerospike
import
(
"crypto/tls"
"errors"
"log"
"net"
...
...
@@ -10,13 +11,24 @@ import (
"time"
"github.com/influxdata/telegraf"
tlsint
"github.com/influxdata/telegraf/internal/tls"
"github.com/influxdata/telegraf/plugins/inputs"
as
"github.com/aerospike/aerospike-client-go"
)
type
Aerospike
struct
{
Servers
[]
string
Servers
[]
string
`toml:"servers"`
Username
string
`toml:"username"`
Password
string
`toml:"password"`
EnableTLS
bool
`toml:"enable_tls"`
EnableSSL
bool
`toml:"enable_ssl"`
// deprecated in 1.7; use enable_tls
tlsint
.
ClientConfig
initialized
bool
tlsConfig
*
tls
.
Config
}
var
sampleConfig
=
`
...
...
@@ -24,6 +36,17 @@ var sampleConfig = `
## This plugin will query all namespaces the aerospike
## server has configured and get stats for them.
servers = ["localhost:3000"]
# username = "telegraf"
# password = "pa$$word"
## Optional TLS Config
# enable_tls = false
# tls_ca = "/etc/telegraf/ca.pem"
# tls_cert = "/etc/telegraf/cert.pem"
# tls_key = "/etc/telegraf/key.pem"
## If false, skip chain & host verification
# insecure_skip_verify = true
`
func
(
a
*
Aerospike
)
SampleConfig
()
string
{
...
...
@@ -35,6 +58,18 @@ func (a *Aerospike) Description() string {
}
func
(
a
*
Aerospike
)
Gather
(
acc
telegraf
.
Accumulator
)
error
{
if
!
a
.
initialized
{
tlsConfig
,
err
:=
a
.
ClientConfig
.
TLSConfig
()
if
err
!=
nil
{
return
err
}
if
tlsConfig
==
nil
&&
(
a
.
EnableTLS
||
a
.
EnableSSL
)
{
tlsConfig
=
&
tls
.
Config
{}
}
a
.
tlsConfig
=
tlsConfig
a
.
initialized
=
true
}
if
len
(
a
.
Servers
)
==
0
{
return
a
.
gatherServer
(
"127.0.0.1:3000"
,
acc
)
}
...
...
@@ -63,7 +98,11 @@ func (a *Aerospike) gatherServer(hostport string, acc telegraf.Accumulator) erro
iport
=
3000
}
c
,
err
:=
as
.
NewClient
(
host
,
iport
)
policy
:=
as
.
NewClientPolicy
()
policy
.
User
=
a
.
Username
policy
.
Password
=
a
.
Password
policy
.
TlsConfig
=
a
.
tlsConfig
c
,
err
:=
as
.
NewClientWithPolicy
(
policy
,
host
,
iport
)
if
err
!=
nil
{
return
err
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment