I'm looking for a way to perform a full import of data from ServiceNow every day.
Currently, I'm using the Splunk Add-on for ServiceNow to retrieve data from a ServiceNow table through the REST API. As expected, the add-on creates a checkpoint containing the timestamp of the last record retrieved, so that subsequent runs only collect newly created or updated records.
This behavior makes perfect sense for most use cases, but unfortunately not for mine.
The table I'm collecting contains the list of users assigned to a specific ServiceNow subscription (license). This table represents a daily snapshot of license assignments, and its contents change over time as users are assigned or removed from the subscription.
The problem is that this table does not have a date/time field that changes whenever the membership changes, so there isn't a suitable field that can be used as the checkpoint timestamp. As a result, once the initial import is completed, subsequent runs do not retrieve the complete current state of the table.
I looked for an option in the Splunk Add-on for ServiceNow to ignore or disable checkpointing and perform a full import every day, but I couldn't find anything. One possible workaround would be to delete the checkpoint file before each scheduled execution, but I'd prefer to avoid that approach if possible.
So my question is:
Has anyone implemented something similar?
Thanks in advance!