Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ConnectorLogEntries ¶
type ConnectorLogEntries struct { Entries []*ConnectorLogEntry `json:"entries"` TotalCount int `json:"totalCount"` }
ConnectorLogEntries defines a list of logs along with other metadata
type ConnectorLogEntry ¶
type ConnectorLogEntry struct { ID string `json:"id"` TenantID string `json:"tenant_id"` Connector string `json:"connector"` User string `json:"user"` Level string `json:"level"` Message common.Object `json:"message"` RawError string `json:"description"` CreatedAt time.Time `json:"created_at"` WrittenAt time.Time `json:"written_at"` }
ConnectorLogEntry defines a single log entry
type ConnectorLogQueryInput ¶
type Service ¶
type Service interface {
GetAllConnectorLogs(args ConnectorLogQueryInput, pagination common.Pagination, opts ...graphql.RequestOption) (*ConnectorLogEntries, error)
}
Click to show internal directories.
Click to hide internal directories.