EVENTS BASE StructuredEvent represents a type-safe telemetry event with structured properties
| 10 | |
| 11 | // StructuredEvent represents a type-safe telemetry event with structured properties |
| 12 | type StructuredEvent interface { |
| 13 | GetEventType() EventType |
| 14 | ToStructuredProperties() any |
| 15 | } |
| 16 | |
| 17 | // Simplified event system - event types are now just strings in the Event.Event field |
| 18 |
no outgoing calls
no test coverage detected