Extension
About
Api extension model
Fields
Name | Type | Required | Description |
---|---|---|---|
id | string | Yes | Extension id |
configuration | object | Extension configuration |
Supported extensions
MetaStats
You can configure MetaStats application to track several extra metrics during specific time periods.
Example (track extra metrics starting from specific time)
{
"id": "MetaStats",
"configuration": {
"customPeriods": [
{
"startTime": "2021-05-01T00:00:00.000Z"
}
]
}
}
Example (track extra metrics during specific time period)
{
"id": "MetaStats",
"configuration": {
"customPeriods": [
{
"startTime": "2021-05-01T00:00:00.000Z",
"endTime": "2021-05-15T00:00:00.000Z"
}
]
}
}