Waiting for engine...
Skip to main content

EventStreamsTopic

No description

type EventStreamsTopic {
name: ID!
environment: Environment!
persistent: Boolean!
producerCount: Int
subscriptionCount: Int
subscriptions: [EventStreamsSubscription!]
backlogCount: BigInteger
backlogSize: BigInteger
messageRateIn: Float
messageRateOut: Float
createdTime: DateTime
producers: [EventStreamsProducer]
description: String
createdBy: String
partitions: Int
restProduceUrl: String!
restProduceSingleMsgUrl: String!
}

Fields

EventStreamsTopic.name ● ID! non-null scalar miscellaneous

The name of the topic. It is unique within the environment

EventStreamsTopic.environment ● Environment! non-null object event-streams-query

The environment to which the topic belongs

EventStreamsTopic.persistent ● Boolean! non-null scalar miscellaneous

Whether the topic is persistent or not

EventStreamsTopic.producerCount ● Int scalar miscellaneous

The current number of active producers on this topic

EventStreamsTopic.subscriptionCount ● Int scalar miscellaneous

The current number of subscriptions on this topic

EventStreamsTopic.subscriptions ● [EventStreamsSubscription!] list object event-streams-query

The list of subscriptions on this topic

EventStreamsTopic.backlogCount ● BigInteger scalar partner-portal

The total number of messages for all subscriptions not acknowledged on this topic

EventStreamsTopic.backlogSize ● BigInteger scalar partner-portal

The current backlog size for the topic, represented in bytes

EventStreamsTopic.messageRateIn ● Float scalar miscellaneous

The current rate of messages consumed per second from this subscription

EventStreamsTopic.messageRateOut ● Float scalar miscellaneous

The current rate of messages consumed per second from this subscription

EventStreamsTopic.createdTime ● DateTime scalar partner-portal

The timestamp when this topic was created either through this api or when the first producer or subscriber connected to it

EventStreamsTopic.producers ● [EventStreamsProducer] list object event-streams-admin

The list of all local publishers on the topic, ranging from zero to thousands

EventStreamsTopic.description ● String scalar miscellaneous

The user specified description for this topic

EventStreamsTopic.createdBy ● String scalar miscellaneous

The user who created this topic

EventStreamsTopic.partitions ● Int scalar miscellaneous

The number of partitions for this topic

EventStreamsTopic.restProduceUrl ● String! non-null scalar miscellaneous

The Rest API URL that is used for producing messages on this topic

EventStreamsTopic.restProduceSingleMsgUrl ● String! non-null scalar miscellaneous

The Rest API URL that is used for producing a single message on this topic

Returned By

eventStreamsTopic query ●  eventStreamsTopicCreate mutation ●  eventStreamsTopics query ●  eventStreamsTopicUpdate mutation

Member Of

EventStreamsEnvironment object ●  EventStreamsSubscription object ●  EventStreamsTopicMetrics object

Implemented By

_Entity union

On this Page