Click HERE to see how Saviynt Intelligence is transforming the industry. |
03/22/2023 05:59 AM
Hello,
I want to compare the 2 last results of an analytics, For example, a same analytics is executed one time one day, and another time the next day, I want to make a delta on the both result.
Is it possible to create a Analytics to have the difference ?
I found a way to request the data inside one analytics history, but not both in a same time.
Thanks
03/22/2023 09:57 AM
You can use the compare feature in analytics history for your use case.
Run the particular analytics and then run history as shown in the screenshot below:
This will then take you to the Analytics History page. You can select the two runs that you would want to compare and click on the compare button to give you details regarding the difference between the two runs.
Please find attached document link for additional details:
03/27/2023 05:54 AM
Thanks for this manually solution,
But is there a way to have this result automatically in an analytics ?
In fact I want to create a tile in a dashboard, to detect if there is new entitlement compared to yesterday.
04/03/2023 04:06 PM
what method did you use to request the data inside one analytics history?
04/04/2023 04:55 AM
I created an analytics using elasticsearch query, for example:
{
"_source": {
"excludes": [
"headers",
"@version",
"@timestamp",
"updateDate",
"analyticsHistoryKey",
"comments",
"analyticsConfig",
"hashCode",
"fulRun",
"status"
]
},
"query": {
"bool": {
"must": [
{
"term": {
"analyticsHistoryKey": {
"value": "a09eccc04d1f4049a98fdc2c89e983ed",
"boost": 1
}
}
}
],
"must_not": [],
"should": []
}
},
"from": 0,
"sort": [],
"aggs": {}
}
04/11/2023 07:49 PM
You can raise idea ticket to provide compared data API
04/11/2023 09:10 AM
I think the manual comparison is the best option as I do not see a way to extract two reports from ES at the same time and compare the results.