-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for custom conversion mapping
* Custom conversions and conversions_value can be added to `asset_performance` and `ad_group_network_split`. * Document usage in `docs/advanced-customizations` Change-Id: I0939b2f2f8134cddbdef0bed4748d2deecd54183
- Loading branch information
Showing
4 changed files
with
95 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# How to customize App Reporting Pack data fetching | ||
|
||
## Providing custom conversion mapping | ||
|
||
If you want your tables (`asset_performance` and `ad_group_network_split`) | ||
to contain custom conversion mapping (i.e. column that contains conversion(s) | ||
only with a particular conversion name) you can add the following lines to | ||
your `app_reporting_pack.yaml` in "conversion_alias: Conversion Name" format: | ||
|
||
``` | ||
template: | ||
custom_conversions: | ||
- conversion_name_1: "Your Conv','Second Conv" | ||
conversion_name_2: "My Conv" | ||
``` | ||
|
||
This will the following columns to your tables in BigQuery: | ||
|
||
* `conversions_conversion_name_1` | ||
* `conversions_value_conversion_name_1` | ||
* `conversions_conversion_name_2` | ||
* `conversions_value_conversion_name_2` | ||
|
||
You can add one or more conversion names to a given conversion alias; in case | ||
of several conversion they should be separated with `','`. |