Skip to content

Commit

Permalink
Add cleanup_timeout option to docker autodiscover (elastic#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 elastic#10374

(cherry picked from commit f771497)
  • Loading branch information
jsoriano committed Mar 14, 2019
1 parent 548136b commit d62a7c8
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ https://github.com/elastic/beats/compare/v6.6.0...6.x[Check the HEAD diff]
- Allow Central Management to send events back to kibana. {issue}9382[9382]
- Fix panic if fields settting is used to configure `hosts.x` fields. {issue}10824[10824] {pull}10935[10935]
- Introduce query.default_field as part of the template. {pull}11205[11205]
- 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
19 changes: 11 additions & 8 deletions libbeat/autodiscover/providers/docker/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,24 @@
package docker

import (
"time"

"github.com/elastic/beats/libbeat/autodiscover/template"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/docker"
)

// Config for docker autodiscover provider
type Config struct {
Host string `config:"host"`
TLS *docker.TLSConfig `config:"ssl"`
Prefix string `config:"prefix"`
HintsEnabled bool `config:"hints.enabled"`
Builders []*common.Config `config:"builders"`
Appenders []*common.Config `config:"appenders"`
Templates template.MapperSettings `config:"templates"`
Dedot bool `config:"labels.dedot"`
Host string `config:"host"`
TLS *docker.TLSConfig `config:"ssl"`
Prefix string `config:"prefix"`
HintsEnabled bool `config:"hints.enabled"`
Builders []*common.Config `config:"builders"`
Appenders []*common.Config `config:"appenders"`
Templates template.MapperSettings `config:"templates"`
Dedot bool `config:"labels.dedot"`
CleanupTimeout time.Duration `config:"cleanup_timeout"`
}

func defaultConfig() *Config {
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 d62a7c8

Please sign in to comment.