Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-ec2-default-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
echo GET_ADOT_DISTRO_COMMAND="aws s3 cp s3://adot-autoinstrumentation-dotnet-staging/${{ env.ADOT_DISTRO_NAME }} ./${{ env.ADOT_DISTRO_NAME }} && unzip -d dotnet-distro ${{ env.ADOT_DISTRO_NAME }}" >> $GITHUB_ENV
else
# After Release will switch to latest tag instead of hard code version for canary purpose
echo GET_ADOT_DISTRO_COMMAND="wget -O aws-distro-opentelemetry-dotnet-instrumentation-linux-glibc-x64.zip https://github.com/aws-observability/aws-otel-dotnet-instrumentation/releases/download/v1.3.2/aws-distro-opentelemetry-dotnet-instrumentation-linux-glibc-x64.zip && unzip -d dotnet-distro aws-distro-opentelemetry-dotnet-instrumentation-linux-glibc-x64.zip" >> $GITHUB_ENV
echo GET_ADOT_DISTRO_COMMAND="wget -O aws-distro-opentelemetry-dotnet-instrumentation-linux-glibc-x64.zip https://github.com/aws-observability/aws-otel-dotnet-instrumentation/releases/latest/download/aws-distro-opentelemetry-dotnet-instrumentation-linux-glibc-x64.zip && unzip -d dotnet-distro aws-distro-opentelemetry-dotnet-instrumentation-linux-glibc-x64.zip" >> $GITHUB_ENV
fi

