Skip to content

Commit

Permalink
changed to App signals
Browse files Browse the repository at this point in the history
  • Loading branch information
nathalapooja committed Oct 25, 2023
1 parent 42f49d5 commit 169dde1
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion generator/test_case_generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ var testTypeToTestConfig = map[string][]testConfig{
targets: map[string]map[string]struct{}{"arc": {"amd64": {}}},
},
{testDir: "./test/fluent", terraformDir: "terraform/eks/daemon/fluent/bit"},
{testDir: "./test/apm", terraformDir: "terraform/eks/daemon/apm",
{testDir: "./test/app_signals", terraformDir: "terraform/eks/daemon/app_signals",
targets: map[string]map[string]struct{}{"arc": {"amd64": {}}},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ resource "kubernetes_daemonset" "service" {
}

container {
name = "apm-client"
name = "app_signals-client"
image = "public.ecr.aws/docker/library/golang:latest"
image_pull_policy = "Always"
resources {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variable "region" {

variable "test_dir" {
type = string
default = "./test/apm"
default = "./test/app_signals"
}

variable "cwagent_image_repo" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

//go:build !windows

package apm
package app_signals

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

//go:build !windows

package apm
package app_signals

import (
"time"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
},
"logs": {
"metrics_collected": {
"apm": {
"app_signals": {
"enabled": true
}
}
},
"traces": {
"traces_collected": {
"apm": {
"app_signals": {
"enabled": true
}
}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"scopeSpans": [
{
"scope": {
"name": "apm-integration-test"
"name": "app_signals-integration-test"
},
"spans": [
{
"traceId": "TRACE_ID",
"spanId": "EEE19B7EC3C1B174",
"parentSpanId": "EEE19B7EC3C1B173",
"name": "apm-integration-test-traces",
"name": "app_signals-integration-test-traces",
"startTimeUnixNano": START_TIME,
"endTimeUnixNano": START_TIME,
"kind": 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

//go:build !windows

package apm
package app_signals

import (
"context"
Expand Down

0 comments on commit 169dde1

Please sign in to comment.