Everything posted by fabianonline
-
PSA: Missing vDisks in VMs changed in Unraid 7
Hey, just a short info for those of you having problems modifying VMs from pre-7.0 (I think) with multiple vDisks attached: Every vDisk needs to have a value in "Boot order". Otherwise, it will not be visible to the VM. I have such a VM. After upgrading to 7.0, it still worked fine. That is, until I modified it to assign more RAM. After that it didn't boot anymore because it couldn't find all vDisks except the first one. Setting Boot orders for the other vDisks solved this problem. (Of course there were a few hours of trying different things and looking for solutions in there...) So, if you happen to stumble across this problem as well: Set a boot order.
-
[Plugin] [Beta-Testers wanted] Zabbix-agent
I would love to switch to agent2 - but as of now there is no Download option for agent2 at https://www.zabbix.com/download_agents. As long as there is no agent2 download provided there, I can't do anything, I think.
-
[Plugin] [Beta-Testers wanted] Zabbix-agent
I would - if there was a static build of zabbix_agent2 available for download at zabbix.com. Currently, there isn't one. Otherwise, I would. I'll have a look into either getting a build of zabbix_agent2 from somewhere else - or alternatively add a few scripts to generate docker data.
-
[Plugin] [Beta-Testers wanted] Zabbix-agent
The agent config file is at /boot/config/plugins/zabbix_agent/zabbix_agentd.conf. But it will be overwritten by an update... Today I've released version 2020.11.25.1, which allows you to add your own config snippet at /boot/config/plugins/zabbix_agent/zabbix_agentd.custom.conf. This file will be included by the main config and is guaranteed to not be overwritten by an update of the plugin. If you're adding your own UserParameters, please be aware that the list of allowed keys is very strict. So, in order to be allowed to access your custom UserParameters, you can either: Prefix them with "custom.", e.g. UserParameter=custom.test,echo "Hello World" Add it to the Allowlist using "AllowKey". Erm... yes. I somehow missed the release of 5.2... I've pushed version 2020.11.25.1 which includes zabbix_agent 5.2.1.
-
[Plugin] [Beta-Testers wanted] Zabbix-agent
Yes, this plugin contains zabbix agent version 5.0.2 at the moment.
-
[Plugin] [Beta-Testers wanted] Zabbix-agent
Docker containers are great because they provide an isolated environment for apps to run in. But for monitoring the whole system, I want the tool that's doing the monitoring (zabbix_agent in this case) to be able to monitor as much of the system as possible. The docker container you mentioned solved this by using privileged mode and the instructions tell you to make the disks available to the container. That way, that isolation I mentioned earlier is not really given any more. I think, in this case a natively running app is of more use than a container. Also, my plugin provides some scripts for zabbix to monitor UnRAID features and VMs and stuff which (at least during my quick search for it) isn't the case for the docker container.
-
[Plugin] [Beta-Testers wanted] Zabbix-agent
"Zabbix is the ultimate enterprise-level software designed for real-time monitoring of millions of metrics collected from tens of thousands of servers, virtual machines and network devices. Zabbix is Open Source and comes at no cost." (https://www.zabbix.com) I'm using Zabbix to monitor my machines and VMs and stuff. I also wanted to monitor my UnRAID server using it. To do this, you need to have the zabbix_agent installed and running. To do this, I've written a plugin. It includes the zabbix_agent (statically linked binary directly from https://www.zabbix.com/download_agents), the stuff needed to have it run on boot as well as a few scripts to get information from UnRAID. I'm using the plugin myself and have installed, updated and uninstalled it lots of time and everything seems to work just fine. But since this is my first plugin, I'd be happy to have one or two other users who know what they're doing and risking have a look at it first. Please only continue on if you know what you're doing! The source code and stuff can be found at https://git.schle.nz/fabian/unraid-zabbix_agent. The Plugin file for installation in UnRAID is https://git.schle.nz/fabian/unraid-zabbix_agent/raw/branch/main/zabbix_agent.plg For easy integration into your Zabbix service, a template file is available at https://git.schle.nz/fabian/unraid-zabbix_agent/raw/branch/main/zabbix_template.xml Thanks. ;-)