Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add couchdb module #9406

Merged
merged 25 commits into from
Jan 28, 2019
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1fe3989
Add couchdb module with server metricset
berfinsari Dec 5, 2018
2a27d07
Add couchdb module
berfinsari Dec 5, 2018
5f03dd8
Adding entry to CHANGELOG
berfinsari Dec 5, 2018
fb6e802
Add comment to exported fields
berfinsari Dec 6, 2018
a091a56
Run make update fmt command in x-pack/metricbeat directory
berfinsari Dec 14, 2018
1ed6361
Add description of fields
berfinsari Dec 19, 2018
0da9615
Change couchdb version in Dockerfile
berfinsari Dec 19, 2018
a8852e5
Update generated docs
berfinsari Dec 19, 2018
1755abc
Merge remote-tracking branch 'upstream/master' into couchdb-module
berfinsari Jan 7, 2019
008fb45
Update generated docs
berfinsari Jan 8, 2019
835357f
Update collected metrics
berfinsari Jan 8, 2019
26227f7
Run make update fmt command in x-pack/metricbeat directory
berfinsari Jan 8, 2019
cac74a7
Add module and metricset releases
berfinsari Jan 9, 2019
362140d
Adding check for errors
berfinsari Jan 9, 2019
ea89d1f
Fix incomplete json in test files
berfinsari Jan 9, 2019
c2ec79f
Update generated docs
berfinsari Jan 9, 2019
068136a
Update server integration test
berfinsari Jan 11, 2019
ab38d19
Change type float to long in fields.yml
berfinsari Jan 11, 2019
88563e0
Update data.json
berfinsari Jan 26, 2019
a744eff
Merge branch 'master' into couchdb-module
berfinsari Jan 26, 2019
38d54e1
Change Couchdb version and Update integration test
berfinsari Jan 26, 2019
af9bfd0
Merge branch 'couchdb-module' of https://github.com/berfinsari/beats …
berfinsari Jan 26, 2019
78baf23
Update fields.go
berfinsari Jan 26, 2019
8a30cb8
Fix fields.go issue
berfinsari Jan 26, 2019
d8eaf90
Fix not documented event in system test
berfinsari Jan 26, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,7 @@ The issue will be fixed in the 6.4.1 release.
- Release prometheus collector metricset as GA. {pull}7660[7660]
- Add Elasticsearch `cluster_stats` metricset. {pull}7638[7638]
- Added `basepath` setting for HTTP-based metricsets {pull}7700[7700]
- Add couchdb module. {pull}9406[9406]

*Packetbeat*

Expand Down
4 changes: 4 additions & 0 deletions metricbeat/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
- ./module/apache/_meta/env
- ./module/ceph/_meta/env
- ./module/couchbase/_meta/env
- ./module/couchdb/_meta/env
- ./module/dropwizard/_meta/env
- ./module/elasticsearch/_meta/env
- ./module/envoyproxy/_meta/env
Expand Down Expand Up @@ -58,6 +59,9 @@ services:
couchbase:
build: ./module/couchbase/_meta

couchdb:
build: ./module/couchdb/_meta

dropwizard:
build: ./module/dropwizard/_meta

Expand Down
Loading