Skip to content

Commit 90cd25d

Browse files
committed
Update Release Testing with latest changes
1 parent 40de977 commit 90cd25d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/appsignals-e2e-ec2-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ jobs:
104104
continue-on-error: true
105105
run: |
106106
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/outgoing-http-call/; echo
107-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/aws-sdk-call/; echo
108-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}/; echo
107+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"
108+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"
109109
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/client-call/; echo
110110
111111
- name: Build Gradle
@@ -124,7 +124,7 @@ jobs:
124124
--log-group ${{ env.LOG_GROUP_NAME }}
125125
--service-name sample-application-${{ env.TESTING_ID }}
126126
--remote-service-name sample-remote-application-${{ env.TESTING_ID }}
127-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
127+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
128128
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
129129
--rollup'
130130

@@ -141,7 +141,7 @@ jobs:
141141
--log-group ${{ env.LOG_GROUP_NAME }}
142142
--service-name sample-application-${{ env.TESTING_ID }}
143143
--remote-service-name sample-remote-application-${{ env.TESTING_ID }}
144-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
144+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
145145
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
146146
--rollup'
147147

@@ -158,7 +158,7 @@ jobs:
158158
--log-group ${{ env.LOG_GROUP_NAME }}
159159
--service-name sample-application-${{ env.TESTING_ID }}
160160
--remote-service-name sample-remote-application-${{ env.TESTING_ID }}
161-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
161+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
162162
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
163163
--rollup'
164164

.github/workflows/appsignals-e2e-eks-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ jobs:
184184
continue-on-error: true
185185
run: |
186186
curl -S -s http://${{ env.APP_ENDPOINT }}/outgoing-http-call/; echo
187-
curl -S -s http://${{ env.APP_ENDPOINT }}/aws-sdk-call/; echo
188-
curl -S -s http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}/; echo
187+
curl -S -s "http://${{ env.APP_ENDPOINT }}/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}"
188+
curl -S -s "http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}"
189189
curl -S -s http://${{ env.APP_ENDPOINT }}/client-call/; echo
190190
191191
- name: Build Gradle
@@ -206,7 +206,7 @@ jobs:
206206
--platform-info ${{ inputs.test-cluster-name }}
207207
--service-name sample-application-${{ env.TESTING_ID }}
208208
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
209-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
209+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
210210
--rollup'
211211

212212
- name: Call endpoints and validate generated metrics
@@ -224,7 +224,7 @@ jobs:
224224
--service-name sample-application-${{ env.TESTING_ID }}
225225
--remote-service-name sample-remote-application-${{ env.TESTING_ID }}
226226
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
227-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
227+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
228228
--rollup'
229229

230230
- name: Call endpoints and validate generated traces
@@ -241,7 +241,7 @@ jobs:
241241
--platform-info ${{ inputs.test-cluster-name }}
242242
--service-name sample-application-${{ env.TESTING_ID }}
243243
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
244-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
244+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
245245
--rollup'
246246

247247
- name: Publish metric on test result

0 commit comments

Comments
 (0)