Skip to content

Commit

Permalink
Add cleanup_timeout option to docker autodiscover (#10905)
Browse files Browse the repository at this point in the history
cleanup_timeout is used in kubernetes autodiscover to wait some time before the
configurations associated to stopped containers are removed. Add an equivalent
option to docker autodiscover.

Fix #10374
  • Loading branch information
jsoriano committed Feb 28, 2019
1 parent fbee6a2 commit f771497
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- ILM will be available by default if Elasticsearch > 7.0 is used. {pull}10347[10347]
- Allow Central Management to send events back to kibana. {issue}9382[9382]
- Initialize the Paths before the keystore and save the keystore into `data/{beatname}.keystore`. {pull}10706[10706]
- Add `cleanup_timeout` option to docker autodiscover, to wait some time before removing configurations after a container is stopped. {issue]10374[10374] {pull}10905[10905]

*Auditbeat*

Expand Down
1 change: 1 addition & 0 deletions filebeat/tests/system/test_autodiscover.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def test_docker(self):
inputs=False,
autodiscover={
'docker': {
'cleanup_timeout': '0s',
'templates': '''
- condition:
equals.docker.container.image: busybox
Expand Down
10 changes: 7 additions & 3 deletions libbeat/autodiscover/providers/docker/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
package docker

import (
"time"

"github.com/elastic/beats/libbeat/autodiscover/template"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/docker"
Expand All @@ -34,13 +36,15 @@ type Config struct {
Appenders []*common.Config `config:"appenders"`
Templates template.MapperSettings `config:"templates"`
Dedot bool `config:"labels.dedot"`
CleanupTimeout time.Duration `config:"cleanup_timeout"`
}

func defaultConfig() *Config {
return &Config{
Host: "unix:///var/run/docker.sock",
Prefix: "co.elastic",
Dedot: true,
Host: "unix:///var/run/docker.sock",
Prefix: "co.elastic",
Dedot: true,
CleanupTimeout: 60 * time.Second,
}
}

Expand Down
5 changes: 4 additions & 1 deletion libbeat/autodiscover/providers/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package docker

import (
"errors"
"time"

"github.com/gofrs/uuid"

Expand Down Expand Up @@ -115,7 +116,9 @@ func (d *Provider) Start() {
d.emitContainer(event, "start")

case event := <-d.stopListener.Events():
d.emitContainer(event, "stop")
time.AfterFunc(d.config.CleanupTimeout, func() {
d.emitContainer(event, "stop")
})
}
}
}()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ func TestDockerStart(t *testing.T) {
t.Fatal(err)
}
bus := bus.New("test")
config := common.NewConfig()
provider, err := AutodiscoverBuilder(bus, UUID, config)
config := defaultConfig()
config.CleanupTimeout = 0
provider, err := AutodiscoverBuilder(bus, UUID, common.MustNewConfigFrom(config))
if err != nil {
t.Fatal(err)
}
Expand Down
3 changes: 3 additions & 0 deletions metricbeat/tests/system/test_autodiscover.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def test_docker(self):
self.render_config_template(
autodiscover={
'docker': {
'cleanup_timeout': '0s',
'templates': '''
- condition:
equals.docker.container.image: memcached:latest
Expand Down Expand Up @@ -69,6 +70,7 @@ def test_docker_labels(self):
self.render_config_template(
autodiscover={
'docker': {
'cleanup_timeout': '0s',
'hints.enabled': 'true',
},
},
Expand Down Expand Up @@ -111,6 +113,7 @@ def test_config_appender(self):
self.render_config_template(
autodiscover={
'docker': {
'cleanup_timeout': '0s',
'hints.enabled': 'true',
'appenders': '''
- type: config
Expand Down

0 comments on commit f771497

Please sign in to comment.