Get statistics about journal
Gets the number of creation and update journal events during a period of time for each entity in a container, grouped first by the entity and then by the operation.
Request |
|
Parameters |
|
Headers |
|
Response |
A JSON response that contains statistics about creation and update journal events for each entity in the specified container. Note that the object from and to represented as epoch time in the JSON response give a period of time and the object create and update give the number of creation and update journal events that happen during the time period. |
Status |
|
Sample response
{
"journal": [
{
"Product": [
{
"creations": [
{
"create": 1,
"from": 1548143636461,
"to": 1548143636461
}
]
},
{
"updates": [
{
"update": 2,
"from": 1548143639124,
"to": 1548143685771
},
{
"update": 1,
"from": 1548143825716,
"to": 1548143872363
}
]
}
]
},
{
"ProductFamily": [
{
"creations": [
{
"create": 1,
"from": 1548142670616,
"to": 1548142670616
}
]
},
{
"updates": []
}
]
},
{
"Store": [
{
"creations": [
{
"create": 1,
"from": 1548142762672,
"to": 1548142772475
}
]
},
{
"updates": []
}
]
}
]
}