You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe
We often have long description of switch and router interface.
Theses descriptions generated long threshold name.
However, by default, the threshold name in Cacti database is limited by 100 characters.
Consequently, interface threshold name are often truncated.
Describe the solution you'd like
A solution like the ability to change the maximum title length in menu "Console" > "Configuration" > "Visual" > "Graph/Data Source/Data Query Settings" > "Maximum Title Length".
Additional context
Currently, I modify this length with commands below.
$ mysql -D cacti -u cactiuser -p
MariaDB [cacti]> ALTER TABLE thold_data MODIFY COLUMN name VARCHAR(200);
MariaDB [cacti]> ALTER TABLE thold_data MODIFY COLUMN name_cache VARCHAR(200);
A more user friendly solution will be very appreciate.
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem? Please describe
We often have long description of switch and router interface.
Theses descriptions generated long threshold name.
However, by default, the threshold name in Cacti database is limited by 100 characters.
Consequently, interface threshold name are often truncated.
Describe the solution you'd like
A solution like the ability to change the maximum title length in menu "Console" > "Configuration" > "Visual" > "Graph/Data Source/Data Query Settings" > "Maximum Title Length".
Additional context
Currently, I modify this length with commands below.
$ mysql -D cacti -u cactiuser -p
MariaDB [cacti]> ALTER TABLE thold_data MODIFY COLUMN name VARCHAR(200);
MariaDB [cacti]> ALTER TABLE thold_data MODIFY COLUMN name_cache VARCHAR(200);
A more user friendly solution will be very appreciate.
The text was updated successfully, but these errors were encountered: