事件可讓您深入瞭解應用程式情況,例如使用者 動作、系統事件或錯誤等
Google Analytics 會自動記錄 事件; 您不需要新增任何程式碼如果您的應用程式需要收集 額外資料,您最多可以記錄 500 種 Analytics 事件類型 。應用程式記錄的事件總數沒有上限。 請注意,事件名稱有大小寫之分,且要記錄的兩個事件 名稱不同,會導致兩個不同的事件。
事前準備
確認您已經設定專案,且可使用 Analytics 描述 開始使用 Analytics for C++
記錄事件
初始化 firebase::analytics
模組後,即可用該模組記錄
透過 LogEvent()
方法建立事件。
為協助您上手,Analytics SDK 定義了 不同類型的應用程式所通用的建議事件,包括 零售業、電子商務、旅遊和遊戲應用程式如要進一步瞭解這些事件 以及使用時機,請瀏覽事件和屬性 一文。
您可以在下列資源中找到建議事件的導入詳細資料 地區:
- 建議事件:查看
Event
常數清單。 - 指定參數:請參閱
Parameters
常數清單。
下列範例說明如何記錄建議的
SELECT_CONTENT
事件:
const analytics::Parameter kSelectContentParameters[] = { analytics::Parameter(analytics::kParameterItemID , id), analytics::Parameter(analytics::kParameterItemName, "name"), analytics::Parameter(analytics::kUserPropertySignUpMethod, "Google"), analytics::Parameter("favorite_food", mFavoriteFood), analytics::Parameter("user_id", mUserId), }; analytics::LogEvent( analytics::kEventSelectContent, kSelectContentParameters, sizeof(kSelectContentParameters) / sizeof(kSelectContentParameters[0]));
除了規定的參數外,您還可以新增下列參數 附加至任何事件:
自訂參數:自訂參數不會直接顯示在 但可以在 Analytics 報表中做為篩選器 可套用至每一份報表的目標對象定義。自訂 參數也會包含在匯出至 BigQuery 的資料中 應用程式已連結至 BigQuery 專案
VALUE
參數:VALUE
是一般用途參數 適合用來累積 Analytics 事件。例如收益、距離、時間和點數。
如果您的應用程式有建議項目以外的特定需求 也可以使用 Analytics 事件類型記錄自訂 Analytics 事件 如以下範例所示:
// Copyright 2016 Google Inc. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "firebase/analytics.h" #include "firebase/analytics/event_names.h" #include "firebase/analytics/parameter_names.h" #include "firebase/analytics/user_property_names.h" #include "firebase/app.h" // Thin OS abstraction layer. #include "main.h" // NOLINT // Execute all methods of the C++ Analytics API. extern "C" int common_main(int argc, const char* argv[]) { namespace analytics = ::firebase::analytics; ::firebase::App* app; LogMessage("Initialize the Analytics library"); #if defined(__ANDROID__) app = ::firebase::App::Create(GetJniEnv(), GetActivity()); #else app = ::firebase::App::Create(); #endif // defined(__ANDROID__) LogMessage("Created the firebase app %x", static_cast<int>(reinterpret_cast<intptr_t>(app))); analytics::Initialize(*app); LogMessage("Initialized the firebase analytics API"); LogMessage("Enabling data collection."); analytics::SetAnalyticsCollectionEnabled(true); // App session times out after 30 minutes. // If the app is placed in the background and returns to the foreground after // the timeout is expired analytics will log a new session. analytics::SetSessionTimeoutDuration(1000 * 60 * 30); LogMessage("Get App Instance ID..."); auto future_result = analytics::GetAnalyticsInstanceId(); while (future_result.status() == firebase::kFutureStatusPending) { if (ProcessEvents(1000)) break; } if (future_result.status() == firebase::kFutureStatusComplete) { LogMessage("Analytics Instance ID %s", future_result.result()->c_str()); } else { LogMessage("ERROR: Failed to fetch Analytics Instance ID %s (%d)", future_result.error_message(), future_result.error()); } LogMessage("Set user properties."); // Set the user's sign up method. analytics::SetUserProperty(analytics::kUserPropertySignUpMethod, "Google"); // Set the user ID. analytics::SetUserId("uber_user_510"); LogMessage("Log current screen."); // Log the user's current screen. analytics::LogEvent(analytics::kEventScreenView, "Firebase Analytics C++ testapp", "testapp" ); // Log an event with no parameters. LogMessage("Log login event."); analytics::LogEvent(analytics::kEventLogin); // Log an event with a floating point parameter. LogMessage("Log progress event."); analytics::LogEvent("progress", "percent", 0.4f); // Log an event with an integer parameter. LogMessage("Log post score event."); analytics::LogEvent(analytics::kEventPostScore, analytics::kParameterScore, 42); // Log an event with a string parameter. LogMessage("Log group join event."); analytics::LogEvent(analytics::kEventJoinGroup, analytics::kParameterGroupID, "spoon_welders"); // Log an event with multiple parameters. LogMessage("Log level up event."); { const analytics::Parameter kLevelUpParameters[] = { analytics::Parameter(analytics::kParameterLevel, 5), analytics::Parameter(analytics::kParameterCharacter, "mrspoon"), analytics::Parameter("hit_accuracy", 3.14f), }; analytics::LogEvent( analytics::kEventLevelUp, kLevelUpParameters, sizeof(kLevelUpParameters) / sizeof(kLevelUpParameters[0])); } LogMessage("Complete"); // Wait until the user wants to quit the app. while (!ProcessEvents(1000)) { } analytics::Terminate(); delete app; LogMessage("Shutdown"); return 0; }
在 Android Studio 偵錯記錄中查看事件
您可以啟用詳細記錄功能來監控 SDK 的事件記錄, 確認事件記錄是否正確。這包括 以及手動記錄的事件
您可以使用一系列 ADB 指令啟用詳細記錄功能:
adb shell setprop log.tag.FA VERBOSE
adb shell setprop log.tag.FA-SVC VERBOSE
adb logcat -v time -s FA FA-SVC
這個指令會在 Android Studio Logcat 中顯示事件,協助您 立即確認事件是否正在傳送。
在資訊主頁中查看數據分析事件
如要查看 Analytics 事件的匯總統計資料,請前往 Firebase 控制台資訊主頁。這些資訊主頁會定期更新 整天下來。如要立即測試,請使用 Logcat 輸出內容, 請參閱上一節的說明
如要在 Firebase 控制台中存取這類資料,請按照下列步驟操作:
- 在 Firebase 控制台開啟專案。
- 從選單中選取「Analytics」以查看 Analytics 報告資訊主頁。
「事件」分頁會顯示: 也就是系統記錄的 進一步瞭解資訊主頁。