Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions temporal/api/worker/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ message WorkerPollerInfo {

// Set true if the number of concurrent pollers is auto-scaled
bool is_autoscaling = 3;

// Counts of poller autoscaler scale decisions since the last heartbeat, keyed by
// reason (e.g. "server_up", "server_up_suppressed", "empty_poll_down", "re_halve").
// Only set when the poller count is auto-scaled.
map<string, int64> scale_decisions = 4;
}

message WorkerSlotsInfo {
Expand Down
Loading