-
Hi @FantasticFiasco , If I use DurableHttpUsingFileSizeRolledBuffers, Is it better to give container volume path to write the buffer file? Or just default path will work fine? Does logs are deleted from buffer file once it's sent to elastic? I tried to give path .WriteTo.DurableHttpUsingFileSizeRolledBuffers(string.IsNullOrWhiteSpace(logstashUrl) ? "http://logstash:8080" : logstashUrl, "logs/Buffer") But its not working. Its taking only file name. Any was we can give container volume path? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Got it resolved with absolute path:
and docker volume mapping: Thanks for help. |
Beta Was this translation helpful? Give feedback.
Got it resolved with absolute path:
and docker volume mapping:
logs:/app/BufferLogs/
Thanks for help.