パフォーマンスのトラッキング
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
キャンペーン予算のパフォーマンス統計情報を取得するには、GAQL クエリで campaign_budget
の指標フィールドを選択します。デフォルトでは、すべての統計情報は予算レベルで集計され、予算ごとに 1 行が生成されます。通常、各予算のデータは 1 行に表示されますが、セグメント フィールドを使用している場合は複数行になる場合もあります。詳しくは、セグメンテーションをご覧ください。
次の GAQL クエリは、ID でフィルタリングして、単一の予算のコンバージョン パフォーマンスを取得します。
SELECT
segments.conversion_action,
metrics.value_per_conversion
FROM campaign_budget
WHERE campaign_budget.id = campaign_budget_id
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-26 UTC。
[null,null,["最終更新日 2025-08-26 UTC。"],[[["\u003cp\u003eCampaign budget performance statistics are retrieved using \u003ccode\u003ecampaign_budget\u003c/code\u003e metric fields in GAQL queries, aggregated by budget.\u003c/p\u003e\n"],["\u003cp\u003eSegmentation can result in multiple rows per budget, providing more granular performance data.\u003c/p\u003e\n"],["\u003cp\u003eThe provided example GAQL query demonstrates retrieving conversion performance for a specific campaign budget using its ID.\u003c/p\u003e\n"]]],[],null,["# Track Performance\n\nYou can retrieve the performance statistics for your campaign budgets by\nselecting metric fields of [`campaign_budget`](/google-ads/api/fields/v21/campaign_budget) in a\nGAQL query. By default all statistics are aggregated at the budget level, one\nrow per budget. If segment fields are used, you may get more than one row per\nbudget. See [segmentation](/google-ads/api/docs/concepts/retrieving-objects#segmentation) for\ndetails.\n\nThe following GAQL query retrieves conversion performance of a single budget,\nfiltering on its ID: \n\n```sql\nSELECT\n segments.conversion_action,\n metrics.value_per_conversion\nFROM campaign_budget\nWHERE campaign_budget.id = campaign_budget_id\n```"]]