The templates etc. that came with thold seem fine however :-/
Both the data source and graph are templated, and all looks OK.
The RRA is id 12, and this appears in the URL OK.
I've pulled out what I think are the right queries from plugins/thold/thold.php:
Code: Select all
mysql> select id,data_source_name from data_template_rrd where local_data_id=12
-> ;
+-----+------------------+
| id | data_source_name |
+-----+------------------+
| 109 | time |
| 108 | statusCode |
| 110 | md5sum |
+-----+------------------+
3 rows in set (0.00 sec)
mysql> SELECT id FROM data_template_rrd WHERE local_data_id=12
-> ;
+-----+
| id |
+-----+
| 109 |
| 108 |
| 110 |
+-----+
3 rows in set (0.00 sec)
mysql> SELECT DISTINCT local_graph_id FROM graph_templates_item WHERE task_item_id=109
-> ;
+----------------+
| local_graph_id |
+----------------+
| 8 |
+----------------+
1 row in set (0.00 sec)
If I hard-code the correct rrdlookup value (one greater than the one if finds itself it all goes well, on the setup GUI, but the 'current' value never appears on the thold summary page, even though the graph is up dateing.
Umm ?