Daijiro Fukuda

Results 519 comments of Daijiro Fukuda

For docker images, we can change this in `ENTRYPOINT`. https://github.com/fluent/fluentd-docker-image/blob/89d5c78641633b5ea8acff6958f484ef75c45160/v1.18/debian/Dockerfile#L64 Example: ``` ENTRYPOINT ["tini", "--", "/bin/entrypoint.sh", "--umask", "0000"] ```

Sorry. There are some limitations for `--umask`. It would not work for Fluentd Docker images. * Fluentd v1.14.6 ~ v1.18.0: `--umask` works only when using `--no-supervisor`. * This will be...

I want to specify `min_level` and `max_level` per post. For example, it would be nice to be able to specify them as follows. ```yaml --- layout: post title: "Welcome to...

@schmittnieto Thanks! https://github.com/allejo/jekyll-toc works! ``` {% if page.toc %} {% include toc.html html=content h_min=page.toc.h_min h_max=page.toc.h_max %} {% endif %} ``` ``` --- toc: h_min: 3 --- ``` My problem is...

The basic implementation is done. Some concept of #4654 is reflected. Thanks @Watson1978!

Thanks for your review!

> during zeroDowntimeRetart, other HTTP endpoints result in non-guarded state. it it intentional? Yes. The old Fluentd should continue to work as is until it receives SIGTERM at `4.`. (Even...

Thanks for your review!

Thanks for your report! It appears that some dependencies conflict with each other. We need to check it.

At least, `fluent-plugin-azure-storage-append-blob` requires `faraday v1`. On the other hand, `swd v2` requires `faraday v2`. Using `swd v1` may solve the error.