I am trying to extract some raw data from the backend MySQL database. All I would like to do is print an item name, and the values associated with that item name over a given time period. To get the name of the item, it seems logical to do:
However, for items that are discovered / have placeholders in their name, the names come up as:
When I am expecting:
Is there any way to get the resolved item names?
Code:
SELECT name FROM items WHERE itemid = xxxxx;
Code:
Total disk space on $1 Used disk space on $1
Code:
Total disk space on /mnt/xxx/ Used disk space on /mnt/yyy/
Comment