You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/05/09 02:20:51 UTC

[GitHub] [pulsar] leizhiyuan opened a new issue, #15492: pulsar_storage_size used backlogsize?

leizhiyuan opened a new issue, #15492:
URL: https://github.com/apache/pulsar/issues/15492

   **Describe the bug**
   A clear and concise description of what the bug is.
   
    pulsar_storage_size means 
   
   ```
   The total storage size of the topics in this topic owned by this broker (bytes).
   ```
   
   but in PersistentTopic
   
   ```
           nsStats.storageSize += ledger.getEstimatedBacklogSize();
   
   ```
   
   maybe it should be 
   
   ```
           nsStats.storageSize += ledger.getTotalSize();
   
   ```
   4. See error
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Screenshots**
   If applicable, add screenshots to help explain your problem.
   
   **Desktop (please complete the following information):**
    - OS: [e.g. iOS]
   
   **Additional context**
   Add any other context about the problem here.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [pulsar] michaeljmarshall commented on issue #15492: pulsar_storage_size used backlogsize?

Posted by GitBox <gi...@apache.org>.
michaeljmarshall commented on issue #15492:
URL: https://github.com/apache/pulsar/issues/15492#issuecomment-1122859508

   As far as I can tell, this bug only affects the `/broker-stats/metrics` endpoint on brokers. The `/metrics` endpoint has the correct logic.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [pulsar] github-actions[bot] commented on issue #15492: pulsar_storage_size used backlogsize?

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #15492:
URL: https://github.com/apache/pulsar/issues/15492#issuecomment-1151840920

   The issue had no activity for 30 days, mark with Stale label.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org