I have an web (PHP) application that collects some internal usage statistics (like memory usage, transfer speed, compression ratio/speed, etc). By using the collected data I want to create a report (a chart, a bar graph, etc) that shows this data.
Usually we have (at least) two options:
- write the report with the aid of some PHP reporting engine
- use an external web service where (i) I can define a report specification up-front and (ii) feed the web service with the data collected from user and retrieve (an object/image) the report representation of that data.
I'm wondering if I can use the Google Reporting API as in the case 2) above.
Everything I read about Google Reporting API looks like the Reporting API is used in connection with data collected by Google (or pushed to Google), i.e. Google Analytics.
Google has a powerful reporting engine. If I could use it somehow to create custom reports using custom data it will be a big help for my project.
@Edit: may Google Charts be the answer? I will read their specification and I'll come later with my own answer.