- name: Set Get CW Agent command environment variable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-eks-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
uses: ./.github/workflows/actions/execute_and_retry
with:
pre-command: "mkdir enablement-script && cd enablement-script"
command: "wget https://raw.githubusercontent.com/aws-observability/application-signals-demo/dotnet-sdk-1_3_2/scripts/eks/appsignals/enable-app-signals.sh
command: "wget https://raw.githubusercontent.com/aws-observability/application-signals-demo/main/scripts/eks/appsignals/enable-app-signals.sh
&& wget https://raw.githubusercontent.com/aws-observability/application-signals-demo/main/scripts/eks/appsignals/clean-app-signals.sh"
cleanup: "rm -f enable-app-signals.sh && rm -f clean-app-signals.sh"
post-command: "chmod +x enable-app-signals.sh && chmod +x clean-app-signals.sh"
Expand Down
4 changes: 2 additions & 2 deletions terraform/dotnet/ec2/nuget/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ resource "null_resource" "main_service_setup" {
export OTEL_RESOURCE_ATTRIBUTES=service.name=dotnet-sample-application-${var.test_id}

cd ./asp_frontend_service
dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --version 1.3.2
dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --prerelease
dotnet build --runtime linux-x64
dos2unix bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh
nohup sh bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh dotnet bin/Debug/netcoreapp8.0/linux-x64/asp_frontend_service.dll &
Expand Down Expand Up @@ -236,7 +236,7 @@ resource "null_resource" "remote_service_setup" {
export OTEL_RESOURCE_ATTRIBUTES=service.name=dotnet-sample-remote-application-${var.test_id}
export ASPNETCORE_URLS=http://0.0.0.0:8081

dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --version 1.3.2
dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --prerelease
dotnet build --runtime linux-x64
dos2unix bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh
nohup sh bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh dotnet bin/Debug/netcoreapp8.0/linux-x64/asp_remote_service.dll &
Expand Down
2 changes: 1 addition & 1 deletion terraform/dotnet/k8s/deploy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "null_resource" "deploy" {
[ ! -e dotnet-remote-service-depl.yaml ] || rm dotnet-remote-service-depl.yaml

echo "LOG: Getting latest helm chart release URL"
latest_version_url=$(curl -s https://api.github.com/repos/aws-observability/helm-charts/releases/182005608 | grep "tarball_url" | cut -d '"' -f 4)
latest_version_url=$(curl -s https://api.github.com/repos/aws-observability/helm-charts/releases/latest | grep "tarball_url" | cut -d '"' -f 4)
echo "LOG: The latest helm chart version url is $latest_version_url"
echo "LOG: Downloading and unpacking the helm chart repo"
curl -L $latest_version_url -o aws-observability-helm-charts-latest.tar.gz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:{{platformInfo}}$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /aws-sdk-call",
"Operation": "GET aws-sdk-call",
"Version": "^1$",
"RemoteService": "AWS::S3",
"RemoteOperation": "GetBucketLocation",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -80,7 +80,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -154,7 +154,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -205,7 +205,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -279,7 +279,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -330,7 +330,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"annotations": {
"aws.local.service": "^{{serviceName}}$",
"aws.local.operation": "^GET /aws-sdk-call$",
"aws.local.operation": "^GET aws-sdk-call$",
"aws.remote.service": "^AWS::S3$",
"aws.remote.operation": "^GetBucketLocation$",
"aws.local.environment": "^ec2:{{platformInfo}}$",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:{{platformInfo}}$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /outgoing-http-call",
"Operation": "GET outgoing-http-call",
"Version": "^1$",
"RemoteService": "aws.amazon.com:443",
"RemoteOperation": "GET /",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -105,7 +105,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -181,7 +181,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"annotations": {
"aws.local.service": "^{{serviceName}}$",
"aws.local.operation": "^GET /outgoing-http-call$",
"aws.local.operation": "^GET outgoing-http-call$",
"aws.remote.service": "^aws.amazon.com:443$",
"aws.remote.operation": "^GET /$",
"aws.local.environment": "^ec2:{{platformInfo}}$"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:{{platformInfo}}$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /remote-service",
"Operation": "GET remote-service",
"Version": "^1$",
"RemoteService": "{{remoteServiceDeploymentName}}",
"RemoteOperation": "GET /healthcheck",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
dimensions:
-
name: Operation
value: GET /remote-service
value: GET remote-service
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -127,7 +127,7 @@
dimensions:
-
name: Operation
value: GET /remote-service
value: GET remote-service
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -236,7 +236,7 @@
dimensions:
-
name: Operation
value: GET /remote-service
value: GET remote-service
-
name: Service
value: {{serviceName}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"annotations": {
"aws.local.service": "^{{serviceName}}$",
"aws.local.operation": "^GET /remote-service$",
"aws.local.operation": "^GET remote-service$",
"aws.remote.service": "^{{remoteServiceDeploymentName}}$",
"aws.remote.operation": "^GET /healthcheck$",
"aws.local.environment": "^ec2:{{platformInfo}}$"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:default$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /aws-sdk-call",
"Operation": "GET aws-sdk-call",
"Version": "^1$",
"Telemetry.Source": "^LocalRootSpan$",
"Host": "^ip(-[0-9]{1,3}){4}.*$"
Expand All @@ -11,7 +11,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:default$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /aws-sdk-call",
"Operation": "GET aws-sdk-call",
"Version": "^1$",
"RemoteService": "AWS::S3",
"RemoteOperation": "GetBucketLocation",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand All @@ -29,7 +29,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -80,7 +80,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -140,7 +140,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand All @@ -154,7 +154,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -205,7 +205,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -265,7 +265,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand All @@ -279,7 +279,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -331,7 +331,7 @@
dimensions:
-
name: Operation
value: GET /aws-sdk-call
value: GET aws-sdk-call
-
name: Service
value: {{serviceName}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"annotations": {
"aws.local.service": "^{{serviceName}}$",
"aws.local.operation": "^GET /aws-sdk-call$",
"aws.local.operation": "^GET aws-sdk-call$",
"aws.local.environment": "^ec2:default$"
},
"metadata": {
Expand All @@ -31,7 +31,7 @@
},
"annotations": {
"aws.local.service": "^{{serviceName}}$",
"aws.local.operation": "^GET /aws-sdk-call$",
"aws.local.operation": "^GET aws-sdk-call$",
"aws.remote.service": "^AWS::S3$",
"aws.remote.operation": "^GetBucketLocation$",
"aws.local.environment": "^ec2:default$",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:default$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /outgoing-http-call",
"Operation": "GET outgoing-http-call",
"Version": "^1$",
"Telemetry.Source": "^LocalRootSpan$",
"Host": "^ip(-[0-9]{1,3}){4}.*$"
Expand All @@ -11,7 +11,7 @@
"EC2.InstanceId": "^{{instanceId}}$",
"Environment": "^ec2:default$",
"PlatformType": "^AWS::EC2$",
"Operation": "GET /outgoing-http-call",
"Operation": "GET outgoing-http-call",
"Version": "^1$",
"RemoteService": "aws.amazon.com:443",
"RemoteOperation": "GET /",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand All @@ -29,7 +29,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -91,7 +91,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand All @@ -105,7 +105,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand Down Expand Up @@ -167,7 +167,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand All @@ -181,7 +181,7 @@
dimensions:
-
name: Operation
value: GET /outgoing-http-call
value: GET outgoing-http-call
-
name: Service
value: {{serviceName}}
Expand Down
Loading