# Metrics flags
The following are the flags in a Tenant's definition.json file regarding their metrics configurations.
# extraGAMarfeelAccount
Defines an additional Marfeel Google Analytics account to aggregate mobile engagement metrics.
Values: String
Example:
{
...,
"title":"Title of the awesome example site",
"uri":"www.example.com",
"userInterface":{
...,
"features":{
...,
"extraGAMarfeelAccount": "UA-12345678-12",
...
},
...
},
...
}
# useMetricsJson
Enables the use of the metrics.json
file for touch. The AMP version always uses metrics.json independently from this flag.
Values:True/False. Defaults to false
(only active for AMP).
Example:
{
...,
"title":"Title of the awesome example site",
"uri":"www.example.com",
"userInterface":{
...,
"features":{
...,
"useMetricsJson": true,
...
},
...
},
...
}
# pageViewTrackerTenantQuerySelector
Defines the selector Marfeel uses to configure a custom tracker from JavaScript.
Values: DOMString
Example:
{
...,
"title":"Title of the awesome example site",
"uri":"www.example.com",
"userInterface":{
...,
"features":{
...,
"pageViewTrackerTenantQuerySelector": ".mrf-multipageGeneratorJoin .media.m-reset",
...
},
...
},
...
}