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
abdff033
"lib/lic.ml" did not exist on "3d24ea7e532cf931f08eb1cea24a65a23eaf1616"
Unverified
Commit
abdff033
authored
7 years ago
by
Daniel Nelson
Browse files
Options
Downloads
Patches
Plain Diff
Note options that only work with influxdb HTTP
parent
535e9e9a
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/outputs/influxdb/README.md
+5
-3
5 additions, 3 deletions
plugins/outputs/influxdb/README.md
plugins/outputs/influxdb/influxdb.go
+4
-3
4 additions, 3 deletions
plugins/outputs/influxdb/influxdb.go
with
9 additions
and
6 deletions
plugins/outputs/influxdb/README.md
+
5
−
3
View file @
abdff033
...
@@ -11,6 +11,7 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
...
@@ -11,6 +11,7 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
##
##
## Multiple URLs can be specified for a single cluster, only ONE of the
## Multiple URLs can be specified for a single cluster, only ONE of the
## urls will be written to each interval.
## urls will be written to each interval.
# urls = ["unix:///var/run/influxdb.sock"]
# urls = ["udp://127.0.0.1:8089"]
# urls = ["udp://127.0.0.1:8089"]
# urls = ["http://127.0.0.1:8086"]
# urls = ["http://127.0.0.1:8086"]
...
@@ -23,10 +24,11 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
...
@@ -23,10 +24,11 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
# skip_database_creation = false
# skip_database_creation = false
## Name of existing retention policy to write to. Empty string writes to
## Name of existing retention policy to write to. Empty string writes to
## the default retention policy.
## the default retention policy.
Only takes effect when using HTTP.
# retention_policy = ""
# retention_policy = ""
## Write consistency (clusters only), can be: "any", "one", "quorum", "all"
## Write consistency (clusters only), can be: "any", "one", "quorum", "all".
## Only takes effect when using HTTP.
# write_consistency = "any"
# write_consistency = "any"
## Timeout for HTTP messages.
## Timeout for HTTP messages.
...
@@ -42,7 +44,7 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
...
@@ -42,7 +44,7 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
## UDP payload size is the maximum packet size to send.
## UDP payload size is the maximum packet size to send.
# udp_payload = 512
# udp_payload = 512
## Optional SSL Config
## Optional SSL Config
for use on HTTP connections.
# ssl_ca = "/etc/telegraf/ca.pem"
# ssl_ca = "/etc/telegraf/ca.pem"
# ssl_cert = "/etc/telegraf/cert.pem"
# ssl_cert = "/etc/telegraf/cert.pem"
# ssl_key = "/etc/telegraf/key.pem"
# ssl_key = "/etc/telegraf/key.pem"
...
...
This diff is collapsed.
Click to expand it.
plugins/outputs/influxdb/influxdb.go
+
4
−
3
View file @
abdff033
...
@@ -84,10 +84,11 @@ var sampleConfig = `
...
@@ -84,10 +84,11 @@ var sampleConfig = `
# skip_database_creation = false
# skip_database_creation = false
## Name of existing retention policy to write to. Empty string writes to
## Name of existing retention policy to write to. Empty string writes to
## the default retention policy.
## the default retention policy.
Only takes effect when using HTTP.
# retention_policy = ""
# retention_policy = ""
## Write consistency (clusters only), can be: "any", "one", "quorum", "all"
## Write consistency (clusters only), can be: "any", "one", "quorum", "all".
## Only takes effect when using HTTP.
# write_consistency = "any"
# write_consistency = "any"
## Timeout for HTTP messages.
## Timeout for HTTP messages.
...
@@ -103,7 +104,7 @@ var sampleConfig = `
...
@@ -103,7 +104,7 @@ var sampleConfig = `
## UDP payload size is the maximum packet size to send.
## UDP payload size is the maximum packet size to send.
# udp_payload = 512
# udp_payload = 512
## Optional SSL Config
## Optional SSL Config
for use on HTTP connections.
# ssl_ca = "/etc/telegraf/ca.pem"
# ssl_ca = "/etc/telegraf/ca.pem"
# ssl_cert = "/etc/telegraf/cert.pem"
# ssl_cert = "/etc/telegraf/cert.pem"
# ssl_key = "/etc/telegraf/key.pem"
# ssl_key = "/etc/telegraf/key.pem"
...
...
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