forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile for metricbeat to test cgroups (elastic#2492)
run make up ENV=5.0.0-cgroups.yml
- Loading branch information
1 parent
8bb42ea
commit 848ccf7
Showing
6 changed files
with
147 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,3 @@ logstash: | |
kibana: | ||
build: ./docker/kibana | ||
dockerfile: Dockerfile-5.0.0-alpha5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This should test the environment with the latest snapshots | ||
# This is based on base.yml | ||
|
||
elasticsearch: | ||
build: ./docker/elasticsearch | ||
dockerfile: Dockerfile-5.0.0-alpha5 | ||
command: elasticsearch -Enetwork.host=0.0.0.0 -Ediscovery.zen.minimum_master_nodes=1 -Ebootstrap.ignore_system_bootstrap_checks=true | ||
|
||
logstash: | ||
build: ./docker/logstash | ||
dockerfile: Dockerfile-5.0.0-alpha5 | ||
|
||
kibana: | ||
build: ./docker/kibana | ||
dockerfile: Dockerfile-5.0.0-alpha5 | ||
|
||
metricbeat: | ||
build: ./docker/metricbeat | ||
dockerfile: Dockerfile-5.0.0-cgroups | ||
links: | ||
- elasticsearch | ||
volumes: | ||
- "/proc:/hostfs/proc:ro" | ||
- "/sys/fs/cgroup:/hostfs/sys/fs/cgroup" | ||
command: -system.hostfs=/hostfs -E output.elasticsearch.hosts=elasticsearch -E metricbeat.modules.0.cgroups=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
testing/environments/docker/metricbeat/Dockerfile-5.0.0-cgroups
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER Monica Sarbu <monica@elastic.co> | ||
|
||
ENV METRICBEAT_FILE=metricbeat-6.0.0-alpha1-SNAPSHOT-linux-x86_64 | ||
|
||
ADD https://beats-nightlies.s3.amazonaws.com/metricbeat/$METRICBEAT_FILE.tar.gz /$METRICBEAT_FILE.tar.gz | ||
|
||
RUN tar -xzvf $METRICBEAT_FILE.tar.gz && \ | ||
ln -s $METRICBEAT_FILE metricbeat | ||
|
||
EXPOSE 8080 | ||
ENTRYPOINT ["/metricbeat/metricbeat", "-httpprof", "0.0.0.0:8080", "-c", "/metricbeat/metricbeat.yml", "-e", "-v"] |
103 changes: 103 additions & 0 deletions
103
testing/environments/docker/metricbeat/config/metricbeat.cgroups.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
###################### Metricbeat Configuration Example ####################### | ||
|
||
# This file is an example configuration file highlighting only the most common | ||
# options. The metricbeat.full.yml file from the same directory contains all the | ||
# supported options with more comments. You can use it as a reference. | ||
# | ||
# You can find the full configuration reference here: | ||
# https://www.elastic.co/guide/en/beats/metricbeat/index.html | ||
|
||
#========================== Modules configuration ============================ | ||
metricbeat.modules: | ||
|
||
#------------------------------- System Module ------------------------------- | ||
- module: system | ||
metricsets: | ||
# CPU stats | ||
- cpu | ||
|
||
# System Load stats | ||
- load | ||
|
||
# Per CPU core stats | ||
#- core | ||
|
||
# IO stats | ||
#- diskio | ||
|
||
# Per filesystem stats | ||
- filesystem | ||
|
||
# File system summary stats | ||
#- fsstat | ||
|
||
# Memory stats | ||
- memory | ||
|
||
# Network stats | ||
- network | ||
|
||
# Per process stats | ||
- process | ||
enabled: true | ||
period: 10s | ||
processes: ['.*'] | ||
cgroups: true | ||
|
||
|
||
|
||
#================================ General ===================================== | ||
|
||
# The name of the shipper that publishes the network data. It can be used to group | ||
# all the transactions sent by a single shipper in the web interface. | ||
#name: | ||
|
||
# The tags of the shipper are included in their own field with each | ||
# transaction published. | ||
#tags: ["service-X", "web-tier"] | ||
|
||
# Optional fields that you can specify to add additional information to the | ||
# output. | ||
#fields: | ||
# env: staging | ||
|
||
#================================ Outputs ===================================== | ||
|
||
# Configure what outputs to use when sending the data collected by the beat. | ||
# Multiple outputs may be used. | ||
|
||
#-------------------------- Elasticsearch output ------------------------------ | ||
output.elasticsearch: | ||
# Array of hosts to connect to. | ||
hosts: ["localhost:9200"] | ||
|
||
# Optional protocol and basic auth credentials. | ||
#protocol: "https" | ||
#username: "elastic" | ||
#password: "changeme" | ||
|
||
#----------------------------- Logstash output -------------------------------- | ||
#output.logstash: | ||
# The Logstash hosts | ||
#hosts: ["localhost:5044"] | ||
|
||
# Optional SSL. By default is off. | ||
# List of root certificates for HTTPS server verifications | ||
#ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] | ||
|
||
# Certificate for SSL client authentication | ||
#ssl.certificate: "/etc/pki/client/cert.pem" | ||
|
||
# Client Certificate Key | ||
#ssl.key: "/etc/pki/client/cert.key" | ||
|
||
#================================ Logging ===================================== | ||
|
||
# Sets log level. The default log level is info. | ||
# Available log levels are: critical, error, warning, info, debug | ||
#logging.level: debug | ||
|
||
# At debug level, you can selectively enable logging only for some components. | ||
# To enable all selectors use ["*"]. Examples of other selectors are "beat", | ||
# "publish", "service". | ||
#logging.selectors: ["*"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters