Skip to content

Commit

Permalink
add description for the earliestMsgPublishTimeInBacklog (apache#13263
Browse files Browse the repository at this point in the history
)

* add description for the `earliestMsgPublishTimeInBacklog `

* Update site2/docs/admin-api-topics.md

Co-authored-by: Anonymitaet <[email protected]>

* Update site2/docs/admin-api-topics.md

Co-authored-by: ran <[email protected]>

* Update site2/docs/admin-api-topics.md

Co-authored-by: ran <[email protected]>

* fix comment

Co-authored-by: Anonymitaet <[email protected]>
Co-authored-by: ran <[email protected]>
  • Loading branch information
3 people authored Dec 14, 2021
1 parent f190b78 commit d6a9854
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion site2/docs/admin-api-topics.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ You can check the following statistics of a given non-partitioned topic.

- **storageSize**: The sum of the ledgers' storage size for this topic. The space used to store the messages for the topic.

- **earliestMsgPublishTimeInBacklogs**: The publish time of the earliest message in the backlog (ms).

- **bytesInCounter**: Total bytes published to the topic.

- **msgInCounter**: Total messages published to the topic.
Expand Down Expand Up @@ -276,6 +278,8 @@ You can check the following statistics of a given non-partitioned topic.
- **chunkedMessageRate**: Chunked message dispatch rate.

- **backlogSize**: Size of backlog for this subscription (in bytes).

- **earliestMsgPublishTimeInBacklog**: The publish time of the earliest message in the backlog for the subscription (ms).

- **msgBacklogNoDelayed**: Number of messages in the subscription backlog that do not contain the delay messages.

Expand Down Expand Up @@ -387,6 +391,7 @@ The following is an example of a topic status.
"msgChunkPublished" : false,
"storageSize" : 504,
"backlogSize" : 0,
"earliestMsgPublishTimeInBacklogs": 0,
"offloadedStorageSize" : 0,
"publishers" : [ {
"accessMode" : "Shared",
Expand All @@ -412,6 +417,7 @@ The following is an example of a topic status.
"chunkedMessageRate" : 0,
"msgBacklog" : 0,
"backlogSize" : 0,
"earliestMsgPublishTimeInBacklog": 0,
"msgBacklogNoDelayed" : 0,
"blockedSubscriptionOnUnackedMsgs" : false,
"msgDelayed" : 0,
Expand Down Expand Up @@ -1561,4 +1567,4 @@ String subscriptionName = "my-subscription";
admin.topics().deleteSubscription(topic, subscriptionName);
```
<!--END_DOCUSAURUS_CODE_TABS-->
<!--END_DOCUSAURUS_CODE_TABS-->

0 comments on commit d6a9854

Please sign in to comment.