agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,98 @@
export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class EKSMetrics {
static schedulerPendingPodsSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static schedulerPendingPodsActiveqSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static schedulerPendingPodsUnschedulableSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestTotalSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestTotal5XxSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestTotal4XxSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestTotal429Sum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestDurationSecondsGetP99Average(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestDurationSecondsPostP99Average(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestDurationSecondsPutP99Average(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestDurationSecondsDeleteP99Average(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestDurationSecondsPatchP99Average(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverRequestDurationSecondsListP99Average(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverCurrentInflightRequestsMutatingAverage(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverCurrentInflightRequestsReadonlyAverage(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverAdmissionWebhookRequestTotalSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverAdmissionWebhookRequestTotalValidatingSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
static apiserverAdmissionWebhookRequestTotalAdmitSum(this: void, dimensions: {
ClusterName: string;
}): MetricWithDims<{
ClusterName: string;
}>;
}