I created a custom data type to store some configuration of an external product. So each day I send the configuration of this specific product / service ( multiple rows but with identical data model) to the Log Analytics data store.
Is there a possibility to show which rows gets added or removed between multiple days? The data structure is always the same f.e.
MyCustomData_CL | project Guid_g , Name_s, URL_s
I would like to see which records gets added / removed at which time. So basically compare every day with the previous day.
How could I accomplish this with Kusto query language?
Best regards, Jens