Conversation
Signed-off-by: ericsyh <ericshenyuhao@outlook.com>
Signed-off-by: ericsyh <ericshenyuhao@outlook.com>
Signed-off-by: ericsyh <ericshenyuhao@outlook.com>
ignacioli
reviewed
Nov 18, 2025
Comment on lines
+41
to
+47
| - alert: SizeableCompactedLedger | ||
| annotations: | ||
| summary: There is a topic that has a sizeable compacted ledger with more than 10 million entries (remove entries_count from the topic name in Grafana) | ||
| expr: sum(pulsar_compaction_compacted_entries_count{}) by (pod, cloud_streamnative_io_cluster) > 10000000 | ||
| for: 5m | ||
| labels: | ||
| severity: error |
There was a problem hiding this comment.
we can remove this alert rule, it's a common scenario to be monitored.
ignacioli
reviewed
Nov 18, 2025
Comment on lines
+120
to
+126
| - alert: BookiePodNotHealthy | ||
| annotations: | ||
| summary: Kubernetes Pod not healthy. | ||
| expr: sum by(mon_poolmember,namespace,pod,job) (label_replace(kube_job_labels{},"pod","$1","job_name","(.*)-decommission") == 1) AND ON (namespace,pod) kube_pod_status_ready{condition="true", pod =~".*-(bookie|bk)-.*"} == 0 AND ON (namespace,pod) kube_pod_info{created_by_kind!~"(Job|<none>)"} | ||
| for: 2m | ||
| labels: | ||
| severity: info |
ignacioli
reviewed
Nov 18, 2025
| - alert: BookieHighEntryReadLatency | ||
| annotations: | ||
| summary: Bookie Entry read P99 latency is over than 10s. | ||
| expr: avg_over_time(bookkeeper_server_READ_ENTRY_REQUEST{quantile="0.99", success="true"}[10m]) /1000 > 10 |
There was a problem hiding this comment.
ignacioli
reviewed
Nov 18, 2025
Comment on lines
+34
to
+40
| - alert: BrokerHighPublishLatency | ||
| annotations: | ||
| summary: Pulsar Broker P99 publish latency is over 1 second. | ||
| expr: sum(pulsar_broker_publish_latency{quantile="0.99"}) by (pod, cloud_streamnative_io_cluster) / 1000 > 1 | ||
| for: 5m | ||
| labels: | ||
| severity: warning |
There was a problem hiding this comment.
we can remove this one which is duplicated with the above one. user side should determine how long the pending time is.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.