Hey,
Something which won't be done. Possibly is impractical due to bandwidth whatever. But I thought I would throw it out there.
<accent=german> It would be really cool, </accent>
if I could get a realtime data stream from google. This data stream would work like this.
GoogleDataStream dataStream = new GoogleDataStream(credentials);
dataStream.setSource(account / campaign / whatever);
dataStream.setDataIncluded(clicks,impressions, changes, etc);
dataStream.setAggregationInterval("30 minute");
InputStream i = dataStream.openStream();
And then I would read the inputstream and send the data into our database.
I would keep the stream open throughout the day. Doing a block/read on it.
I actually thought this is how you implemented your new reports. I thought you had done something like making a report a process, and then having that report aggregate data though time incrementally, instead of querying somewhere. But, seeing your most recent report changes, I suppose this is not the case.
Anyhow.
<accent=arnold schwarz>I would think this would be really cool.</accent>
-tim