fluent-plugin-kubernetes-metrics 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.circleci/build_and_push.sh +11 -0
- data/.circleci/build_and_push_to_dockerhub.sh +12 -0
- data/.circleci/build_and_push_to_github_release.sh +11 -0
- data/.circleci/check_version_trigger_release.sh +26 -0
- data/.circleci/config.yml +133 -0
- data/.circleci/install_dep.sh +5 -0
- data/.circleci/push_gem.sh +8 -0
- data/.circleci/push_gems_to_rubygems.sh +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
- data/.github/ISSUE_TEMPLATE/enhancement_request.md +14 -0
- data/.github/ISSUE_TEMPLATE/failing_test.md +18 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +23 -0
- data/.gitignore +5 -0
- data/CLA.md +18 -0
- data/CONTRIBUTING.md +20 -0
- data/CONTRIBUTORS.md +15 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +103 -0
- data/LICENSE +268 -0
- data/README.md +126 -0
- data/Rakefile +29 -0
- data/VERSION +1 -0
- data/docker/CONTRIBUTING.md +20 -0
- data/docker/Dockerfile +52 -0
- data/docker/FLUENTD_HEC_GEM_VERSION +1 -0
- data/docker/LICENSE +201 -0
- data/docker/README.md +4 -0
- data/docker/entrypoint.sh +27 -0
- data/examples/daemonset.yaml +114 -0
- data/fluent-plugin-kubernetes-metrics.gemspec +29 -0
- data/lib/fluent/plugin/in_kubernetes_metrics.rb +713 -0
- data/metrics-information.md +269 -0
- data/test/api.json +8 -0
- data/test/helper.rb +151 -0
- data/test/metrics_cadvisor.txt +1715 -0
- data/test/plugin/test_in_kubernetes_metrics.rb +462 -0
- data/test/plugin/test_missing_timestamps.rb +44 -0
- data/test/stats.json +3536 -0
- data/test/unit.json +199 -0
- data/test/unit_without_time.json +178 -0
- data/test/v1.json +488 -0
- metadata +220 -0
data/docker/Dockerfile
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
FROM alpine:3.8
|
2
|
+
|
3
|
+
LABEL maintainer="Splunk Inc. <DataEdge@splunk.com>"
|
4
|
+
LABEL Description="Splunk Connect for Kubernetes docker image" Vendor="Splunk Inc."
|
5
|
+
|
6
|
+
ARG VERSION
|
7
|
+
ENV VERSION=${VERSION}
|
8
|
+
|
9
|
+
ENV DUMB_INIT_VERSION=1.2.1
|
10
|
+
ENV SU_EXEC_VERSION=0.2
|
11
|
+
|
12
|
+
COPY *.gem /tmp/
|
13
|
+
|
14
|
+
ARG DEBIAN_FRONTEND=noninteractive
|
15
|
+
# Do not split this into multiple RUN!
|
16
|
+
# Docker creates a layer for every RUN-Statement
|
17
|
+
# therefore an 'apk delete' has no effect
|
18
|
+
RUN apk update \
|
19
|
+
&& apk upgrade \
|
20
|
+
&& apk add --no-cache \
|
21
|
+
ca-certificates \
|
22
|
+
&& update-ca-certificates \
|
23
|
+
&& apk add --no-cache \
|
24
|
+
ruby ruby-irb ruby-etc ruby-webrick ruby-json \
|
25
|
+
su-exec==${SU_EXEC_VERSION}-r0 \
|
26
|
+
dumb-init==${DUMB_INIT_VERSION}-r0 \
|
27
|
+
&& apk add --no-cache --virtual .build-deps \
|
28
|
+
build-base \
|
29
|
+
ruby-dev wget gnupg \
|
30
|
+
&& echo 'gem: --no-document' >> /etc/gemrc \
|
31
|
+
&& gem install -N \
|
32
|
+
fluentd:1.4.0 \
|
33
|
+
fluent-plugin-record-modifier:2.0.1 \
|
34
|
+
fluent-plugin-splunk-hec:${VERSION} \
|
35
|
+
oj:3.7.9 \
|
36
|
+
multi_json:1.13.1 \
|
37
|
+
bigdecimal:1.4.3 \
|
38
|
+
kubeclient:4.3.0 \
|
39
|
+
&& gem install -N /tmp/*.gem \
|
40
|
+
&& apk del .build-deps \
|
41
|
+
&& rm -rf /var/cache/apk/* \
|
42
|
+
&& rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem
|
43
|
+
|
44
|
+
ENV LD_PRELOAD="" \
|
45
|
+
FLUENTD_CONF="fluent.conf" \
|
46
|
+
FLUENTD_OPT="" \
|
47
|
+
DUMB_INIT_SETSID=0
|
48
|
+
|
49
|
+
COPY entrypoint.sh /bin/entrypoint.sh
|
50
|
+
ENTRYPOINT ["/bin/entrypoint.sh"]
|
51
|
+
|
52
|
+
CMD exec fluentd -c /fluentd/etc/${FLUENTD_CONF} -p /fluentd/plugins $FLUENTD_OPT
|
@@ -0,0 +1 @@
|
|
1
|
+
1.1.2
|
data/docker/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright 2018 Splunk Inc.
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/docker/README.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/dumb-init /bin/sh
|
2
|
+
|
3
|
+
uid=${FLUENT_UID:-1000}
|
4
|
+
|
5
|
+
# check if a old fluent user exists and delete it
|
6
|
+
cat /etc/passwd | grep fluent
|
7
|
+
if [ $? -eq 0 ]; then
|
8
|
+
deluser fluent
|
9
|
+
fi
|
10
|
+
|
11
|
+
# (re)add the fluent user with $FLUENT_UID
|
12
|
+
adduser -D -g '' -u ${uid} -h /home/fluent fluent
|
13
|
+
|
14
|
+
#source vars if file exists
|
15
|
+
DEFAULT=/etc/default/fluentd
|
16
|
+
|
17
|
+
if [ -r $DEFAULT ]; then
|
18
|
+
set -o allexport
|
19
|
+
source $DEFAULT
|
20
|
+
set +o allexport
|
21
|
+
fi
|
22
|
+
|
23
|
+
# chown home and data folder
|
24
|
+
chown -R fluent /home/fluent
|
25
|
+
chown -R fluent /fluentd
|
26
|
+
|
27
|
+
exec su-exec fluent "$@"
|
@@ -0,0 +1,114 @@
|
|
1
|
+
apiVersion: v1
|
2
|
+
kind: ConfigMap
|
3
|
+
metadata:
|
4
|
+
name: fluentd-metrics-conf
|
5
|
+
labels:
|
6
|
+
app: metrics-to-splunk
|
7
|
+
data:
|
8
|
+
fluent.conf: |
|
9
|
+
<system>
|
10
|
+
log_level debug
|
11
|
+
</system>
|
12
|
+
|
13
|
+
<source>
|
14
|
+
@type kubernetes_metrics
|
15
|
+
tag kube.*
|
16
|
+
insecure_ssl true
|
17
|
+
node_name "#{ENV['MY_NODE_NAME']}"
|
18
|
+
</source>
|
19
|
+
|
20
|
+
<filter kube.**>
|
21
|
+
@type record_modifier
|
22
|
+
<record>
|
23
|
+
metric_name ${tag}
|
24
|
+
</record>
|
25
|
+
</filter>
|
26
|
+
|
27
|
+
<filter kube.node.**>
|
28
|
+
@type record_modifier
|
29
|
+
<record>
|
30
|
+
source ${record['node']}
|
31
|
+
</record>
|
32
|
+
</filter>
|
33
|
+
|
34
|
+
<filter kube.pod.**>
|
35
|
+
@type record_modifier
|
36
|
+
<record>
|
37
|
+
source ${record['node']}/${record['pod-name']}
|
38
|
+
</record>
|
39
|
+
</filter>
|
40
|
+
|
41
|
+
<filter kube.sys-container.**>
|
42
|
+
@type record_modifier
|
43
|
+
<record>
|
44
|
+
source ${record['node']}/${record['pod-name']}/${record['name']}
|
45
|
+
</record>
|
46
|
+
</filter>
|
47
|
+
|
48
|
+
<filter kube.container.**>
|
49
|
+
@type record_modifier
|
50
|
+
<record>
|
51
|
+
source ${record['node']}/${record['pod-name']}/${record['container-name']}
|
52
|
+
</record>
|
53
|
+
</filter>
|
54
|
+
|
55
|
+
<match kube.**>
|
56
|
+
@type splunk_hec
|
57
|
+
protocol https
|
58
|
+
hec_host my.splunk.host
|
59
|
+
hec_port 8088
|
60
|
+
hec_token my.hec.token
|
61
|
+
data_type metric
|
62
|
+
metric_name_key metric_name
|
63
|
+
metric_value_key value
|
64
|
+
host "#{ENV['MY_NODE_NAME']}"
|
65
|
+
source_key source
|
66
|
+
insecure_ssl true
|
67
|
+
interval 15s
|
68
|
+
<buffer>
|
69
|
+
@type memory
|
70
|
+
total_limit_size 100m
|
71
|
+
chunk_limit_size 10m
|
72
|
+
flush_interval 15s
|
73
|
+
flush_thread_count 1
|
74
|
+
overflow_action block
|
75
|
+
retry_max_times 3
|
76
|
+
</buffer>
|
77
|
+
</match>
|
78
|
+
|
79
|
+
---
|
80
|
+
apiVersion: extensions/v1beta1
|
81
|
+
kind: DaemonSet
|
82
|
+
metadata:
|
83
|
+
name: metrics-to-splunk
|
84
|
+
labels:
|
85
|
+
app: metrics-to-splunk
|
86
|
+
engine: fluentd
|
87
|
+
spec:
|
88
|
+
template:
|
89
|
+
metadata:
|
90
|
+
labels:
|
91
|
+
app: metrics-to-splunk
|
92
|
+
engine: fluentd
|
93
|
+
annotations:
|
94
|
+
spec:
|
95
|
+
containers:
|
96
|
+
- name: fluentd
|
97
|
+
image: splunk/connect-for-kubernetes:v1.0.0-beta
|
98
|
+
imagePullPolicy: Never
|
99
|
+
env:
|
100
|
+
- name: MY_NODE_NAME
|
101
|
+
valueFrom:
|
102
|
+
fieldRef:
|
103
|
+
fieldPath: spec.nodeName
|
104
|
+
resources:
|
105
|
+
requests:
|
106
|
+
cpu: 200m
|
107
|
+
memory: 200Mi
|
108
|
+
volumeMounts:
|
109
|
+
- name: conf-configmap
|
110
|
+
mountPath: /fluentd/etc
|
111
|
+
volumes:
|
112
|
+
- name: conf-configmap
|
113
|
+
configMap:
|
114
|
+
name: fluentd-metrics-conf
|
@@ -0,0 +1,29 @@
|
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = 'fluent-plugin-kubernetes-metrics'
|
6
|
+
spec.version = File.read('VERSION')
|
7
|
+
spec.authors = ['Splunk Inc.']
|
8
|
+
spec.email = ['DataEdge@splunk.com']
|
9
|
+
spec.summary = 'A fluentd input plugin that collects kubernetes cluster metrics.'
|
10
|
+
spec.description = 'A fluentd input plugin that collects node and container metrics from a kubernetes cluster.'
|
11
|
+
spec.homepage = 'https://github.com/splunk/fluent-plugin-kubernetes-metrics'
|
12
|
+
spec.license = 'Apache-2.0'
|
13
|
+
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
|
14
|
+
f.match(%r{^(test|spec|features)/})
|
15
|
+
end
|
16
|
+
spec.files = files
|
17
|
+
spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = test_files
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
spec.add_development_dependency 'bundler', '~> 2.0.0'
|
21
|
+
spec.add_development_dependency 'rake', '~> 12.3.2'
|
22
|
+
spec.add_development_dependency 'simplecov', '~> 0.16.1'
|
23
|
+
spec.add_development_dependency 'test-unit', '~> 3.3.0'
|
24
|
+
spec.add_development_dependency 'webmock', '~> 3.5.1'
|
25
|
+
spec.add_runtime_dependency 'fluentd', '~> 1.4.0'
|
26
|
+
spec.add_runtime_dependency 'kubeclient', '~> 4.2.2'
|
27
|
+
spec.add_runtime_dependency 'multi_json', '~> 1.13.1'
|
28
|
+
spec.add_runtime_dependency 'oj', '~> 3.7.9'
|
29
|
+
end
|
@@ -0,0 +1,713 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2018- Splunk Inc
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
require 'time'
|
17
|
+
require 'fluent/plugin/input'
|
18
|
+
require 'kubeclient'
|
19
|
+
require 'multi_json'
|
20
|
+
|
21
|
+
module Fluent
|
22
|
+
module Plugin
|
23
|
+
class KubernetesMetricsInput < Fluent::Plugin::Input
|
24
|
+
Fluent::Plugin.register_input('kubernetes_metrics', self)
|
25
|
+
|
26
|
+
helpers :timer
|
27
|
+
|
28
|
+
desc 'The tag of the event.'
|
29
|
+
config_param :tag, :string, default: 'kubernetes.metrics.*'
|
30
|
+
|
31
|
+
desc 'How often it pulls metrcs.'
|
32
|
+
config_param :interval, :time, default: '15s'
|
33
|
+
|
34
|
+
desc 'Path to a kubeconfig file points to a cluster the plugin should collect metrics from. Mostly useful when running fluentd outside of the cluster. When `kubeconfig` is set, `kubernetes_url`, `client_cert`, `client_key`, `ca_file`, `insecure_ssl`, `bearer_token_file`, and `secret_dir` will all be ignored.'
|
35
|
+
config_param :kubeconfig, :string, default: nil
|
36
|
+
|
37
|
+
desc 'URL of the kubernetes API server.'
|
38
|
+
config_param :kubernetes_url, :string, default: nil
|
39
|
+
|
40
|
+
desc 'Path to the certificate file for this client.'
|
41
|
+
config_param :client_cert, :string, default: nil
|
42
|
+
|
43
|
+
desc 'Path to the private key file for this client.'
|
44
|
+
config_param :client_key, :string, default: nil
|
45
|
+
|
46
|
+
desc 'Path to the CA file.'
|
47
|
+
config_param :ca_file, :string, default: '/var/run/secrets/kubernetes.io/serviceaccount/ca.crt'
|
48
|
+
|
49
|
+
desc "If `insecure_ssl` is set to `true`, it won't verify apiserver's certificate."
|
50
|
+
config_param :insecure_ssl, :bool, default: false
|
51
|
+
|
52
|
+
desc 'Path to the file contains the API token. By default it reads from the file "token" in the `secret_dir`.'
|
53
|
+
config_param :bearer_token_file, :string, default: nil
|
54
|
+
|
55
|
+
desc "Path of the location where pod's service account's credentials are stored."
|
56
|
+
config_param :secret_dir, :string, default: '/var/run/secrets/kubernetes.io/serviceaccount'
|
57
|
+
|
58
|
+
desc 'Name of the node that this plugin should collect metrics from.'
|
59
|
+
config_param :node_name, :string, default: nil
|
60
|
+
|
61
|
+
desc 'Name of the nodes that this plugin should collect metrics from.'
|
62
|
+
config_param :node_names, :array, default: [], value_type: :string
|
63
|
+
|
64
|
+
desc 'The hostname or IP address that kubelet will use to connect to. If not supplied, status.hostIP of the node is used to fetch metrics from the Kubelet API (via the $KUBERNETES_NODE_IP environment variable)'
|
65
|
+
config_param :kubelet_address, :string, default: "#{ENV['KUBERNETES_NODE_IP']}"
|
66
|
+
|
67
|
+
desc 'The port that kubelet is listening to.'
|
68
|
+
config_param :kubelet_port, :integer, default: 10_250
|
69
|
+
|
70
|
+
desc 'Use the rest client to get the metrics from summary api on each kubelet'
|
71
|
+
config_param :use_rest_client, :bool, default: true
|
72
|
+
|
73
|
+
desc 'Use SSL for rest client.'
|
74
|
+
config_param :use_rest_client_ssl, :bool, default: true
|
75
|
+
|
76
|
+
def configure(conf)
|
77
|
+
super
|
78
|
+
|
79
|
+
if @use_rest_client
|
80
|
+
raise Fluentd::ConfigError, 'node_name is required' if @node_name.nil? || @node_name.empty?
|
81
|
+
else
|
82
|
+
raise Fluentd::ConfigError, 'node_names is required' if @node_names.nil? || @node_names.empty?
|
83
|
+
end
|
84
|
+
|
85
|
+
parse_tag
|
86
|
+
initialize_client
|
87
|
+
end
|
88
|
+
|
89
|
+
def start
|
90
|
+
super
|
91
|
+
|
92
|
+
timer_execute :metric_scraper, @interval, &method(:scrape_metrics)
|
93
|
+
timer_execute :stats_metric_scraper, @interval, &method(:scrape_stats_metrics)
|
94
|
+
timer_execute :cadvisor_metric_scraper, @interval, &method(:scrape_cadvisor_metrics)
|
95
|
+
end
|
96
|
+
|
97
|
+
def close
|
98
|
+
@watchers.each &:finish if @watchers
|
99
|
+
|
100
|
+
super
|
101
|
+
end
|
102
|
+
|
103
|
+
private
|
104
|
+
|
105
|
+
def parse_tag
|
106
|
+
@tag_prefix, @tag_suffix = @tag.split('*') if @tag.include?('*')
|
107
|
+
end
|
108
|
+
|
109
|
+
def generate_tag(item_name)
|
110
|
+
return @tag unless @tag_prefix
|
111
|
+
|
112
|
+
[@tag_prefix, item_name, @tag_suffix].join
|
113
|
+
end
|
114
|
+
|
115
|
+
def init_with_kubeconfig(options = {})
|
116
|
+
config = Kubeclient::Config.read @kubeconfig
|
117
|
+
current_context = config.context
|
118
|
+
|
119
|
+
@client = Kubeclient::Client.new(
|
120
|
+
current_context.api_endpoint,
|
121
|
+
current_context.api_version,
|
122
|
+
options.merge(
|
123
|
+
ssl_options: current_context.ssl_options,
|
124
|
+
auth_options: current_context.auth_options
|
125
|
+
)
|
126
|
+
)
|
127
|
+
end
|
128
|
+
|
129
|
+
def init_without_kubeconfig(_options = {})
|
130
|
+
# mostly borrowed from Fluentd Kubernetes Metadata Filter Plugin
|
131
|
+
if @kubernetes_url.nil?
|
132
|
+
# Use Kubernetes default service account if we're in a pod.
|
133
|
+
env_host = ENV['KUBERNETES_SERVICE_HOST']
|
134
|
+
env_port = ENV['KUBERNETES_SERVICE_PORT']
|
135
|
+
if env_host && env_port
|
136
|
+
@kubernetes_url = "https://#{env_host}:#{env_port}/api/"
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
raise Fluent::ConfigError, 'kubernetes url is not set' unless @kubernetes_url
|
141
|
+
|
142
|
+
# Use SSL certificate and bearer token from Kubernetes service account.
|
143
|
+
if Dir.exist?(@secret_dir)
|
144
|
+
secret_ca_file = File.join(@secret_dir, 'ca.crt')
|
145
|
+
secret_token_file = File.join(@secret_dir, 'token')
|
146
|
+
|
147
|
+
if @ca_file.nil? && File.exist?(secret_ca_file)
|
148
|
+
@ca_file = secret_ca_file
|
149
|
+
end
|
150
|
+
|
151
|
+
if @bearer_token_file.nil? && File.exist?(secret_token_file)
|
152
|
+
@bearer_token_file = secret_token_file
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
ssl_options = {
|
157
|
+
client_cert: @client_cert && OpenSSL::X509::Certificate.new(File.read(@client_cert)),
|
158
|
+
client_key: @client_key && OpenSSL::PKey::RSA.new(File.read(@client_key)),
|
159
|
+
ca_file: @ca_file,
|
160
|
+
verify_ssl: @insecure_ssl ? OpenSSL::SSL::VERIFY_NONE : OpenSSL::SSL::VERIFY_PEER
|
161
|
+
}
|
162
|
+
|
163
|
+
auth_options = {}
|
164
|
+
auth_options[:bearer_token] = File.read(@bearer_token_file) if @bearer_token_file
|
165
|
+
|
166
|
+
@client = Kubeclient::Client.new(
|
167
|
+
@kubernetes_url, 'v1',
|
168
|
+
ssl_options: ssl_options,
|
169
|
+
auth_options: auth_options
|
170
|
+
)
|
171
|
+
|
172
|
+
begin
|
173
|
+
@client.api_valid?
|
174
|
+
rescue KubeException => kube_error
|
175
|
+
raise Fluent::ConfigError, "Invalid Kubernetes API #{@api_version} endpoint #{@kubernetes_url}: #{kube_error.message}"
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
def initialize_client
|
180
|
+
if @use_rest_client
|
181
|
+
initialize_rest_client
|
182
|
+
else
|
183
|
+
options = {
|
184
|
+
timeouts: {
|
185
|
+
open: 10,
|
186
|
+
read: nil
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
if @kubeconfig.nil?
|
191
|
+
init_without_kubeconfig options
|
192
|
+
else
|
193
|
+
init_with_kubeconfig options
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
def initialize_rest_client
|
199
|
+
env_host = @kubelet_address
|
200
|
+
env_port = @kubelet_port
|
201
|
+
|
202
|
+
if env_host && env_port
|
203
|
+
if @use_rest_client_ssl
|
204
|
+
@kubelet_url = "https://#{env_host}:#{env_port}/stats/summary"
|
205
|
+
@kubelet_url_stats = "https://#{env_host}:#{env_port}/stats/"
|
206
|
+
@cadvisor_url = "https://#{env_host}:#{env_port}/metrics/cadvisor"
|
207
|
+
else
|
208
|
+
@kubelet_url = "http://#{env_host}:#{env_port}/stats/summary"
|
209
|
+
@kubelet_url_stats = "http://#{env_host}:#{env_port}/stats/"
|
210
|
+
@cadvisor_url = "http://#{env_host}:#{env_port}/metrics/cadvisor"
|
211
|
+
end
|
212
|
+
end
|
213
|
+
|
214
|
+
if Dir.exist?(@secret_dir)
|
215
|
+
secret_ca_file = File.join(@secret_dir, 'ca.crt')
|
216
|
+
secret_token_file = File.join(@secret_dir, 'token')
|
217
|
+
if @ca_file.nil? && File.exist?(secret_ca_file)
|
218
|
+
@ca_file = secret_ca_file
|
219
|
+
end
|
220
|
+
if @bearer_token_file.nil? && File.exist?(secret_token_file)
|
221
|
+
@bearer_token_file = secret_token_file
|
222
|
+
end
|
223
|
+
end
|
224
|
+
log.info("Use URL #{@kubelet_url} for creating client to query kubelet summary api")
|
225
|
+
log.info("Use URL #{@kubelet_url_stats} for creating client to query kubelet stats api")
|
226
|
+
log.info("Use URL #{@cadvisor_url} for creating client to query cadvisor metrics api")
|
227
|
+
end
|
228
|
+
|
229
|
+
def set_ssl_options
|
230
|
+
if @use_rest_client_ssl
|
231
|
+
ssl_options = {
|
232
|
+
ssl_ca_file: @ca_file,
|
233
|
+
verify_ssl: @insecure_ssl ? OpenSSL::SSL::VERIFY_NONE : OpenSSL::SSL::VERIFY_PEER,
|
234
|
+
headers: { Authorization: 'Bearer ' + File.read(@bearer_token_file) }
|
235
|
+
}
|
236
|
+
else
|
237
|
+
ssl_options = {}
|
238
|
+
end
|
239
|
+
ssl_options
|
240
|
+
end
|
241
|
+
|
242
|
+
# This method is used to set the options for sending a request to the kubelet api
|
243
|
+
def request_options
|
244
|
+
options = { method: 'get', url: @kubelet_url }
|
245
|
+
options = options.merge(set_ssl_options)
|
246
|
+
options
|
247
|
+
end
|
248
|
+
|
249
|
+
# This method is used to set the options for sending a request to the stats api
|
250
|
+
def request_options_stats
|
251
|
+
options = { method: 'get', url: @kubelet_url_stats }
|
252
|
+
options = options.merge(set_ssl_options)
|
253
|
+
options
|
254
|
+
end
|
255
|
+
|
256
|
+
# This method is used to set the options for sending a request to the cadvisor api
|
257
|
+
def cadvisor_request_options
|
258
|
+
options = { method: 'get', url: @cadvisor_url }
|
259
|
+
options = options.merge(set_ssl_options)
|
260
|
+
options
|
261
|
+
end
|
262
|
+
|
263
|
+
# @client.proxy_url only returns the url, but we need the resource, not just the url
|
264
|
+
def summary_proxy_api(node)
|
265
|
+
@summary_api =
|
266
|
+
begin
|
267
|
+
@client.discover unless @client.discovered
|
268
|
+
@client.rest_client["/nodes/#{node}:#{@kubelet_port}/proxy/stats/summary"].tap do |endpoint|
|
269
|
+
log.info("Use URL #{endpoint.url} for scraping metrics")
|
270
|
+
end
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
def stats_proxy_api(node)
|
275
|
+
@stats_api =
|
276
|
+
begin
|
277
|
+
@client.discover unless @client.discovered
|
278
|
+
@client.rest_client["/nodes/#{node}:#{@kubelet_port}/proxy/stats/"].tap do |endpoint|
|
279
|
+
log.info("Use URL #{endpoint.url} for scraping stats metrics")
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
283
|
+
|
284
|
+
def cadvisor_proxy_api(node)
|
285
|
+
@cadvisor_api =
|
286
|
+
begin
|
287
|
+
@client.discover unless @client.discovered
|
288
|
+
@client.rest_client["/nodes/#{node}:#{@kubelet_port}/proxy/metrics/cadvisor"].tap do |endpoint|
|
289
|
+
log.info("Use URL #{endpoint.url} for scraping metrics")
|
290
|
+
end
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
def parse_time(metric_time)
|
295
|
+
Fluent::EventTime.from_time Time.iso8601(metric_time)
|
296
|
+
end
|
297
|
+
|
298
|
+
def underscore(camlcase)
|
299
|
+
camlcase.gsub(/[A-Z]/) { |c| "_#{c.downcase}" }
|
300
|
+
end
|
301
|
+
|
302
|
+
def emit_uptime(tag:, start_time:, labels:)
|
303
|
+
unless start_time.nil?
|
304
|
+
uptime = @scraped_at - Time.iso8601(start_time)
|
305
|
+
router.emit generate_tag("#{tag}.uptime"), Fluent::EventTime.from_time(@scraped_at), labels.merge('value' => uptime)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
def emit_cpu_metrics(tag:, metrics:, labels:)
|
310
|
+
unless metrics['time'].nil?
|
311
|
+
time = parse_time metrics['time']
|
312
|
+
if usage_rate = metrics['usageNanoCores']
|
313
|
+
router.emit generate_tag("#{tag}.cpu.usage_rate"), time, labels.merge('value' => usage_rate / 1_000_000)
|
314
|
+
end
|
315
|
+
if usage = metrics['usageNanoCores']
|
316
|
+
router.emit generate_tag("#{tag}.cpu.usage"), time, labels.merge('value' => usage)
|
317
|
+
end
|
318
|
+
end
|
319
|
+
end
|
320
|
+
|
321
|
+
def emit_memory_metrics(tag:, metrics:, labels:)
|
322
|
+
unless metrics['time'].nil?
|
323
|
+
time = parse_time metrics['time']
|
324
|
+
%w[availableBytes usageBytes workingSetBytes rssBytes pageFaults majorPageFaults].each do |name|
|
325
|
+
if value = metrics[name]
|
326
|
+
router.emit generate_tag("#{tag}.memory.#{underscore name}"), time, labels.merge('value' => value)
|
327
|
+
end
|
328
|
+
end
|
329
|
+
end
|
330
|
+
end
|
331
|
+
|
332
|
+
def emit_network_metrics(tag:, metrics:, labels:)
|
333
|
+
unless metrics['time'].nil?
|
334
|
+
time = parse_time metrics['time']
|
335
|
+
Array(metrics['interfaces']).each do |it|
|
336
|
+
it_name = it['name']
|
337
|
+
%w[rxBytes rxErrors txBytes txErrors].each do |metric_name|
|
338
|
+
if value = it[metric_name]
|
339
|
+
router.emit generate_tag("#{tag}.network.#{underscore metric_name}"), time, labels.merge('value' => value, 'interface' => it_name)
|
340
|
+
end
|
341
|
+
end
|
342
|
+
end
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
def emit_fs_metrics(tag:, metrics:, labels:)
|
347
|
+
unless metrics['time'].nil?
|
348
|
+
time = parse_time metrics['time']
|
349
|
+
%w[availableBytes capacityBytes usedBytes inodesFree inodes inodesUsed].each do |metric_name|
|
350
|
+
if value = metrics[metric_name]
|
351
|
+
router.emit generate_tag("#{tag}.#{underscore metric_name}"), time, labels.merge('value' => value)
|
352
|
+
end
|
353
|
+
end
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
def emit_node_rlimit_metrics(node_name, rlimit)
|
358
|
+
unless rlimit['time'].nil?
|
359
|
+
time = parse_time rlimit['time']
|
360
|
+
%w[maxpid curproc].each do |metric_name|
|
361
|
+
next unless value = rlimit[metric_name]
|
362
|
+
|
363
|
+
router.emit(generate_tag("node.runtime.imagefs.#{metric_name}"), time,
|
364
|
+
'value' => value,
|
365
|
+
'node' => node_name)
|
366
|
+
end
|
367
|
+
end
|
368
|
+
end
|
369
|
+
|
370
|
+
def emit_system_container_metrics(node_name, container)
|
371
|
+
tag = 'sys-container'
|
372
|
+
labels = { 'node' => node_name, 'name' => container['name'] }
|
373
|
+
unless container['startTime'].nil?
|
374
|
+
emit_uptime tag: tag, start_time: container['startTime'], labels: labels
|
375
|
+
emit_cpu_metrics tag: tag, metrics: container['cpu'], labels: labels unless container['cpu'].nil?
|
376
|
+
emit_memory_metrics tag: tag, metrics: container['memory'], labels: labels unless container['memory'].nil?
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
380
|
+
def emit_stats_breakdown(stats)
|
381
|
+
stats_latest = stats[-1]
|
382
|
+
tag = 'node'
|
383
|
+
labels = { 'node' => @node_name }
|
384
|
+
unless stats_latest['timestamp'].nil?
|
385
|
+
stats_timestamp = parse_time stats_latest['timestamp']
|
386
|
+
unless stats_latest['cpu'].nil?
|
387
|
+
emit_cpu_metrics_stats tag: tag, metrics: stats_latest['cpu'], labels: labels, time: stats_timestamp
|
388
|
+
end
|
389
|
+
|
390
|
+
unless stats_latest['diskio'].nil?
|
391
|
+
emit_diskio_metrics_stats tag: tag, metrics: stats_latest['diskio'], labels: labels, time: stats_timestamp
|
392
|
+
end
|
393
|
+
|
394
|
+
unless stats_latest['memory'].nil?
|
395
|
+
emit_memory_metrics_stats tag: tag, metrics: stats_latest['memory'], labels: labels, time: stats_timestamp
|
396
|
+
end
|
397
|
+
|
398
|
+
unless stats_latest['network'].nil?
|
399
|
+
emit_network_metrics_stats tag: tag, metrics: stats_latest['network'], labels: labels, time: stats_timestamp
|
400
|
+
end
|
401
|
+
|
402
|
+
unless stats_latest['filesystem'].nil?
|
403
|
+
emit_filesystem_metrics_stats tag: tag, metrics: stats_latest['filesystem'], labels: labels, time: stats_timestamp
|
404
|
+
end
|
405
|
+
|
406
|
+
unless stats_latest['task_stats'].nil?
|
407
|
+
emit_tasks_stats_metrics_stats tag: tag, metrics: stats_latest['task_stats'], labels: labels, time: stats_timestamp
|
408
|
+
end
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
412
|
+
def emit_cpu_metrics_stats(tag:, metrics:, labels:, time:)
|
413
|
+
if cpu_usage_total = metrics['usage']['total']
|
414
|
+
router.emit generate_tag("#{tag}.cpu.usage.total"), time, labels.merge('value' => cpu_usage_total / 1_000_000)
|
415
|
+
end
|
416
|
+
if cpu_usage_user = metrics['usage']['user']
|
417
|
+
router.emit generate_tag("#{tag}.cpu.usage.user"), time, labels.merge('value' => cpu_usage_user / 1_000_000)
|
418
|
+
end
|
419
|
+
if cpu_usage_system = metrics['usage']['system']
|
420
|
+
router.emit generate_tag("#{tag}.cpu.usage.system"), time, labels.merge('value' => cpu_usage_system / 1_000_000)
|
421
|
+
end
|
422
|
+
|
423
|
+
if cpu_cfs_periods = metrics['cfs']['periods']
|
424
|
+
router.emit generate_tag("#{tag}.cpu.cfs.periods"), time, labels.merge('value' => cpu_cfs_periods)
|
425
|
+
end
|
426
|
+
if cpu_cfs_throttled_periods = metrics['cfs']['throttled_periods']
|
427
|
+
router.emit generate_tag("#{tag}.cpu.cfs.throttled_periods"), time, labels.merge('value' => cpu_cfs_throttled_periods)
|
428
|
+
end
|
429
|
+
if cpu_cfs_throttled_time = metrics['cfs']['throttled_time']
|
430
|
+
router.emit generate_tag("#{tag}.cpu.cfs.throttled_time"), time, labels.merge('value' => cpu_cfs_throttled_time)
|
431
|
+
end
|
432
|
+
if cpu_load_average = metrics['load_average']
|
433
|
+
router.emit generate_tag("#{tag}.cpu.load_average"), time, labels.merge('value' => cpu_load_average)
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
437
|
+
def emit_diskio_metrics_stats(tag:, metrics:, labels:, time:)
|
438
|
+
%w[io_service_bytes io_serviced io_queued sectors io_service_time io_wait_time io_merged io_time].each do |metric_name|
|
439
|
+
next unless current_io_metric = metrics[metric_name]
|
440
|
+
|
441
|
+
current_io_metric.each do |device|
|
442
|
+
if diskio_io_service_bytes_major = device['major']
|
443
|
+
router.emit generate_tag("#{tag}.diskio".concat(metric_name).concat('.major.')), time, labels.merge('device' => device['device'], 'value' => diskio_io_service_bytes_major)
|
444
|
+
end
|
445
|
+
if diskio_io_service_bytes_minor = device['minor']
|
446
|
+
router.emit generate_tag("#{tag}.diskio".concat(metric_name).concat('.minor.')), time, labels.merge('device' => device['device'], 'value' => diskio_io_service_bytes_minor)
|
447
|
+
end
|
448
|
+
device_stats = device['stats'] unless device['stats'].nil?
|
449
|
+
device_stats.each do |device_stat|
|
450
|
+
device_key, device_value = device_stat unless device_stat.nil?
|
451
|
+
router.emit generate_tag("#{tag}.diskio.".concat(metric_name).concat('.stats.').concat(device_key)), time, labels.merge('device' => device['device'], 'value' => device_value)
|
452
|
+
end
|
453
|
+
end
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
457
|
+
def emit_memory_metrics_stats(tag:, metrics:, labels:, time:)
|
458
|
+
%w[usage max_usage cache rss swap working_set failcnt].each do |metric_name|
|
459
|
+
if current_memory_metric = metrics[metric_name]
|
460
|
+
router.emit generate_tag("#{tag}.memory.".concat(metric_name)), time, labels.merge('value' => current_memory_metric)
|
461
|
+
end
|
462
|
+
end
|
463
|
+
%w[container_data hierarchical_data].each do |metric_name_group|
|
464
|
+
next unless current_memory_metric_group = metrics[metric_name_group]
|
465
|
+
|
466
|
+
current_memory_metric_group.each do |metric_name|
|
467
|
+
metric_key, metric_value = metric_name unless metric_name.nil?
|
468
|
+
router.emit generate_tag("#{tag}.memory.".concat(metric_name_group).concat('.').concat(metric_key)), time, labels.merge('value' => metric_value)
|
469
|
+
end
|
470
|
+
end
|
471
|
+
end
|
472
|
+
|
473
|
+
def emit_network_metrics_stats(tag:, metrics:, labels:, time:)
|
474
|
+
network_name = metrics['name']
|
475
|
+
%w[rx_bytes rx_packets rx_errors rx_dropped tx_bytes tx_packets tx_errors tx_dropped].each do |metric_name|
|
476
|
+
if current_network_metric = metrics[metric_name]
|
477
|
+
router.emit generate_tag("#{tag}.network.".concat(network_name).concat('.').concat(metric_name)), time, labels.merge('value' => current_network_metric)
|
478
|
+
end
|
479
|
+
end
|
480
|
+
|
481
|
+
if network_interfaces = metrics['interfaces']
|
482
|
+
network_interfaces.each do |current_interface|
|
483
|
+
name = current_interface['name']
|
484
|
+
%w[rx_bytes rx_packets rx_errors rx_dropped tx_bytes tx_packets tx_errors tx_dropped].each do |current_metric|
|
485
|
+
if metric_value = current_interface[current_metric]
|
486
|
+
router.emit generate_tag("#{tag}.network.".concat(name).concat('.').concat(current_metric)), time, labels.merge('value' => metric_value)
|
487
|
+
end
|
488
|
+
end
|
489
|
+
end
|
490
|
+
end
|
491
|
+
|
492
|
+
%w[tcp tcp6 udp udp6].each do |metric_name_group|
|
493
|
+
next unless metric_group = metrics[metric_name_group]
|
494
|
+
|
495
|
+
metric_group.each do |current_metric|
|
496
|
+
metric_key, metric_value = current_metric unless current_metric.nil?
|
497
|
+
router.emit generate_tag("#{tag}.network.".concat(metric_name_group).concat('.').concat(metric_key)), time, labels.merge('value' => metric_value)
|
498
|
+
end
|
499
|
+
end
|
500
|
+
end
|
501
|
+
|
502
|
+
def emit_filesystem_metrics_stats(tag:, metrics:, labels:, time:)
|
503
|
+
metrics.each do |file_system|
|
504
|
+
device = file_system['device']
|
505
|
+
type = file_system['type']
|
506
|
+
file_system.each do |file_metric|
|
507
|
+
file_key, file_value = file_metric unless file_metric.nil?
|
508
|
+
unless %w[device type has_inodes].include? file_key
|
509
|
+
router.emit generate_tag("#{tag}.filesystem.".concat(file_key)), time, labels.merge('device' => device, 'type' => type, 'value' => file_value)
|
510
|
+
end
|
511
|
+
end
|
512
|
+
end
|
513
|
+
end
|
514
|
+
|
515
|
+
def emit_tasks_stats_metrics_stats(tag:, metrics:, labels:, time:)
|
516
|
+
metrics.each do |task_stats|
|
517
|
+
task_key, task_value = task_stats unless task_stats.nil?
|
518
|
+
router.emit generate_tag("#{tag}.tasks_stats.".concat(task_key)), time, labels.merge('value' => task_value)
|
519
|
+
end
|
520
|
+
end
|
521
|
+
|
522
|
+
def emit_node_metrics(node)
|
523
|
+
node_name = node['nodeName']
|
524
|
+
tag = 'node'
|
525
|
+
labels = { 'node' => node_name }
|
526
|
+
|
527
|
+
unless node['startTime'].nil?
|
528
|
+
emit_uptime tag: tag, start_time: node['startTime'], labels: labels
|
529
|
+
unless node['cpu'].nil?
|
530
|
+
emit_cpu_metrics tag: tag, metrics: node['cpu'], labels: labels
|
531
|
+
end
|
532
|
+
unless node['memory'].nil?
|
533
|
+
emit_memory_metrics tag: tag, metrics: node['memory'], labels: labels
|
534
|
+
end
|
535
|
+
unless node['network'].nil?
|
536
|
+
emit_network_metrics tag: tag, metrics: node['network'], labels: labels
|
537
|
+
end
|
538
|
+
unless node['fs'].nil?
|
539
|
+
emit_fs_metrics tag: "#{tag}.fs", metrics: node['fs'], labels: labels
|
540
|
+
end
|
541
|
+
unless node['runtime']['imageFs'].nil?
|
542
|
+
emit_fs_metrics tag: "#{tag}.imagefs", metrics: node['runtime']['imageFs'], labels: labels
|
543
|
+
end
|
544
|
+
unless node['rlimit'].nil?
|
545
|
+
emit_node_rlimit_metrics node_name, node['rlimit']
|
546
|
+
end
|
547
|
+
unless node['systemContainers'].nil?
|
548
|
+
node['systemContainers'].each do |c|
|
549
|
+
emit_system_container_metrics node_name, c unless c.nil?
|
550
|
+
end
|
551
|
+
end
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
555
|
+
def emit_container_metrics(pod_labels, container)
|
556
|
+
tag = 'container'
|
557
|
+
labels = pod_labels.merge 'container-name' => container['name']
|
558
|
+
unless container['startTime'].nil?
|
559
|
+
emit_uptime tag: tag, start_time: container['startTime'], labels: labels
|
560
|
+
emit_cpu_metrics tag: tag, metrics: container['cpu'], labels: labels unless container['cpu'].nil?
|
561
|
+
emit_memory_metrics tag: tag, metrics: container['memory'], labels: labels unless container['memory'].nil?
|
562
|
+
emit_fs_metrics tag: "#{tag}.rootfs", metrics: container['rootfs'], labels: labels unless container['rootfs'].nil?
|
563
|
+
emit_fs_metrics tag: "#{tag}.logs", metrics: container['logs'], labels: labels unless container['logs'].nil?
|
564
|
+
end
|
565
|
+
end
|
566
|
+
|
567
|
+
def emit_pod_metrics(node_name, pod)
|
568
|
+
tag = 'pod'
|
569
|
+
labels = pod['podRef'].transform_keys &'pod-'.method(:+)
|
570
|
+
labels['node'] = node_name
|
571
|
+
|
572
|
+
unless pod['startTime'].nil?
|
573
|
+
emit_uptime tag: tag, start_time: pod['startTime'], labels: labels
|
574
|
+
emit_cpu_metrics tag: tag, metrics: pod['cpu'], labels: labels if pod['cpu'] unless pod['cpu'].nil?
|
575
|
+
emit_memory_metrics tag: tag, metrics: pod['memory'], labels: labels if pod['memory'] unless pod['memory'].nil?
|
576
|
+
emit_network_metrics tag: tag, metrics: pod['network'], labels: labels unless pod['network'].nil?
|
577
|
+
emit_fs_metrics tag: "#{tag}.ephemeral-storage", metrics: pod['ephemeral-storage'], labels: labels unless pod['ephemeral-storage'].nil?
|
578
|
+
unless pod['volume'].nil?
|
579
|
+
Array(pod['volume']).each do |volume|
|
580
|
+
emit_fs_metrics tag: "#{tag}.volume", metrics: volume, labels: labels.merge('name' => volume['name']) unless volume.nil?
|
581
|
+
end
|
582
|
+
end
|
583
|
+
unless pod['containers'].nil?
|
584
|
+
Array(pod['containers']).each do |container|
|
585
|
+
emit_container_metrics labels, container unless container.nil?
|
586
|
+
end
|
587
|
+
end
|
588
|
+
end
|
589
|
+
end
|
590
|
+
|
591
|
+
def emit_metrics(metrics)
|
592
|
+
emit_node_metrics(metrics['node']) unless metrics['node'].nil?
|
593
|
+
Array(metrics['pods']).each &method(:emit_pod_metrics).curry.call(metrics['node']['nodeName']) unless metrics['pods'].nil?
|
594
|
+
end
|
595
|
+
|
596
|
+
def emit_stats_metrics(metrics)
|
597
|
+
emit_stats_breakdown(metrics['stats']) unless metrics['stats'].nil?
|
598
|
+
end
|
599
|
+
|
600
|
+
def emit_cadvisor_metrics(metrics)
|
601
|
+
metrics = metrics.split("\n")
|
602
|
+
metrics.each do |metric|
|
603
|
+
next unless metric.include? 'container_name='
|
604
|
+
|
605
|
+
next unless metric.match(/^((?!container_name="").)*$/) && metric[0] != '#'
|
606
|
+
|
607
|
+
metric_str, metric_val = metric.split(' ')
|
608
|
+
metric_val = metric_val.to_f if metric_val.is_a? String
|
609
|
+
first_occur = metric_str.index('{')
|
610
|
+
metric_name = metric_str[0..first_occur - 1]
|
611
|
+
pod_name = metric.match(/pod_name="\S*"/).to_s
|
612
|
+
pod_name = pod_name.split('"')[1]
|
613
|
+
image_name = metric.match(/image="\S*"/).to_s
|
614
|
+
image_name = image_name.split('"')[1]
|
615
|
+
namespace = metric.match(/namespace="\S*"/).to_s
|
616
|
+
namespace = namespace.split('"')[1]
|
617
|
+
metric_labels = { 'pod_name' => pod_name, 'image' => image_name, 'namespace' => namespace, 'value' => metric_val, 'node' => @node_name }
|
618
|
+
if metric =~ /^((?!container_name="POD").)*$/
|
619
|
+
tag = 'pod'
|
620
|
+
tag = generate_tag("#{tag}#{metric_name.tr('_', '.')}")
|
621
|
+
tag = tag.gsub('container', '')
|
622
|
+
else
|
623
|
+
container_name = metric.match(/container_name="\S*"/).to_s
|
624
|
+
container_name = container_name.split('"')[1]
|
625
|
+
container_label = { 'container_name' => container_name }
|
626
|
+
metric_labels.merge(container_label)
|
627
|
+
tag = generate_tag(metric_name.tr('_', '.').to_s)
|
628
|
+
end
|
629
|
+
router.emit tag, @scraped_at_cadvisor, metric_labels
|
630
|
+
end
|
631
|
+
end
|
632
|
+
|
633
|
+
def scrape_metrics
|
634
|
+
if @use_rest_client
|
635
|
+
response = RestClient::Request.execute request_options
|
636
|
+
handle_response(response)
|
637
|
+
else
|
638
|
+
@node_names.each do |node|
|
639
|
+
response = summary_proxy_api(node).get(@client.headers)
|
640
|
+
handle_response(response)
|
641
|
+
end
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
645
|
+
def scrape_stats_metrics
|
646
|
+
if @use_rest_client
|
647
|
+
response_stats = RestClient::Request.execute request_options_stats
|
648
|
+
handle_stats_response(response_stats)
|
649
|
+
else
|
650
|
+
@node_names.each do |node|
|
651
|
+
@node_name = node
|
652
|
+
response_stats = stats_proxy_api(node).get(@client.headers)
|
653
|
+
handle_stats_response(response_stats)
|
654
|
+
end
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
def scrape_cadvisor_metrics
|
659
|
+
if @use_rest_client
|
660
|
+
response_cadvisor = RestClient::Request.execute cadvisor_request_options
|
661
|
+
handle_cadvisor_response(response_cadvisor)
|
662
|
+
else
|
663
|
+
@node_names.each do |node|
|
664
|
+
response_cadvisor = cadvisor_proxy_api(node).get(@client.headers)
|
665
|
+
handle_cadvisor_response(response_cadvisor)
|
666
|
+
end
|
667
|
+
end
|
668
|
+
end
|
669
|
+
|
670
|
+
# This method is used to handle responses from the kubelet summary api
|
671
|
+
def handle_response(response)
|
672
|
+
# Checking response codes only for a successful GET request viz., 2XX codes
|
673
|
+
if (response.code < 300) && (response.code > 199)
|
674
|
+
@scraped_at = Time.now
|
675
|
+
emit_metrics MultiJson.load(response.body)
|
676
|
+
else
|
677
|
+
log.error "ExMultiJson.load(response.body) expected 2xx from summary API, but got #{response.code}. Response body = #{response.body}"
|
678
|
+
end
|
679
|
+
rescue StandardError => error
|
680
|
+
log.error "Failed to scrape metrics, error=#{error.inspect}"
|
681
|
+
log.error_backtrace
|
682
|
+
end
|
683
|
+
|
684
|
+
# This method is used to handle responses from the kubelet stats api
|
685
|
+
def handle_stats_response(response)
|
686
|
+
# Checking response codes only for a successful GET request viz., 2XX codes
|
687
|
+
if (response.code < 300) && (response.code > 199)
|
688
|
+
@scraped_at = Time.now
|
689
|
+
emit_stats_metrics MultiJson.load(response.body)
|
690
|
+
else
|
691
|
+
log.error "ExMultiJson.load(response.body) expected 2xx from stats API, but got #{response.code}. Response body = #{response.body}"
|
692
|
+
end
|
693
|
+
rescue StandardError => error
|
694
|
+
log.error "Failed to scrape metrics, error=#{error.inspect}"
|
695
|
+
log.error_backtrace
|
696
|
+
end
|
697
|
+
|
698
|
+
# This method is used to handle responses from the cadvisor api
|
699
|
+
def handle_cadvisor_response(response)
|
700
|
+
# Checking response codes only for a successful GET request viz., 2XX codes
|
701
|
+
if (response.code < 300) && (response.code > 199)
|
702
|
+
@scraped_at_cadvisor = Time.now
|
703
|
+
emit_cadvisor_metrics response.body
|
704
|
+
else
|
705
|
+
log.error "Expected 2xx from cadvisor metrics API, but got #{response.code}. Response body = #{response.body}"
|
706
|
+
end
|
707
|
+
rescue StandardError => e
|
708
|
+
log.error "Failed to scrape metrics, error=#{$ERROR_INFO}, #{e.inspect}"
|
709
|
+
log.error_backtrace
|
710
|
+
end
|
711
|
+
end
|
712
|
+
end
|
713
|
+
end
|