I have added event tracking to my site, I am receiving a 200 response and everything looks in a working conditions. I am using the following method I coded :
function track(event, action) {
_gaq.push(['_trackEvent', 'Website Name and Section', event, action]);
}
And binding it come click event to call the method passing through values like this :
track("Facebook Share", "click");
BUT on Google Analytics only display the amount of events logged (21,549), but not showing up in the break down??? See the screenshot below:

Please let me know what I can do to fix this issue… coz it clearly logs it, but not displaying it and making it available to view the event info.
I fixed it by making sure the latest GA Script was used, grabbing it from the Google Analytics console, and adding it before the closing
</head>tag.And my existing tracking event code worked 100%!
Usage :