Interface Event

  • All Known Implementing Classes:
    SimpleEvent

    @Experimental
    public interface Event
    Event represents an event that happened in Flink for reporting, e.g. a completed checkpoint or a restart.
    • Method Detail

      • getObservedTsMillis

        long getObservedTsMillis()
        The timestamp for when the event happened or was observed, in milliseconds.
      • getName

        String getName()
        The name of the event.
      • getClassScope

        String getClassScope()
        The scope of the event, typically the fully qualified name of the emitting class.
      • getBody

        String getBody()
        Textual description of the event.
      • getSeverity

        String getSeverity()
        Severity of the event, e.g. DEBUG, INFO, ...
      • getAttributes

        Map<String,​Object> getAttributes()
        Additional attributes for the event. Currently, returned values can be of type String, Long or Double, however more types can be added in the future.