Skip to content

App Signals Enablement - E2E EC2 Canary Testing #8261

App Signals Enablement - E2E EC2 Canary Testing

App Signals Enablement - E2E EC2 Canary Testing #8261

## This workflow aims to run the Application Signals end-to-end tests as a canary to
## test the artifacts for App Signals enablement. It will deploy a sample app and remote
## service on two EC2 instances, call the APIs, and validate the generated telemetry,
## including logs, metrics, and traces.
name: App Signals Enablement - E2E EC2 Canary Testing
on:
schedule:
- cron: '0/15 * * * *' # run the workflow every 15 minutes
workflow_dispatch: # be able to run the workflow on demand
permissions:
id-token: write
contents: read
jobs:
e2e-canary-test:
strategy:
fail-fast: false
matrix:
aws-region: ['us-east-1', 'us-east-2', 'eu-west-1', 'ap-northeast-1', 'ap-southeast-2']
uses: ./.github/workflows/appsignals-e2e-ec2-test.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
caller-workflow-name: 'appsignals-e2e-ec2-canary-test'