The zabbix dashboard, specifically the last 20 issues section, takes anywhere from 30 sec to a couple minutes to load. I've looked at the resource usage on the server and everything looks ok. Is there a zabbix_server.conf change I can make (maybe one of the cache size settings?) or something else anyone knows of to help with this? The rest of the page loads quickly but that specific section takes a really long time.
Ad Widget
Collapse
Zabbix dashboard takes FOREVER to load
Collapse
X
-
Tags: None
-
-
-
Not familiar with MySQL anymore. Purged all my knowledge since moved to PostgreSQL
Take a look at MySQL Reference Manuals for your version and watch out for OPTIMIZE TABLE
A good starting point to tune MySQL for beginners is the MySQL Performance Tuning Primer ScriptComment
-
You can try to upgrade to zabbix 2.0.5, lots of performance issues were resolved. For me, for example, it services tooks 1 minutes and 10 seconds to open, now... It´s back to the normal time (2 or 3 seconds). The "last 20 issues" from dashboard are faster now too.Comment
-
Thanks for the advice - I'll look into this.Not familiar with MySQL anymore. Purged all my knowledge since moved to PostgreSQL
Take a look at MySQL Reference Manuals for your version and watch out for OPTIMIZE TABLE
A good starting point to tune MySQL for beginners is the MySQL Performance Tuning Primer Script
@m_gularte - I'm currently running 2.0.4. Is this what you upgraded from? Or were you running 1.8?Comment
-
Comment
-
Sounds like a plan. I've never done an "upgrade" of Zabbix. When I moved from 1.8 to 2.0.4 I just wiped and started from scratch. Looking around the documentation online (https://www.zabbix.com/documentation...lation/upgrade) it talks about going from 1.8 to 2.0 but nothing from 2.0.X to 2.0.5. Do you know of any good guides that are available? I don't want to mess up our current production system.
Comment
-
It´s easy, i use this same script everytime. I wrote the full commands to facilitate, but the directorys may be different... Do a backup before, or install in another machine to test.
cd /root
wget http://prdownloads.sourceforge.net/z...x-2.0.5.tar.gz
tar -zxvf zabbix-2.0.5.tar.gz
/etc/init.d/zabbix_server stop
/etc/init.d/zabbix_agentd stop
cd zabbix-2.0.5
./configure --enable-server --enable-agent --with-mysql --with-net-snmp --with-libcurl --with-ldap --with-openipmi --with-ssh2
make install
cd /srv/www/htdocs/
mv zabbix zabbix-2.0.x.old
mkdir zabbix
cd /root/zabbix-2.0.5/frontends/php
cp * /srv/www/htdocs/zabbix -R
cp /srv/www/htdocs/zabbix-2.0.x.old/conf/zabbix.conf.php /srv/www/htdocs/zabbix/conf/
/etc/init.d/zabbix_server start
/etc/init.d/zabbix_agentd start
zabbix_server --versionComment
-
Comment