/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package aws import ( "context" "fmt" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/service/timestreamwrite" "github.com/aws/aws-sdk-go/service/timestreamwrite/timestreamwriteiface" . "github.com/onsi/ginkgo/v2" //nolint:revive,stylecheck . "github.com/onsi/gomega" //nolint:revive,stylecheck "github.com/samber/lo" "github.com/aws/karpenter/test/pkg/environment/common" ) const ( metricsDefaultRegion = "us-east-2" databaseName = "karpenterTesting" tableName = "scaleTestDurations" ) var _ timestreamwriteiface.TimestreamWriteAPI = (*NoOpTimeStreamAPI)(nil) type NoOpTimeStreamAPI struct { timestreamwriteiface.TimestreamWriteAPI } func (o NoOpTimeStreamAPI) WriteRecordsWithContext(_ context.Context, _ *timestreamwrite.WriteRecordsInput, _ ...request.Option) (*timestreamwrite.WriteRecordsOutput, error) { return nil, nil } type EventType string const ( ProvisioningEventType EventType = "provisioning" DeprovisioningEventType EventType = "deprovisioning" ) const ( TestCategoryDimension = "category" TestNameDimension = "name" GitRefDimension = "gitRef" ProvisionedNodeCountDimension = "provisionedNodeCount" DeprovisionedNodeCountDimension = "deprovisionedNodeCount" PodDensityDimension = "podDensity" ) func (env *Environment) MeasureProvisioningDurationFor(f func(), dimensions map[string]string) { GinkgoHelper() env.MeasureDurationFor(f, ProvisioningEventType, dimensions) } func (env *Environment) MeasureDeprovisioningDurationFor(f func(), dimensions map[string]string) { GinkgoHelper() env.MeasureDurationFor(f, DeprovisioningEventType, dimensions) } // MeasureDurationFor observes the duration between the beginning of the function f() and the end of the function f() func (env *Environment) MeasureDurationFor(f func(), eventType EventType, dimensions map[string]string) { GinkgoHelper() start := time.Now() f() gitRef := "n/a" if env.Context.Value(common.GitRefContextKey) != nil { gitRef = env.Value(common.GitRefContextKey).(string) } dimensions = lo.Assign(dimensions, map[string]string{ GitRefDimension: gitRef, }) switch eventType { case ProvisioningEventType: env.ExpectMetric("provisioningDuration", time.Since(start).Seconds(), dimensions) case DeprovisioningEventType: env.ExpectMetric("deprovisioningDuration", time.Since(start).Seconds(), dimensions) } } func (env *Environment) ExpectMetric(name string, value float64, labels map[string]string) { GinkgoHelper() _, err := env.TimeStreamAPI.WriteRecordsWithContext(env.Context, ×treamwrite.WriteRecordsInput{ DatabaseName: aws.String(databaseName), TableName: aws.String(tableName), Records: []*timestreamwrite.Record{ { MeasureName: aws.String(name), MeasureValue: aws.String(fmt.Sprintf("%f", value)), Dimensions: lo.MapToSlice(labels, func(k, v string) *timestreamwrite.Dimension { return ×treamwrite.Dimension{ Name: aws.String(k), Value: aws.String(v), } }), Time: aws.String(fmt.Sprintf("%d", time.Now().UnixMilli())), }, }, }) Expect(err).ToNot(HaveOccurred()) }