Contains constants and functions for a Analytics Mapping.
The structure for a Analytics Mapping is as follows:
{
payload: {
attributes: {
source: 'com.adobe.analytics'
primaryHitId: <string>,
requestId: <string>,
},
name: 'analytics.mapping'
messages: <array>,
context: <object>,
},
type: 'service'
annotations: <array>,
clientId: <string>,
timestamp: <number>,
uuid: <string>,
}
- Source:
Members
(static, constant) EVENT_SOURCE
The value for eventSource
for a Analytics Mapping.
Path is payload,attributes,source
.
- Source:
(static, constant) group
A grouping for this object
- Source:
(static, constant) label
A label that can be used when describing this object
- Source:
(static, constant) matcher
Matcher can be used to find matching Analytics Mapping objects.
- Source:
- See:
-
- kit.match
(static, constant) NAME
The value for name
for a Analytics Mapping.
Path is payload,name
.
- Source:
(static, constant) parentDepth
Describes the number of parents this object has based off schema references. When checking for matches for example, we want to use a schema that is more specific over a more generic schema
- Source:
(static, constant) path :string
Paths for the keys on a Analytics Mapping
Properties:
Name | Type | Description |
---|---|---|
payload |
string |
An object with custom data describing the event. |
attributes |
string |
An object containing metadata about the request. |
eventSource |
string |
The event source. |
primaryHitId |
string | |
requestId |
string |
The request id that is shared between the different service requests. |
name |
string |
The name of the event. |
messages |
string |
Messages received from the service. |
context |
string |
Additional context provided by the service. |
rootType |
string |
The type of event. |
annotations |
string |
Array of Annotation objects. |
clientId |
string |
A unique id that differentiates clients from one another. |
timestamp |
string |
When the event occurred. |
rootId |
string |
Uniquely identifies each event. |
- Source:
(static, constant) ROOT_TYPE
The value for rootType
for a Analytics Mapping.
Path is type
.
- Source:
Methods
(static) get(alias, data) → {*}
Retrieves a value from the object. You can provide either a path or an alias.
Parameters:
Name | Type | Description |
---|---|---|
alias |
string |
Path or alias |
data |
* |
Data to search |
- Source:
(static) getAttributes(source) → {object}
Returns the attributes
from the Analytics Mapping.
This is the an object containing metadata about the request.
Path is payload,attributes
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Analytics Mapping instance |
- Source:
(static) getAttributesKey(…path, source) → {*}
Returns the data using the specified path from the attributes of the Analytics Mapping.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
path |
string |
<repeatable> |
key in object |
source |
object |
The Analytics Mapping instance |
- Source:
(static) isMatch(source) → {boolean}
Tests the provided source against the matcher to see if it's Analytics Mapping event.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Analytics Mapping instance |
- Source:
- See:
-
- kit.isMatch
(static) make(…input) → {object}
Generates a Analytics Mapping with the const values set. Can be useful in testing. Can provide additional data by providing a flat object of paths and values.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
input |
function |
<repeatable> |
Overrides |
- Source:
(static) mock(…input) → {object}
Generates a Analytics Mapping with some default values set. Can be useful in testing. Can override defaults and provide additional data by providing a flat object of paths and values.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
input |
function |
<repeatable> |
Overrides |
- Source: