Service health
Temporal Cloud metrics help you to monitor the Service health of your production deployments.
Monitor availability issues
When you see a sudden drop in Worker resource utilization, verify whether Temporal Cloud's API is showing increased latency and error rates.
Reference Metrics
The Service latency metric only supports a subset of the operations we consider mission critical, namely SignalWithStartWorkflowExecution, SignalWorkflowExecution, and StartWorkflowExecution.
Prometheus Query
P99 service lag (histogram):
histogram_quantile(0.99, sum(rate(temporal_cloud_v0_service_latency_bucket[$__rate_interval])) by (temporal_namespace, operation, le))
Monitor Temporal Service errors
Check for front-end Temporal Service API errors. Note that Service API errors are not equivalent to guarantees mentioned in the Temporal Cloud SLA.
Reference Metrics
Prometheus Query
Measure your daily average errors over 10-minute windows:
avg_over_time((
(
(
sum(increase(temporal_cloud_v0_frontend_service_request_count{temporal_namespace=~"$namespace", operation=~"StartWorkflowExecution|SignalWorkflowExecution|SignalWithStartWorkflowExecution|RequestCancelWorkflowExecution|TerminateWorkflowExecution"}[10m]))
-
sum(increase(temporal_cloud_v0_frontend_service_error_count{temporal_namespace=~"$namespace", operation=~"StartWorkflowExecution|SignalWorkflowExecution|SignalWithStartWorkflowExecution|RequestCancelWorkflowExecution|TerminateWorkflowExecution"}[10m]))
)
/
sum(increase(temporal_cloud_v0_frontend_service_request_count{temporal_namespace=~"$namespace", operation=~"StartWorkflowExecution|SignalWorkflowExecution|SignalWithStartWorkflowExecution|RequestCancelWorkflowExecution|TerminateWorkflowExecution"}[10m]))
)
or vector(1)
)[1d:10m])
Monitor multi-region Namespace replication lag
Replication lag refers to the transmission delay of Workflow updates and history events from the active region to the standby region. Always check the metric replication lag before initiating a failover. A forced failover when there is a large replication lag has a higher likelihood of rolling back Workflow progress.
Who owns the replication lag? Temporal owns replication lag.
What guarantees are available? There is no SLA for replication lag. Temporal recommends that customers do not trigger failovers except for testing or emergency situations. Multi-region's four-9 guarantee SLA means Temporal will handle failovers and ensure high availability. Temporal also monitors replication lag. Customer who decide to trigger failovers should look at this metric before moving forward.
If the lag is high, what should you do? We don't expect users to failover. Please contact Temporal support if you feel you have a pressing need.
Where can you read more? See multi-region Namespaces.
Reference Metrics
- temporal_cloud_v0_replication_lag_bucket
- temporal_cloud_v0_replication_lag_sum
- temporal_cloud_v0_replication_lag_count
Prometheus Query
P99 replication lag (histogram):
histogram_quantile(0.99, sum(rate(temporal_cloud_v0_replication_lag_bucket[$__rate_interval])) by (temporal_namespace, le))
Average replication lag:
sum(rate(temporal_cloud_v0_replication_lag_sum[$__rate_interval])) by (temporal_namespace)
/
sum(rate(temporal_cloud_v0_replication_lag_count[$__rate_interval])) by (temporal_namespace)