Reputation: 534
How can a front end user reorder his favorite graphs shortcuts on the Zabbix Dashboard page?
If it's not possible, how can the admin do that from the database?
The relevant information is stored on the profiles
table (refer to this answer). I've looked at it and concluded that the magnitude of the profileid
column seems to be the metric that determines the order of showing in the dashboard.
But what is the best way to reorder that? Can one do update
commands to change the profileid
numbers safely? Is there other restrictions to do that, other possible implications?
Note: Zabbix version is 2.4.
Upvotes: 0
Views: 335
Reputation: 4153
Yes, in Zabbix 2.4 the dashboard favourite entries are sorted by the profileid
field. You can modify it and change the order of the entries, just make sure to use a non-existent profileid
for the temporary changes.
With entries A=4 and B=5, one could set profileid
of A to 6, B to 4 and finally A to 5, thus reversing the order - if the value of 6 was not in use already.
Having said that, note that somewhere between Zabbix 2.4 and 4.0 the sort order has changed to an alphabetic one. All your changes here would become useless once you upgrade.
Upvotes: 1