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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e1f36a82ebc0cee28ecb843e8e64c0f85008fd086cc16aa7b4422c498a4cf2a4
|
4
|
+
data.tar.gz: 71c811c41034345247cb9d8da1c4737372d5821193cc05bf1835660a64805da3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5327e6c146ab8b09cbc0d2dc2ba3d31aa8034362e0a4023ea2cbbad7a8a216b767ca7a531197becd9779623097fec5fcf31f99d2526d7cca3faf2d08c63566f5
|
7
|
+
data.tar.gz: f707fcb64146bcc810da2ddb003849e119a8f2a04521d1679093181b3cdbb37b01df9a29c7bde303c5990de29985d9e38ac2b45cdb36629df59c32529d8ee23c
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
3
|
+
FLUENTD_HEC_GEM_VERSION=`cat docker/FLUENTD_HEC_GEM_VERSION`
|
4
|
+
aws ecr get-login --region $AWS_REGION --no-include-email | bash
|
5
|
+
echo "Building docker image..."
|
6
|
+
cp /tmp/pkg/fluent-plugin-kubernetes-metrics-*.gem docker
|
7
|
+
docker build --build-arg VERSION=$FLUENTD_HEC_GEM_VERSION --no-cache -t splunk/fluent-plugin-kubernetes-metrics:metrics ./docker
|
8
|
+
docker tag splunk/fluent-plugin-kubernetes-metrics:metrics $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/k8s-ci-metrics:latest
|
9
|
+
echo "Push docker image to ecr..."
|
10
|
+
docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/k8s-ci-metrics:latest | awk 'END{print}'
|
11
|
+
echo "Docker image pushed successfully."
|
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
3
|
+
FLUENTD_HEC_GEM_VERSION=`cat docker/FLUENTD_HEC_GEM_VERSION`
|
4
|
+
echo "Building docker image..."
|
5
|
+
cp /tmp/pkg/fluent-plugin-kubernetes-metrics-*.gem docker
|
6
|
+
VERSION=`cat VERSION`
|
7
|
+
docker build --build-arg VERSION=$FLUENTD_HEC_GEM_VERSION --no-cache -t splunk/fluent-plugin-kubernetes-metrics:ci ./docker
|
8
|
+
docker tag splunk/fluent-plugin-kubernetes-metrics:ci splunk/${DOCKERHUB_REPO_NAME}:${VERSION}
|
9
|
+
echo "Push docker image to splunk dockerhub..."
|
10
|
+
docker login --username=$DOCKERHUB_ACCOUNT_ID --password=$DOCKERHUB_ACCOUNT_PASS
|
11
|
+
docker push splunk/${DOCKERHUB_REPO_NAME}:${VERSION} | awk 'END{print}'
|
12
|
+
echo "Docker image pushed successfully to docker-hub."
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
3
|
+
wget https://github.com/tcnksm/ghr/releases/download/v0.12.0/ghr_v0.12.0_linux_amd64.tar.gz
|
4
|
+
tar -xzvf ghr_v0.12.0_linux_amd64.tar.gz
|
5
|
+
sudo chmod +x ghr_v0.12.0_linux_amd64
|
6
|
+
sudo mv ghr_v0.12.0_linux_amd64/ghr /usr/local/bin/ghr
|
7
|
+
|
8
|
+
VERSION=`cat VERSION`
|
9
|
+
echo "Pushing SCK release to github releases...${VERSION}"
|
10
|
+
|
11
|
+
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -n "${RELEASE_TITLE}" -b "${RELEASE_BODY}" -draft ${VERSION} /tmp/pkg/
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
3
|
+
|
4
|
+
#!/usr/bin/env bash
|
5
|
+
LATEST_COMMIT=$(git rev-parse HEAD)
|
6
|
+
VERSION_COMMIT=$(git log -1 --format=format:%H VERSION)
|
7
|
+
if [ $VERSION_COMMIT = $LATEST_COMMIT ];
|
8
|
+
then
|
9
|
+
if [ -s VERSION ] # Check if content is empty
|
10
|
+
then
|
11
|
+
VERSION=`cat VERSION`
|
12
|
+
echo "VERSION is changed to $VERSION"
|
13
|
+
else
|
14
|
+
echo "[ERROR] VERSION file is empty."
|
15
|
+
exit 1
|
16
|
+
fi
|
17
|
+
git config user.email "splunk-oss-admin@splunk.com"
|
18
|
+
git config user.name "splunk-oss-admin"
|
19
|
+
git checkout develop
|
20
|
+
git pull origin develop
|
21
|
+
git checkout -b release/$VERSION origin/develop
|
22
|
+
git push https://$RELEASE_GITHUB_USER:$RELEASE_GITHUB_PASS@github.com/splunk/fluent-plugin-kubernetes-metrics.git release/$VERSION
|
23
|
+
git checkout master
|
24
|
+
git merge --no-edit release/$VERSION
|
25
|
+
git push https://$RELEASE_GITHUB_USER:$RELEASE_GITHUB_PASS@github.com/splunk/fluent-plugin-kubernetes-metrics.git master
|
26
|
+
fi
|
@@ -0,0 +1,133 @@
|
|
1
|
+
version: 2
|
2
|
+
jobs:
|
3
|
+
build:
|
4
|
+
docker:
|
5
|
+
- image: circleci/ruby:2.6.1-node-browsers
|
6
|
+
working_directory: ~/repo
|
7
|
+
steps:
|
8
|
+
- checkout
|
9
|
+
- setup_remote_docker:
|
10
|
+
reusable: true
|
11
|
+
- run:
|
12
|
+
name: Install dependencies
|
13
|
+
command: |
|
14
|
+
.circleci/install_dep.sh
|
15
|
+
- run:
|
16
|
+
name: Builder
|
17
|
+
command: |
|
18
|
+
rake build -t -v
|
19
|
+
cp -R pkg /tmp
|
20
|
+
- persist_to_workspace:
|
21
|
+
root: /tmp
|
22
|
+
paths:
|
23
|
+
- pkg
|
24
|
+
|
25
|
+
test:
|
26
|
+
docker:
|
27
|
+
- image: circleci/ruby:2.6.1-node-browsers
|
28
|
+
working_directory: ~/repo
|
29
|
+
steps:
|
30
|
+
- attach_workspace:
|
31
|
+
at: /tmp
|
32
|
+
- checkout
|
33
|
+
- setup_remote_docker:
|
34
|
+
reusable: true
|
35
|
+
- run:
|
36
|
+
name: Install dependencies
|
37
|
+
command: |
|
38
|
+
.circleci/install_dep.sh
|
39
|
+
- run:
|
40
|
+
name: Run unit tests
|
41
|
+
command: |
|
42
|
+
rake test -t -v
|
43
|
+
|
44
|
+
push:
|
45
|
+
docker:
|
46
|
+
- image: circleci/ruby:2.6.1-node-browsers
|
47
|
+
working_directory: ~/repo
|
48
|
+
steps:
|
49
|
+
- attach_workspace:
|
50
|
+
at: /tmp
|
51
|
+
- checkout
|
52
|
+
- setup_remote_docker:
|
53
|
+
reusable: true
|
54
|
+
- run:
|
55
|
+
name: Push rubygem to s3
|
56
|
+
command: |
|
57
|
+
.circleci/push_gem.sh
|
58
|
+
- run:
|
59
|
+
name: Build and push docker image to ecr
|
60
|
+
command: |
|
61
|
+
.circleci/build_and_push.sh
|
62
|
+
|
63
|
+
release:
|
64
|
+
docker:
|
65
|
+
- image: circleci/ruby:2.6.1-node-browsers
|
66
|
+
working_directory: ~/repo
|
67
|
+
steps:
|
68
|
+
- attach_workspace:
|
69
|
+
at: /tmp
|
70
|
+
- checkout
|
71
|
+
- setup_remote_docker:
|
72
|
+
reusable: true
|
73
|
+
- run:
|
74
|
+
name: Install dependencies
|
75
|
+
command: |
|
76
|
+
.circleci/install_dep.sh
|
77
|
+
- run:
|
78
|
+
name: Build and push docker image to dockerhub
|
79
|
+
command: |
|
80
|
+
.circleci/build_and_push_to_dockerhub.sh
|
81
|
+
- run:
|
82
|
+
name: Upload gem to Github
|
83
|
+
command: |
|
84
|
+
.circleci/build_and_push_to_github_release.sh
|
85
|
+
- run:
|
86
|
+
name: Upload gem to Ruby Gem
|
87
|
+
command: |
|
88
|
+
.circleci/push_gems_to_rubygems.sh
|
89
|
+
|
90
|
+
check_version:
|
91
|
+
docker:
|
92
|
+
- image: circleci/ruby:2.6.1-node-browsers
|
93
|
+
working_directory: ~/repo
|
94
|
+
steps:
|
95
|
+
- attach_workspace:
|
96
|
+
at: /tmp
|
97
|
+
- checkout
|
98
|
+
- setup_remote_docker:
|
99
|
+
reusable: true
|
100
|
+
- run:
|
101
|
+
name: Check VERSION file for change
|
102
|
+
command: |
|
103
|
+
.circleci/check_version_trigger_release.sh
|
104
|
+
|
105
|
+
workflows:
|
106
|
+
version: 2
|
107
|
+
build_test_push:
|
108
|
+
jobs:
|
109
|
+
- build:
|
110
|
+
filters:
|
111
|
+
branches:
|
112
|
+
ignore: /^release\/.*/
|
113
|
+
- test:
|
114
|
+
requires:
|
115
|
+
- build
|
116
|
+
- push:
|
117
|
+
requires:
|
118
|
+
- test
|
119
|
+
filters:
|
120
|
+
branches:
|
121
|
+
only: develop
|
122
|
+
- check_version:
|
123
|
+
requires:
|
124
|
+
- push
|
125
|
+
release:
|
126
|
+
jobs:
|
127
|
+
- build:
|
128
|
+
filters:
|
129
|
+
branches:
|
130
|
+
only: master
|
131
|
+
- release:
|
132
|
+
requires:
|
133
|
+
- build
|
@@ -0,0 +1,8 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
3
|
+
sudo apt-get update
|
4
|
+
sudo apt-get install -y python-pip libpython-dev > /dev/null 2>&1
|
5
|
+
echo "Installing aws cli..."
|
6
|
+
sudo pip install awscli > /dev/null 2>&1
|
7
|
+
echo "Pushing metrics gem to s3..."
|
8
|
+
aws s3 cp /tmp/pkg/*.gem s3://k8s-ci-artifacts/
|
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
3
|
+
echo "Pushing metrics gem to rubygems.org..."
|
4
|
+
echo "gem `gem --version`"
|
5
|
+
cat .circleci/gem_credentials | sed -e "s/__RUBYGEMS_API_KEY__/${RUBYGEMS_API_KEY}/" > ~/.gem/credentials
|
6
|
+
chmod 0600 ~/.gem/credentials
|
7
|
+
gem push /tmp/pkg/fluent-plugin-kubernetes-metrics-*.gem
|
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Report a bug encountered while operating fluent-plugin-kubernetes-metrics
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!
|
11
|
+
|
12
|
+
Please do not report security vulnerabilities with public GitHub issue reports. Please report security issues here: https://www.splunk.com/goto/report_vulnerabilities_prodsec
|
13
|
+
-->
|
14
|
+
|
15
|
+
|
16
|
+
**What happened**:
|
17
|
+
|
18
|
+
**What you expected to happen**:
|
19
|
+
|
20
|
+
**How to reproduce it (as minimally and precisely as possible)**:
|
21
|
+
|
22
|
+
**Anything else we need to know?**:
|
23
|
+
|
24
|
+
**Environment**:
|
25
|
+
- Kubernetes version (use `kubectl version`):
|
26
|
+
- Ruby version (use `ruby --version`):
|
27
|
+
- OS (e.g: `cat /etc/os-release`):
|
28
|
+
- Splunk version:
|
29
|
+
- Others:
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
name: Enhancement Request
|
3
|
+
about: Suggest an enhancement to the fluent-plugin-kubernetes-metrics project
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
<<!-- Please only use this template for submitting enhancement requests -->
|
11
|
+
|
12
|
+
**What would you like to be added**:
|
13
|
+
|
14
|
+
**Why is this needed**:
|
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
name: Failing Test
|
3
|
+
about: Report test failures in fluent-plugin-kubernetes-metrics
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
<!-- Please only use this template for submitting reports about failing tests -->
|
11
|
+
|
12
|
+
**Which test(s) are failing**:
|
13
|
+
|
14
|
+
**Since when has it been failing**:
|
15
|
+
|
16
|
+
**Reason for failure**:
|
17
|
+
|
18
|
+
**Anything else we need to know**:
|
@@ -0,0 +1,23 @@
|
|
1
|
+
## Proposed changes
|
2
|
+
|
3
|
+
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.
|
4
|
+
|
5
|
+
## Types of changes
|
6
|
+
|
7
|
+
What types of changes does your code introduce?
|
8
|
+
_Put an `x` in the boxes that apply_
|
9
|
+
|
10
|
+
- [ ] Bugfix (non-breaking change which fixes an issue)
|
11
|
+
- [ ] New feature (non-breaking change which adds functionality)
|
12
|
+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
13
|
+
|
14
|
+
## Checklist
|
15
|
+
|
16
|
+
_Put an `x` in the boxes that apply._
|
17
|
+
|
18
|
+
- [ ] I have read the [CONTRIBUTING](https://github.com/splunk/fluent-plugin-kubernetes-metrics/blob/develop/CONTRIBUTING.md) doc
|
19
|
+
- [ ] I have read the [CLA](https://github.com/splunk/fluent-plugin-kubernetes-metrics/blob/develop/CLA.md)
|
20
|
+
- [ ] I have added tests that prove my fix is effective or that my feature works
|
21
|
+
- [ ] I have added necessary documentation (if appropriate)
|
22
|
+
- [ ] Any dependent changes have been merged and published in downstream modules
|
23
|
+
|
data/CLA.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
By submitting a Contribution to this Work, You agree that Your Contribution is made subject to the primary LICENSE
|
2
|
+
file applicable to this Work. In addition, You represent that: (i) You are the copyright owner of the Contribution
|
3
|
+
or (ii) You have the requisite rights to make the Contribution.
|
4
|
+
|
5
|
+
Definitions:
|
6
|
+
|
7
|
+
“You” shall mean: (i) yourself if you are making a Contribution on your own behalf; or (ii) your company,
|
8
|
+
if you are making a Contribution on behalf of your company. If you are making a Contribution on behalf of your
|
9
|
+
company, you represent that you have the requisite authority to do so.
|
10
|
+
|
11
|
+
"Contribution" shall mean any original work of authorship, including any modifications or additions to an existing
|
12
|
+
work, that is intentionally submitted by You for inclusion in, or documentation of, this project/repository. For the
|
13
|
+
purposes of this definition, "submitted" means any form of electronic, verbal, or written communication submitted for
|
14
|
+
inclusion in this project/repository, including but not limited to communication on electronic mailing lists, source
|
15
|
+
code control systems, and issue tracking systems that are managed by, or on behalf of, the maintainers of
|
16
|
+
the project/repository.
|
17
|
+
|
18
|
+
“Work” shall mean the collective software, content, and documentation in this project/repository.
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
CONTRIBUTING
|
2
|
+
|
3
|
+
By submitting a Contribution to this Work, You agree that Your Contribution is made subject to the primary LICENSE
|
4
|
+
file applicable to this Work. In addition, You represent that: (i) You are the copyright owner of the Contribution
|
5
|
+
or (ii) You have the requisite rights to make the Contribution.
|
6
|
+
|
7
|
+
Definitions:
|
8
|
+
|
9
|
+
“You” shall mean: (i) yourself if you are making a Contribution on your own behalf; or (ii) your company,
|
10
|
+
if you are making a Contribution on behalf of your company. If you are making a Contribution on behalf of your
|
11
|
+
company, you represent that you have the requisite authority to do so.
|
12
|
+
|
13
|
+
"Contribution" shall mean any original work of authorship, including any modifications or additions to an existing
|
14
|
+
work, that is intentionally submitted by You for inclusion in, or documentation of, this project/repository. For the
|
15
|
+
purposes of this definition, "submitted" means any form of electronic, verbal, or written communication submitted for
|
16
|
+
inclusion in this project/repository, including but not limited to communication on electronic mailing lists, source
|
17
|
+
code control systems, and issue tracking systems that are managed by, or on behalf of, the maintainers of
|
18
|
+
the project/repository.
|
19
|
+
|
20
|
+
“Work” shall mean the collective software, content, and documentation in this project/repository.
|
data/CONTRIBUTORS.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Contributors
|
2
|
+
|
3
|
+
Fluentd Plugin for Kubernetes Metrics is developed by Splunkers and the open-source community.
|
4
|
+
|
5
|
+
We thank all of our [contributors](https://github.com/splunk/fluent-plugin-kubernetes-objects/graphs/contributors)!
|
6
|
+
|
7
|
+
**For the detailed history of contributions** of a given file, try
|
8
|
+
|
9
|
+
git blame file
|
10
|
+
|
11
|
+
to see line-by-line credits and
|
12
|
+
|
13
|
+
git log --follow file
|
14
|
+
|
15
|
+
to see the change log even across renames and rewrites.
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fluent-plugin-kubernetes-metrics (1.1.2)
|
5
|
+
fluentd (~> 1.4.0)
|
6
|
+
kubeclient (~> 4.2.2)
|
7
|
+
multi_json (~> 1.13.1)
|
8
|
+
oj (~> 3.7.9)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
addressable (2.6.0)
|
14
|
+
public_suffix (>= 2.0.2, < 4.0)
|
15
|
+
cool.io (1.5.4)
|
16
|
+
crack (0.4.3)
|
17
|
+
safe_yaml (~> 1.0.0)
|
18
|
+
dig_rb (1.0.1)
|
19
|
+
docile (1.3.1)
|
20
|
+
domain_name (0.5.20190701)
|
21
|
+
unf (>= 0.0.5, < 1.0.0)
|
22
|
+
fluentd (1.4.2)
|
23
|
+
cool.io (>= 1.4.5, < 2.0.0)
|
24
|
+
dig_rb (~> 1.0.0)
|
25
|
+
http_parser.rb (>= 0.5.1, < 0.7.0)
|
26
|
+
msgpack (>= 0.7.0, < 2.0.0)
|
27
|
+
serverengine (>= 2.0.4, < 3.0.0)
|
28
|
+
sigdump (~> 0.2.2)
|
29
|
+
strptime (>= 0.2.2, < 1.0.0)
|
30
|
+
tzinfo (~> 1.0)
|
31
|
+
tzinfo-data (~> 1.0)
|
32
|
+
yajl-ruby (~> 1.0)
|
33
|
+
hashdiff (0.3.8)
|
34
|
+
http (3.3.0)
|
35
|
+
addressable (~> 2.3)
|
36
|
+
http-cookie (~> 1.0)
|
37
|
+
http-form_data (~> 2.0)
|
38
|
+
http_parser.rb (~> 0.6.0)
|
39
|
+
http-accept (1.7.0)
|
40
|
+
http-cookie (1.0.3)
|
41
|
+
domain_name (~> 0.5)
|
42
|
+
http-form_data (2.1.1)
|
43
|
+
http_parser.rb (0.6.0)
|
44
|
+
json (2.1.0)
|
45
|
+
kubeclient (4.2.2)
|
46
|
+
http (~> 3.0)
|
47
|
+
recursive-open-struct (~> 1.0, >= 1.0.4)
|
48
|
+
rest-client (~> 2.0)
|
49
|
+
mime-types (3.3)
|
50
|
+
mime-types-data (~> 3.2015)
|
51
|
+
mime-types-data (3.2019.1009)
|
52
|
+
msgpack (1.3.1)
|
53
|
+
multi_json (1.13.1)
|
54
|
+
netrc (0.11.0)
|
55
|
+
oj (3.7.12)
|
56
|
+
power_assert (1.1.3)
|
57
|
+
public_suffix (3.0.3)
|
58
|
+
rake (12.3.2)
|
59
|
+
recursive-open-struct (1.1.0)
|
60
|
+
rest-client (2.1.0)
|
61
|
+
http-accept (>= 1.7.0, < 2.0)
|
62
|
+
http-cookie (>= 1.0.2, < 2.0)
|
63
|
+
mime-types (>= 1.16, < 4.0)
|
64
|
+
netrc (~> 0.8)
|
65
|
+
safe_yaml (1.0.4)
|
66
|
+
serverengine (2.1.1)
|
67
|
+
sigdump (~> 0.2.2)
|
68
|
+
sigdump (0.2.4)
|
69
|
+
simplecov (0.16.1)
|
70
|
+
docile (~> 1.1)
|
71
|
+
json (>= 1.8, < 3)
|
72
|
+
simplecov-html (~> 0.10.0)
|
73
|
+
simplecov-html (0.10.2)
|
74
|
+
strptime (0.2.3)
|
75
|
+
test-unit (3.3.0)
|
76
|
+
power_assert
|
77
|
+
thread_safe (0.3.6)
|
78
|
+
tzinfo (1.2.5)
|
79
|
+
thread_safe (~> 0.1)
|
80
|
+
tzinfo-data (1.2019.3)
|
81
|
+
tzinfo (>= 1.0.0)
|
82
|
+
unf (0.1.4)
|
83
|
+
unf_ext
|
84
|
+
unf_ext (0.0.7.6)
|
85
|
+
webmock (3.5.1)
|
86
|
+
addressable (>= 2.3.6)
|
87
|
+
crack (>= 0.3.2)
|
88
|
+
hashdiff
|
89
|
+
yajl-ruby (1.4.1)
|
90
|
+
|
91
|
+
PLATFORMS
|
92
|
+
ruby
|
93
|
+
|
94
|
+
DEPENDENCIES
|
95
|
+
bundler (~> 2.0.0)
|
96
|
+
fluent-plugin-kubernetes-metrics!
|
97
|
+
rake (~> 12.3.2)
|
98
|
+
simplecov (~> 0.16.1)
|
99
|
+
test-unit (~> 3.3.0)
|
100
|
+
webmock (~> 3.5.1)
|
101
|
+
|
102
|
+
BUNDLED WITH
|
103
|
+
2.0.2
|