PluginFilterConfiguration

class PluginFilterConfiguration(val schemas: List<String>? = null, val closure: Function<InspectableEvent, Boolean>)

Provides a closure that is called to decide whether to track a given event or not.

Constructors

Link copied to clipboard
constructor(schemas: List<String>? = null, closure: Function<InspectableEvent, Boolean>)

Properties

Link copied to clipboard

Block that returns true if the event should be tracked, false otherwise.

Link copied to clipboard
val schemas: List<String>? = null

Optional list of event schemas to call the block for. If null, the block is called for all events.