I think there are 2 ways to achieve this with Google Analytics.
One would be to use your own GA account on the blog, then use the Google Analytics reports API http://code.google.com/apis/analytics/docs/gdata/gdataDeveloperGuide.html to present post owners with their stats. Most likely a filter on the data (filtering by Page URL) will be enough, but you should carefully review what data you want to make available, as well as Quota policies for feed retrieval (if you are planning to do live queries). Be aware that a mistake could make critical data visible to all post owners.
Another option - if post owners have a dedicated piece of the site that they really own - would be to give them the ability to add their own Google Analytics account to their pages. That's what many blog platforms do for bloggers. EventBrite for example lets you do that for your Events.
A last option is to just present your log data - hits, referrals, time of days. etc. But a lot of data will be more difficult to get : Unique Visitors (requires cookies or some deduplication), Geographic data (that would require a database of geo ip locations, etc).
It all boils down to how critical these analytics are for your project, and how much control you want to have over the data....