Ce matin petit soucis sur un graphique "CONNECTION MYSQL" sur cacti, les RRD, et les connections étant OK j'ai activé le mode DEBUG du graph et là j'ai trouvée l'erreur suivante:  ERROR: invalid y-grid format 

Voici la solution:

Se connecter à mysql, à la base cacti puis aller chercher l'ID du graph en cause.

select * from graph_templates_graph where title like "%MySQL - Connections%";

Une fois l'ID trouvé, exécuter la requête suivante:

update graph_templates_graph set unit_value=NULL where id=IDTROUVEE;

/.. Source ../