I'm trying to create a custom iReport that includes an area chart (e.g. CPU Usage). My series query is as follows:
"SELECT s.val as Value, FROM_UNIXTIME(s.ttime/1000) as Time FROM OpManagerDB.statsdata_hourly s join OpManagerDB.polleddata p ON p.id = s.pollid WHERE p.agent LIKE 'constellation%' AND s.instance LIKE 'CPU%' ORDER BY p.agent, p.name, s.instance, s.ttime". I have tried different ways to set my category and value expressions and resolved it down to $F{Time} and $F{Value} respectively.
When I attempt to execute the report, I receive the following error:
There does not appear to be much in the way of useful information on the Net for charting with iReports... Any ideas on the problem? Any tips on good reference sites for iReports?