Martin Passing

Results 7 comments of Martin Passing

you can prevent telegraf from sending "create database" requests: ``` [[outputs.influxdb]] skip_database_creation = true ... ``` see https://github.com/influxdata/telegraf/tree/master/plugins/outputs/influxdb

The Documentation clearly misses the feature, that the rollover action resets the index age for later actions. The following statement is also a bit misleading: > Configured minimum ages must...

@acchen97 we would also benefit from this: We are processing logs where each document has a specific "application-name" field, referring to the application that the log came from. We want...

here's btw. another workaround for the missing caching option: https://reactivelabs.com/blog/2019/01/31/speeding-up-logstash-data-enrichment-with-memcached/ just this adds quite some complexity to the logstash configuration besides requiring to run some memcached instance

as a workaround, you can create and use your own docker image like this: ```Dockerfile FROM bin.private.zooplus.net/beats/filebeat:8.17.1 USER root RUN apt-get install -y systemd USER 1000 ``` but preferably this...

apparently, the issue has been solved in version 8.18.3 (in addition to 9.0.1): ```sh $ docker run --rm -it --user root --entrypoint journalctl docker.elastic.co/beats/filebeat:8.18.3 --version systemd 255 (255.4-1ubuntu8.8) ```

hi @jnoordsij thank you for this really nice addition! I'd just like to suggest a small change: Since GOMEMLIMIT is just a "[soft limit](https://pkg.go.dev/runtime#hdr-Environment_Variables)", it is expected that the total...