ExceptionOnlyEventModifier is an EventModifier that filters exception events. Can only be used for exception events.
| 147 | // ExceptionOnlyEventModifier is an EventModifier that filters exception events. |
| 148 | // Can only be used for exception events. |
| 149 | type ExceptionOnlyEventModifier struct { |
| 150 | ExceptionOrNull ReferenceTypeID // If not nil, only permit exceptions of this type. |
| 151 | Caught bool // Report caught exceptions |
| 152 | Uncaught bool // Report uncaught exceptions |
| 153 | } |
| 154 | |
| 155 | // FieldOnlyEventModifier is an EventModifier that filters events to those |
| 156 | // relating to the specified field. |
nothing calls this directly
no outgoing calls
no test coverage detected