-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kibana container shutting down in less than a day #51
Comments
Hi, did you made any changes in the configuration? What version of docker / docker-compose are you using? |
Docker version 1.10.3, build 20f81dd With the original config. I've added a filter to Logstash config — that's all |
Weird, maybe the issue is related to your network? I also found that post: https://discuss.elastic.co/t/kibana-flapping-between-red-and-green/36328/9 The issue here was the memory associated to the Node process. Seems that a way to solve this is to update the NODE_OPTIONS environment variable before starting the Kibana process. NODE_OPTIONS="--max-old-space-size=250" bin/kibana You could try to update the compose definition of the Kibana container like this: kibana:
build: kibana/
environment:
NODE_OPTIONS: "--max-old-space-size=250"
volumes:
- ./kibana/config/:/opt/kibana/config/
ports:
- "5601:5601"
links:
- elasticsearch Of course, you may need to adjust the memory value according to your needs (the available memory on your system I guess). See these issues for more info: Let me know if that solves your issue. |
@Rhjulskov any news? |
Sorry for the late response. I just restarted the compose file with the new changes. I'll response to the issue in a day or two. Thanks a lot for your time :) |
@Rhjulskov can I assume that everything is fine? :) |
Yes it is. Thanks alot! :) |
I'm running a single node on a VM where I have the option to add a lot of RAM/CPU. Our elk stack crashes as well after awhile. I just pulled the latest image and am trying it now. Is this fixed in the latest image? tnx |
@stonefury please have a look at this comment: #51 (comment) |
Ah, ok thank you @deviantony. Appreciate it! Cheers. |
When upping docker-compose on Azure, the Kibana container shuts down after ~1 day. Everything ells keeps running but that.
The containers logs is as follows:
The text was updated successfully, but these errors were encountered: