mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
APF metrics: set StabilityLevel to ALPHA
Signed-off-by: Adhityaa Chandrasekar <adtac@google.com>
This commit is contained in:
parent
f9d57a8d5d
commit
b16f36b251
@ -88,6 +88,7 @@ var (
|
|||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "rejected_requests_total",
|
Name: "rejected_requests_total",
|
||||||
Help: "Number of requests rejected by API Priority and Fairness system",
|
Help: "Number of requests rejected by API Priority and Fairness system",
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema, "reason"},
|
[]string{priorityLevel, flowSchema, "reason"},
|
||||||
)
|
)
|
||||||
@ -97,6 +98,7 @@ var (
|
|||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "dispatched_requests_total",
|
Name: "dispatched_requests_total",
|
||||||
Help: "Number of requests released by API Priority and Fairness system for service",
|
Help: "Number of requests released by API Priority and Fairness system for service",
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema},
|
[]string{priorityLevel, flowSchema},
|
||||||
)
|
)
|
||||||
@ -147,6 +149,7 @@ var (
|
|||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "current_inqueue_requests",
|
Name: "current_inqueue_requests",
|
||||||
Help: "Number of requests currently pending in queues of the API Priority and Fairness system",
|
Help: "Number of requests currently pending in queues of the API Priority and Fairness system",
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema},
|
[]string{priorityLevel, flowSchema},
|
||||||
)
|
)
|
||||||
@ -157,6 +160,7 @@ var (
|
|||||||
Name: "request_queue_length_after_enqueue",
|
Name: "request_queue_length_after_enqueue",
|
||||||
Help: "Length of queue in the API Priority and Fairness system, as seen by each request after it is enqueued",
|
Help: "Length of queue in the API Priority and Fairness system, as seen by each request after it is enqueued",
|
||||||
Buckets: queueLengthBuckets,
|
Buckets: queueLengthBuckets,
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema},
|
[]string{priorityLevel, flowSchema},
|
||||||
)
|
)
|
||||||
@ -166,6 +170,7 @@ var (
|
|||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "request_concurrency_limit",
|
Name: "request_concurrency_limit",
|
||||||
Help: "Shared concurrency limit in the API Priority and Fairness system",
|
Help: "Shared concurrency limit in the API Priority and Fairness system",
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel},
|
[]string{priorityLevel},
|
||||||
)
|
)
|
||||||
@ -175,6 +180,7 @@ var (
|
|||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "current_executing_requests",
|
Name: "current_executing_requests",
|
||||||
Help: "Number of requests currently executing in the API Priority and Fairness system",
|
Help: "Number of requests currently executing in the API Priority and Fairness system",
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema},
|
[]string{priorityLevel, flowSchema},
|
||||||
)
|
)
|
||||||
@ -185,6 +191,7 @@ var (
|
|||||||
Name: "request_wait_duration_seconds",
|
Name: "request_wait_duration_seconds",
|
||||||
Help: "Length of time a request spent waiting in its queue",
|
Help: "Length of time a request spent waiting in its queue",
|
||||||
Buckets: requestDurationSecondsBuckets,
|
Buckets: requestDurationSecondsBuckets,
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema, "execute"},
|
[]string{priorityLevel, flowSchema, "execute"},
|
||||||
)
|
)
|
||||||
@ -195,6 +202,7 @@ var (
|
|||||||
Name: "request_execution_seconds",
|
Name: "request_execution_seconds",
|
||||||
Help: "Duration of request execution in the API Priority and Fairness system",
|
Help: "Duration of request execution in the API Priority and Fairness system",
|
||||||
Buckets: requestDurationSecondsBuckets,
|
Buckets: requestDurationSecondsBuckets,
|
||||||
|
StabilityLevel: compbasemetrics.ALPHA,
|
||||||
},
|
},
|
||||||
[]string{priorityLevel, flowSchema},
|
[]string{priorityLevel, flowSchema},
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user