Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]Migrate TCS Client to V2 #4515

Open
wants to merge 11 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions agent/app/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -991,7 +991,7 @@ func (agent *ecsAgent) startAsyncRoutines(
}
go statsEngine.StartMetricsPublish()

session, err := reporter.NewDockerTelemetrySession(agent.containerInstanceARN, agent.credentialProvider, agent.cfg, deregisterInstanceEventStream,
session, err := reporter.NewDockerTelemetrySession(agent.containerInstanceARN, agent.credentialsCache, agent.cfg, deregisterInstanceEventStream,
client, taskEngine, telemetryMessages, healthMessages, doctor)
if err != nil {
seelog.Warnf("Error creating telemetry session: %v", err)
Expand Down Expand Up @@ -1102,7 +1102,7 @@ func (agent *ecsAgent) startACSSession(
acsSession := session.NewSession(agent.containerInstanceARN,
agent.cfg.Cluster,
client,
agent.credentialProvider,
agent.credentialsCache,
inactiveInstanceCB,
acsclient.NewACSClientFactory(),
metricsfactory.NewNopEntryFactory(),
Expand Down
2 changes: 2 additions & 0 deletions agent/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require (
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.18
github.com/aws/aws-sdk-go-v2/service/ecr v1.41.1
github.com/aws/aws-sdk-go-v2/service/ecs v1.47.3
github.com/aws/aws-sdk-go-v2/service/tcs v0.0.0-00010101000000-000000000000
github.com/aws/smithy-go v1.22.2
github.com/awslabs/go-config-generator-for-fluentd-and-fluentbit v0.0.0-20210308162251-8959c62cb8f9
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
Expand Down Expand Up @@ -111,4 +112,5 @@ require (
replace (
github.com/aws/amazon-ecs-agent/ecs-agent => ../ecs-agent
github.com/aws/aws-sdk-go-v2/service/ecs => ../aws-sdk-go-v2/service/ecs
github.com/aws/aws-sdk-go-v2/service/tcs => ../aws-sdk-go-v2/service/tcs
)
48 changes: 24 additions & 24 deletions agent/stats/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ import (
dm "github.com/aws/amazon-ecs-agent/agent/engine/daemonmanager"
"github.com/aws/amazon-ecs-agent/agent/statechange"
"github.com/aws/amazon-ecs-agent/ecs-agent/eventstream"
"github.com/aws/amazon-ecs-agent/ecs-agent/tcs/model/ecstcs"

"github.com/aws/aws-sdk-go-v2/aws"
ecstypes "github.com/aws/aws-sdk-go-v2/service/ecs/types"
"github.com/aws/aws-sdk-go/aws"
tcstypes "github.com/aws/aws-sdk-go-v2/service/tcs/types"
"github.com/docker/docker/api/types"
dockercontainer "github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/network"
Expand Down Expand Up @@ -157,8 +157,8 @@ func validateInstanceMetrics(t *testing.T, engine *DockerStatsEngine, includeSer
assert.Len(t, taskMetrics, 1, "incorrect number of tasks")

taskMetric := taskMetrics[0]
assert.Equal(t, aws.StringValue(taskMetric.TaskDefinitionFamily), taskDefinitionFamily, "unexpected task definition family")
assert.Equal(t, aws.StringValue(taskMetric.TaskDefinitionVersion), taskDefinitionVersion, "unexpected task definition version")
assert.Equal(t, aws.ToString(taskMetric.TaskDefinitionFamily), taskDefinitionFamily, "unexpected task definition family")
assert.Equal(t, aws.ToString(taskMetric.TaskDefinitionVersion), taskDefinitionVersion, "unexpected task definition version")
assert.NoError(t, validateContainerMetrics(taskMetric.ContainerMetrics, 1), "validating container metrics failed")
if includeServiceConnectStats {
assert.NoError(t, validateServiceConnectMetrics(taskMetric.ServiceConnectMetricsWrapper, 1), "validating service connect metrics failed")
Expand All @@ -172,15 +172,15 @@ func validateInstanceMetricsWithDisabledMetrics(t *testing.T, engine *DockerStat
assert.Len(t, taskMetrics, 1, "incorrect number of tasks")

taskMetric := taskMetrics[0]
assert.Equal(t, aws.StringValue(taskMetric.TaskDefinitionFamily), taskDefinitionFamily, "unexpected task definition family")
assert.Equal(t, aws.StringValue(taskMetric.TaskDefinitionVersion), taskDefinitionVersion, "unexpected task definition version")
assert.Equal(t, aws.ToString(taskMetric.TaskDefinitionFamily), taskDefinitionFamily, "unexpected task definition family")
assert.Equal(t, aws.ToString(taskMetric.TaskDefinitionVersion), taskDefinitionVersion, "unexpected task definition version")
assert.NoError(t, validateContainerMetrics(taskMetric.ContainerMetrics, 0), "validating container metrics failed")
if includeServiceConnectStats {
assert.NoError(t, validateServiceConnectMetrics(taskMetric.ServiceConnectMetricsWrapper, 1), "validating service connect metrics failed")
}
}

func validateContainerMetrics(containerMetrics []*ecstcs.ContainerMetric, expected int) error {
func validateContainerMetrics(containerMetrics []tcstypes.ContainerMetric, expected int) error {
if len(containerMetrics) != expected {
return fmt.Errorf("Mismatch in number of ContainerStatsSet elements. Expected: %d, Got: %d", expected, len(containerMetrics))
}
Expand All @@ -204,7 +204,7 @@ func validateContainerMetrics(containerMetrics []*ecstcs.ContainerMetric, expect
return nil
}

func validateServiceConnectMetrics(serviceConnectMetrics []*ecstcs.GeneralMetricsWrapper, expected int) error {
func validateServiceConnectMetrics(serviceConnectMetrics []tcstypes.GeneralMetricsWrapper, expected int) error {
if len(serviceConnectMetrics) != expected {
return fmt.Errorf("Mismatch in number of serviceConnectMetrics elements. Expected: %d, Got: %d", expected, len(serviceConnectMetrics))
}
Expand All @@ -224,12 +224,12 @@ func validateIdleContainerMetrics(t *testing.T, engine *DockerStatsEngine) {
assert.NoError(t, err, "getting instance metrics failed")
assert.NoError(t, validateMetricsMetadata(metadata), "validating metadata failed")

assert.True(t, aws.BoolValue(metadata.Idle), "expected idle metadata to be true")
assert.True(t, aws.BoolValue(metadata.Fin), "fin not set to true when idle")
assert.True(t, metadata.Idle, "expected idle metadata to be true")
assert.True(t, metadata.Fin, "fin not set to true when idle")
assert.Len(t, taskMetrics, 0, "expected empty task metrics")
}

func validateMetricsMetadata(metadata *ecstcs.MetricsMetadata) error {
func validateMetricsMetadata(metadata *tcstypes.MetricsMetadata) error {
if metadata == nil {
return fmt.Errorf("Metadata is nil")
}
Expand All @@ -248,40 +248,40 @@ func validateMetricsMetadata(metadata *ecstcs.MetricsMetadata) error {
return nil
}

func validateHealthMetricsMetadata(metadata *ecstcs.HealthMetadata) error {
func validateHealthMetricsMetadata(metadata *tcstypes.HealthMetadata) error {
if metadata == nil {
return fmt.Errorf("metadata is nil")
}

if aws.StringValue(metadata.Cluster) != defaultCluster {
if aws.ToString(metadata.Cluster) != defaultCluster {
return fmt.Errorf("expected cluster in metadata to be: %s, got %s",
defaultCluster, aws.StringValue(metadata.Cluster))
defaultCluster, aws.ToString(metadata.Cluster))
}

if aws.StringValue(metadata.ContainerInstance) != defaultContainerInstance {
if aws.ToString(metadata.ContainerInstance) != defaultContainerInstance {
return fmt.Errorf("expected container instance in metadata to be %s, got %s",
defaultContainerInstance, aws.StringValue(metadata.ContainerInstance))
defaultContainerInstance, aws.ToString(metadata.ContainerInstance))
}
if len(aws.StringValue(metadata.MessageId)) == 0 {
if len(aws.ToString(metadata.MessageId)) == 0 {
return fmt.Errorf("empty MessageId")
}

return nil
}

func validateContainerHealthMetrics(metrics []*ecstcs.ContainerHealth, expected int) error {
func validateContainerHealthMetrics(metrics []tcstypes.ContainerHealth, expected int) error {
if len(metrics) != expected {
return fmt.Errorf("mismatch in number of ContainerHealth elements. Expected: %d, Got: %d",
expected, len(metrics))
}
for _, health := range metrics {
if aws.StringValue(health.ContainerName) == "" {
if aws.ToString(health.ContainerName) == "" {
return fmt.Errorf("container name is empty")
}
if aws.StringValue(health.HealthStatus) == "" {
if health.HealthStatus == "" {
return fmt.Errorf("container health status is empty")
}
if aws.TimeValue(health.StatusSince).IsZero() {
if health.StatusSince.IsZero() {
return fmt.Errorf("container health status change timestamp is empty")
}
}
Expand All @@ -293,9 +293,9 @@ func validateTaskHealthMetrics(t *testing.T, engine *DockerStatsEngine) {
assert.NoError(t, err, "getting task health metrics failed")
require.Len(t, healthMetrics, 1)
assert.NoError(t, validateHealthMetricsMetadata(healthMetadata), "validating health metedata failed")
assert.Equal(t, aws.StringValue(healthMetrics[0].TaskArn), taskArn, "task arn not expected")
assert.Equal(t, aws.StringValue(healthMetrics[0].TaskDefinitionFamily), taskDefinitionFamily, "task definition family not expected")
assert.Equal(t, aws.StringValue(healthMetrics[0].TaskDefinitionVersion), taskDefinitionVersion, "task definition version not expected")
assert.Equal(t, aws.ToString(healthMetrics[0].TaskArn), taskArn, "task arn not expected")
assert.Equal(t, aws.ToString(healthMetrics[0].TaskDefinitionFamily), taskDefinitionFamily, "task definition family not expected")
assert.Equal(t, aws.ToString(healthMetrics[0].TaskDefinitionVersion), taskDefinitionVersion, "task definition version not expected")
assert.NoError(t, validateContainerHealthMetrics(healthMetrics[0].Containers, 1))
}

Expand Down
33 changes: 17 additions & 16 deletions agent/stats/container_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import (
apicontainerstatus "github.com/aws/amazon-ecs-agent/ecs-agent/api/container/status"
apitaskstatus "github.com/aws/amazon-ecs-agent/ecs-agent/api/task/status"
ni "github.com/aws/amazon-ecs-agent/ecs-agent/netlib/model/networkinterface"

"github.com/docker/docker/api/types"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -105,34 +106,34 @@ func TestContainerStatsCollection(t *testing.T) {
if err != nil {
t.Fatal("Error gettting cpu stats set:", err)
}
if *cpuStatsSet.Min == math.MaxFloat64 || math.IsNaN(*cpuStatsSet.Min) {
t.Error("Min value incorrectly set: ", *cpuStatsSet.Min)
if cpuStatsSet.Min == math.MaxFloat64 || math.IsNaN(cpuStatsSet.Min) {
t.Error("Min value incorrectly set: ", cpuStatsSet.Min)
}
if *cpuStatsSet.Max == -math.MaxFloat64 || math.IsNaN(*cpuStatsSet.Max) {
t.Error("Max value incorrectly set: ", *cpuStatsSet.Max)
if cpuStatsSet.Max == -math.MaxFloat64 || math.IsNaN(cpuStatsSet.Max) {
t.Error("Max value incorrectly set: ", cpuStatsSet.Max)
}
if *cpuStatsSet.SampleCount == 0 {
if cpuStatsSet.SampleCount == 0 {
t.Error("Samplecount is 0")
}
if *cpuStatsSet.Sum == 0 {
t.Error("Sum value incorrectly set: ", *cpuStatsSet.Sum)
if cpuStatsSet.Sum == 0 {
t.Error("Sum value incorrectly set: ", cpuStatsSet.Sum)
}

memStatsSet, err := container.statsQueue.GetMemoryStatsSet()
if err != nil {
t.Error("Error gettting cpu stats set:", err)
}
if *memStatsSet.Min == math.MaxFloat64 {
t.Error("Min value incorrectly set: ", *memStatsSet.Min)
if memStatsSet.Min == math.MaxFloat64 {
t.Error("Min value incorrectly set: ", memStatsSet.Min)
}
if *memStatsSet.Max == 0 {
t.Error("Max value incorrectly set: ", *memStatsSet.Max)
if memStatsSet.Max == 0 {
t.Error("Max value incorrectly set: ", memStatsSet.Max)
}
if *memStatsSet.SampleCount == 0 {
if memStatsSet.SampleCount == 0 {
t.Error("Samplecount is 0")
}
if *memStatsSet.Sum == 0 {
t.Error("Sum value incorrectly set: ", *memStatsSet.Sum)
if memStatsSet.Sum == 0 {
t.Error("Sum value incorrectly set: ", memStatsSet.Sum)
}

restartStatSet, err := container.statsQueue.GetRestartStatsSet()
Expand Down Expand Up @@ -227,7 +228,7 @@ func TestContainerStatsCollection_WithRestartPolicy(t *testing.T) {

restartStatSet, err := container.statsQueue.GetRestartStatsSet()
require.NoError(t, err)
require.Equal(t, int64(numStatsPreRestart), *restartStatSet.RestartCount)
require.Equal(t, int32(numStatsPreRestart), restartStatSet.RestartCount)
// Reset sets all of the existing stats to "sent" status in the stats queue
container.statsQueue.Reset()

Expand All @@ -240,7 +241,7 @@ func TestContainerStatsCollection_WithRestartPolicy(t *testing.T) {
// restarts to TCS.
require.Equal(t, totalNumStats, restartTracker.GetRestartCount(), fmt.Sprintf(
"Raw restart count should be %d + %d = %d", numStatsPreRestart, numStatsPostRestart, totalNumStats))
require.Equal(t, int64(numStatsPostRestart), *restartStatSet.RestartCount, fmt.Sprintf(
require.Equal(t, int32(numStatsPostRestart), restartStatSet.RestartCount, fmt.Sprintf(
"Metric sent to TCS should be %d - %d = %d", totalNumStats, numStatsPreRestart, numStatsPostRestart))
container.StopStatsCollection()
}
Expand Down
Loading
Loading