以下の4つの値を記録できます。
gaコマンドキューのsendコマンドから送信します。send - ga コマンドキュー リファレンス | ウェブ向けアナリティクス(analytics.js) | Google Developers
ga( 'send', 'event', eventCategory, // カテゴリ (文字列) eventAction, // アクション (文字列) [eventLabel], // ラベル (文字列) [eventValue], // 値 (整数) [fieldsObject] // );実装 - イベント トラッキング | ウェブ向けアナリティクス(analytics.js) | Google Developers
最初の'send'と'event'は固定で、それに続く引数でイベントの値を送信します。eventCategoryとeventActionは必須ですが、後は省略できます。