2009年6月4日、 Google Analytics のイベントトラッキング機能が標準装備されました。
任意でjavascriptを変更する必要がありますが、追跡できることはたとえば、
1、PDFファイルのダウンロード
2、AJAXのサイトとの相互作用
3、FLASHやその他メディアの埋め込み など
すでに、 Analytics にイベントトラッキングが表示されているので一度見てください。
[コンテンツサマリー]から、 [イベントトラッキング]にはいるとさまざまなアクション名が入っています。
イベントトラッキング機能を使用するには、urchin.js を使用した以前のバージョンではなく、新しいga.js バージョンを使用しなくてはいけません。

イベントトラッキングを実装するには、こちらをご覧下さい。
http://code.google.com/intl/ja/apis/analytics/docs/tracking/eventTrackerGuide.html#Examples
ただし、英語ですが(笑)
category (required)
The name you supply for the group of objects you want to track.
action (required)
A string that is uniquely paired with each category, and commonly used to define the type of user interaction for the web object.
label (optional)
An optional string to provide additional dimensions to the event data.
value (optional)
An integer that you can use to provide numerical data about the user event.
ようするに、ユーザー定義で意図的にonclick を使用するように、リンク先の<a>タグでトラッキングイベントコードを入力する必要があるということです。
任意でjavascriptを変更する必要がありますが、追跡できることはたとえば、
1、PDFファイルのダウンロード
2、AJAXのサイトとの相互作用
3、FLASHやその他メディアの埋め込み など
すでに、 Analytics にイベントトラッキングが表示されているので一度見てください。
[コンテンツサマリー]から、 [イベントトラッキング]にはいるとさまざまなアクション名が入っています。
イベントトラッキング機能を使用するには、urchin.js を使用した以前のバージョンではなく、新しいga.js バージョンを使用しなくてはいけません。

イベントトラッキングを実装するには、こちらをご覧下さい。
http://code.google.com/intl/ja/apis/analytics/docs/tracking/eventTrackerGuide.html#Examples
ただし、英語ですが(笑)
_trackEvent(category, action, optional_label, optional_value)
category (required)
The name you supply for the group of objects you want to track.
action (required)
A string that is uniquely paired with each category, and commonly used to define the type of user interaction for the web object.
label (optional)
An optional string to provide additional dimensions to the event data.
value (optional)
An integer that you can use to provide numerical data about the user event.
ようするに、ユーザー定義で意図的にonclick を使用するように、リンク先の<a>タグでトラッキングイベントコードを入力する必要があるということです。




