Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
influxdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
influxdb
Commits
6c14f573
Commit
6c14f573
authored
Jan 24, 2018
by
Jonas von Andrian
Committed by
k8s-ci-robot
Jan 24, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Influxdb: Support graphite templates (#3333)
* Influxdb: Support graphite templates * Fix comment indentation * Step up version
parent
02aa61db
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
Chart.yaml
stable/influxdb/Chart.yaml
+1
-1
config.yaml
stable/influxdb/templates/config.yaml
+8
-1
values.yaml
stable/influxdb/values.yaml
+3
-0
No files found.
stable/influxdb/Chart.yaml
View file @
6c14f573
name
:
influxdb
name
:
influxdb
version
:
0.8.
0
version
:
0.8.
1
description
:
Scalable datastore for metrics, events, and real-time analytics.
description
:
Scalable datastore for metrics, events, and real-time analytics.
keywords
:
keywords
:
-
influxdb
-
influxdb
...
...
stable/influxdb/templates/config.yaml
View file @
6c14f573
...
@@ -84,7 +84,7 @@ data:
...
@@ -84,7 +84,7 @@ data:
unix-socket-enabled = {{ .Values.config.http.unix_socket_enabled }}
unix-socket-enabled = {{ .Values.config.http.unix_socket_enabled }}
bind-socket = "{{ .Values.config.http.bind_socket }}"
bind-socket = "{{ .Values.config.http.bind_socket }}"
# TODO: allow multiple graphite listeners
with templates
# TODO: allow multiple graphite listeners
[[graphite]]
[[graphite]]
enabled = {{ .Values.config.graphite.enabled }}
enabled = {{ .Values.config.graphite.enabled }}
...
@@ -98,6 +98,13 @@ data:
...
@@ -98,6 +98,13 @@ data:
consistency-level = "{{ .Values.config.graphite.consistency_level }}"
consistency-level = "{{ .Values.config.graphite.consistency_level }}"
separator = "{{ .Values.config.graphite.separator }}"
separator = "{{ .Values.config.graphite.separator }}"
udp-read-buffer = {{ .Values.config.graphite.udp_read_buffer | int64 }}
udp-read-buffer = {{ .Values.config.graphite.udp_read_buffer | int64 }}
{{- if .Values.config.graphite.templates }}
templates = [
{{- range .Values.config.graphite.templates }}
{{ quote . }},
{{- end }}
]
{{- end }}
# TODO: allow multiple collectd listeners with templates
# TODO: allow multiple collectd listeners with templates
...
...
stable/influxdb/values.yaml
View file @
6c14f573
...
@@ -167,6 +167,9 @@ config:
...
@@ -167,6 +167,9 @@ config:
consistency_level
:
one
consistency_level
:
one
separator
:
.
separator
:
.
udp_read_buffer
:
0
udp_read_buffer
:
0
# Uncomment to define graphite templates
# templates:
# - "graphite.metric.*.*.* measurement.run"
collectd
:
collectd
:
enabled
:
false
enabled
:
false
bind_address
:
25826
bind_address
:
25826
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment