Google分析问题或限制

I want request count of each request on the server. My URL can be www.domain.com?module=development_dashboard&action=login.

Google analytics work fine in this case.

But my issue is "If I call a module's action using ajax and It returns data in the format on JSON". I guess in such case Google analytics will not able to track that request.

Is there any alliterate way to get it done.

You could use Google's Event Tracking to track whenever your ajax call fires its success call back.

success: function() {
    _gaq.push(['_trackEvent', 'category', 'subcategory', 'details']);
}