OBJECT

EventRecord

link GraphQL Schema definition

  • type EventRecord implements Node {
  • # Attributes of the event
  • attributes: [EventAttribute!]
  • # Timestamp of the event
  • eventTime: DateTime!
  • # Id of the event
  • id: ID!
  • # Event message
  • message: String!
  • # Severity of the event
  • severity: String!
  • # Source of the event
  • source: String!
  • # Type of the event
  • type: String!
  • # User who triggered the event
  • user: String!
  • }