Skip to content

Commit

Permalink
MongoDB metricbeat module
Browse files Browse the repository at this point in the history
* Contains the status metricset, reporting parts of the `db.serverStatus()`
  output. The locks and metrics sections are not yet reported.
* Includes docs, basic integration tests, and  basic system tests
  • Loading branch information
Tudor Golubenco committed Jun 15, 2016
1 parent bd5c6e7 commit 6450d7f
Show file tree
Hide file tree
Showing 26 changed files with 2,474 additions and 1 deletion.
6 changes: 6 additions & 0 deletions metricbeat/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ beat:
build: ${PWD}/.
links:
- apache
- mongodb
- mysql
- nginx
- redis
Expand All @@ -13,6 +14,8 @@ beat:
- NGINX_PORT=80
- REDIS_HOST=redis
- REDIS_PORT=6379
- MONGODB_HOST=mongodb
- MONGODB_PORT=27017
- MYSQL_DSN=root:test@tcp(mysql:3306)/
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
Expand All @@ -34,6 +37,9 @@ kibana:
apache:
build: ${PWD}/module/apache/_meta

mongodb:
image: mongo:3.0

mysql:
image: mysql:5.7.10
environment:
Expand Down
Loading

0 comments on commit 6450d7f

Please sign in to comment.