All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.3.11.1.1-event-debug-migration.js Maven / Gradle / Ivy

The newest version!
print('Remove the `API_ID` property for events of type `DEBUG_API`');
// Override this variable if you use prefix
const prefix = '';

const events = db.getCollection(`${prefix}events`);

events.find({type: "DEBUG_API"}).forEach((event) => {
  if(event.properties.api_id) {
    delete event.properties.api_id;
    events.replaceOne({ _id: event._id }, event);
  }
});

print('`DEBUG_API` has been updated');




© 2015 - 2024 Weber Informatics LLC | Privacy Policy