Skip to content

Commit f416909

Browse files
authored
Merge pull request #68 from jj22ee/update-e2e-consistency
Update E2E Test Consistency of Generated Data between logs/metrics/traces for eks/ec2 on java/python
2 parents e93eca2 + 5e801e1 commit f416909

26 files changed

+58
-58
lines changed

.github/workflows/application-signals-python-e2e-ec2-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ jobs:
167167
- name: Call all test APIs
168168
continue-on-error: true
169169
run: |
170-
curl -S -s -o /dev/null http://${{ env.MAIN_SERVICE_ENDPOINT }}/outgoing-http-call; echo
171-
curl -S -s -o /dev/null http://${{ env.MAIN_SERVICE_ENDPOINT }}/aws-sdk-call?testingId=${{ env.TESTING_ID }}; echo
172-
curl -S -s -o /dev/null http://${{ env.MAIN_SERVICE_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}; echo
173-
curl -S -s -o /dev/null http://${{ env.MAIN_SERVICE_ENDPOINT }}/client-call; echo
170+
curl -S -s -o /dev/null "http://${{ env.MAIN_SERVICE_ENDPOINT }}/outgoing-http-call"; echo
171+
curl -S -s -o /dev/null "http://${{ env.MAIN_SERVICE_ENDPOINT }}/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"; echo
172+
curl -S -s -o /dev/null "http://${{ env.MAIN_SERVICE_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"; echo
173+
curl -S -s -o /dev/null "http://${{ env.MAIN_SERVICE_ENDPOINT }}/client-call"; echo
174174
175175
- name: Initiate Gradlew Daemon
176176
uses: ./.github/workflows/actions/execute_and_retry
@@ -192,7 +192,7 @@ jobs:
192192
--log-group ${{ env.LOG_GROUP_NAME }}
193193
--service-name python-sample-application-${{ env.TESTING_ID }}
194194
--remote-service-name python-sample-remote-application-${{ env.TESTING_ID }}
195-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
195+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
196196
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
197197
--rollup'
198198

@@ -225,7 +225,7 @@ jobs:
225225
--log-group ${{ env.LOG_GROUP_NAME }}
226226
--service-name python-sample-application-${{ env.TESTING_ID }}
227227
--remote-service-name python-sample-remote-application-${{ env.TESTING_ID }}
228-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
228+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
229229
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
230230
--rollup'
231231

.github/workflows/application-signals-python-e2e-eks-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,10 @@ jobs:
258258
- name: Call all test APIs
259259
continue-on-error: true
260260
run: |
261-
curl -S -s -o /dev/null http://${{ env.APP_ENDPOINT }}/outgoing-http-call; echo
262-
curl -S -s -o /dev/null http://${{ env.APP_ENDPOINT }}/aws-sdk-call?testingId=${{ env.TESTING_ID }}; echo
263-
curl -S -s -o /dev/null http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}; echo
264-
curl -S -s -o /dev/null http://${{ env.APP_ENDPOINT }}/client-call; echo
261+
curl -S -s -o /dev/null "http://${{ env.APP_ENDPOINT }}/outgoing-http-call"; echo
262+
curl -S -s -o /dev/null "http://${{ env.APP_ENDPOINT }}/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}"; echo
263+
curl -S -s -o /dev/null "http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}"; echo
264+
curl -S -s -o /dev/null "http://${{ env.APP_ENDPOINT }}/client-call"; echo
265265
266266
- name: Initiate Gradlew Daemon
267267
uses: ./.github/workflows/actions/execute_and_retry
@@ -286,7 +286,7 @@ jobs:
286286
--platform-info ${{ inputs.test-cluster-name }}
287287
--service-name python-application-${{ env.TESTING_ID }}
288288
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
289-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
289+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
290290
--rollup'
291291

292292
- name: Call endpoints and validate generated metrics
@@ -320,7 +320,7 @@ jobs:
320320
--platform-info ${{ inputs.test-cluster-name }}
321321
--service-name python-application-${{ env.TESTING_ID }}
322322
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
323-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
323+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
324324
--rollup'
325325

326326
- name: Publish metric on test result

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,10 @@ jobs:
164164
- name: Call all test APIs
165165
continue-on-error: true
166166
run: |
167-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/outgoing-http-call
168-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/aws-sdk-call?testingId=${{ env.TESTING_ID }}
169-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}
170-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}/client-call
167+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}/outgoing-http-call"
168+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"
169+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"
170+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}/client-call"
171171
172172
- name: Initiate Gradlew Daemon
173173
uses: ./.github/workflows/actions/execute_and_retry
@@ -190,7 +190,7 @@ jobs:
190190
--log-group ${{ env.LOG_GROUP_NAME }}
191191
--service-name sample-application-${{ env.TESTING_ID }}
192192
--remote-service-name sample-remote-application-${{ env.TESTING_ID }}
193-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
193+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
194194
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
195195
--rollup'
196196

@@ -224,7 +224,7 @@ jobs:
224224
--log-group ${{ env.LOG_GROUP_NAME }}
225225
--service-name sample-application-${{ env.TESTING_ID }}
226226
--remote-service-name sample-remote-application-${{ env.TESTING_ID }}
227-
--query-string ip=${{ env.REMOTE_SERVICE_IP }}
227+
--query-string ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}
228228
--instance-ami ${{ env.EC2_INSTANCE_AMI }}
229229
--rollup'
230230

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ jobs:
267267
- name: Call all test APIs
268268
continue-on-error: true
269269
run: |
270-
curl -S -s http://${{ env.APP_ENDPOINT }}/outgoing-http-call
271-
curl -S -s http://${{ env.APP_ENDPOINT }}/aws-sdk-call?testingId=${{ env.TESTING_ID }}
272-
curl -S -s http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}
273-
curl -S -s http://${{ env.APP_ENDPOINT }}/client-call
270+
curl -S -s "http://${{ env.APP_ENDPOINT }}/outgoing-http-call"
271+
curl -S -s "http://${{ env.APP_ENDPOINT }}/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}"
272+
curl -S -s "http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}"
273+
curl -S -s "http://${{ env.APP_ENDPOINT }}/client-call"
274274
275275
- name: Initiate Gradlew Daemon
276276
uses: ./.github/workflows/actions/execute_and_retry
@@ -295,7 +295,7 @@ jobs:
295295
--platform-info ${{ inputs.test-cluster-name }}
296296
--service-name sample-application-${{ env.TESTING_ID }}
297297
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
298-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
298+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
299299
--rollup'
300300

301301
- name: Call endpoints and validate generated metrics
@@ -330,7 +330,7 @@ jobs:
330330
--platform-info ${{ inputs.test-cluster-name }}
331331
--service-name sample-application-${{ env.TESTING_ID }}
332332
--remote-service-deployment-name ${{ env.REMOTE_SERVICE_DEPLOYMENT_NAME }}
333-
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}
333+
--query-string ip=${{ env.REMOTE_SERVICE_POD_IP }}&testingId=${{ env.TESTING_ID }}
334334
--rollup'
335335

336336
- name: Publish metric on test result

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ jobs:
101101
- name: Call all test APIs
102102
continue-on-error: true
103103
run: |
104-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/outgoing-http-call; echo
105-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}; echo
106-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}; echo
107-
curl -S -s http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/client-call; echo
104+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/outgoing-http-call"; echo
105+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/aws-sdk-call?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"; echo
106+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/remote-service?ip=${{ env.REMOTE_SERVICE_IP }}&testingId=${{ env.TESTING_ID }}"; echo
107+
curl -S -s "http://${{ env.MAIN_SERVICE_ENDPOINT }}:30100/client-call"; echo
108108
109109
# Validation for pulse telemetry data
110110
- name: Validate generated EMF logs

.github/workflows/appsignals-e2e-metric-limiter-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,10 @@ jobs:
279279
- name: Call all test APIs
280280
continue-on-error: true
281281
run: |
282-
curl -S -s http://${{ env.APP_ENDPOINT }}/outgoing-http-call/; echo
283-
curl -S -s http://${{ env.APP_ENDPOINT }}/aws-sdk-call/; echo
284-
curl -S -s http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}/; echo
285-
curl -S -s http://${{ env.APP_ENDPOINT }}/client-call/; echo
282+
curl -S -s "http://${{ env.APP_ENDPOINT }}/outgoing-http-call"; echo
283+
curl -S -s "http://${{ env.APP_ENDPOINT }}/aws-sdk-call"; echo
284+
curl -S -s "http://${{ env.APP_ENDPOINT }}/remote-service?ip=${{ env.REMOTE_SERVICE_POD_IP }}"; echo
285+
curl -S -s "http://${{ env.APP_ENDPOINT }}/client-call"; echo
286286
287287
- name: Initiate Gradlew Daemon
288288
uses: ./.github/workflows/actions/execute_and_retry

validator/src/main/resources/expected-data-template/ec2/aws-sdk-call-log.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"Version": "^1$",
1313
"RemoteService": "AWS.SDK.S3",
1414
"RemoteOperation": "GetBucketLocation",
15-
"RemoteTarget": "e2e-test-bucket-name",
15+
"RemoteTarget": "^::s3:::e2e-test-bucket-name-{{testingId}}$",
1616
"aws.span.kind": "^CLIENT$"
1717
}]

validator/src/main/resources/expected-data-template/ec2/aws-sdk-call-trace.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/aws-sdk-call$",
5+
"url": "^{{endpoint}}/aws-sdk-call\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {
@@ -32,7 +32,7 @@
3232
"name": "^S3$",
3333
"http": {
3434
"request": {
35-
"url": "^https://e2e-test-bucket-name.s3.{{region}}.amazonaws.com\\?location$",
35+
"url": "^https://e2e-test-bucket-name-{{testingId}}.s3.{{region}}.amazonaws.com\\?location$",
3636
"method": "^GET$"
3737
}
3838
},
@@ -42,7 +42,7 @@
4242
"aws.local.operation": "^GET /aws-sdk-call$",
4343
"aws.remote.service": "^AWS\\.SDK\\.S3$",
4444
"aws.remote.operation": "^GetBucketLocation$",
45-
"aws.remote.target": "^::s3:::e2e-test-bucket-name$"
45+
"aws.remote.target": "^::s3:::e2e-test-bucket-name-{{testingId}}$"
4646
},
4747
"metadata": {
4848
"default": {

validator/src/main/resources/expected-data-template/ec2/remote-service-trace.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})$",
5+
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {

validator/src/main/resources/expected-data-template/eks/aws-sdk-call-log.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"Version": "^1$",
2121
"RemoteService": "AWS.SDK.S3",
2222
"RemoteOperation": "GetBucketLocation",
23-
"RemoteTarget": "e2e-test-bucket-name",
23+
"RemoteTarget": "^::s3:::e2e-test-bucket-name-{{testingId}}$",
2424
"aws.span.kind": "^CLIENT$"
2525
}]

validator/src/main/resources/expected-data-template/eks/aws-sdk-call-trace.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/aws-sdk-call$",
5+
"url": "^{{endpoint}}/aws-sdk-call\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {
@@ -33,7 +33,7 @@
3333
"name": "^S3$",
3434
"http": {
3535
"request": {
36-
"url": "^https://e2e-test-bucket-name.s3.{{region}}.amazonaws.com\\?location$",
36+
"url": "^https://e2e-test-bucket-name-{{testingId}}.s3.{{region}}.amazonaws.com\\?location$",
3737
"method": "^GET$"
3838
}
3939
},
@@ -44,7 +44,7 @@
4444
"aws.local.operation": "^GET /aws-sdk-call$",
4545
"aws.remote.service": "^AWS\\.SDK\\.S3$",
4646
"aws.remote.operation": "GetBucketLocation",
47-
"aws.remote.target": "^::s3:::e2e-test-bucket-name$"
47+
"aws.remote.target": "^::s3:::e2e-test-bucket-name-{{testingId}}$"
4848
},
4949
"metadata": {
5050
"default": {

validator/src/main/resources/expected-data-template/eks/remote-service-trace.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})$",
5+
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {

validator/src/main/resources/expected-data-template/python/ec2/aws-sdk-call-log.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"Version": "^1$",
1313
"RemoteService": "AWS.SDK.S3",
1414
"RemoteOperation": "GetBucketLocation",
15-
"RemoteTarget": "::s3:::e2e-test-bucket-name",
15+
"RemoteTarget": "^::s3:::e2e-test-bucket-name-{{testingId}}$",
1616
"aws.span.kind": "^CLIENT$"
1717
}]

validator/src/main/resources/expected-data-template/python/ec2/aws-sdk-call-trace.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/aws-sdk-call$",
5+
"url": "^{{endpoint}}/aws-sdk-call\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {
@@ -42,7 +42,7 @@
4242
"aws.local.operation": "^GET aws-sdk-call$",
4343
"aws.remote.service": "^AWS\\.SDK\\.S3$",
4444
"aws.remote.operation": "^GetBucketLocation$",
45-
"aws.remote.target": "^::s3:::e2e-test-bucket-name$"
45+
"aws.remote.target": "^::s3:::e2e-test-bucket-name-{{testingId}}$"
4646
},
4747
"metadata": {
4848
"default": {

validator/src/main/resources/expected-data-template/python/ec2/remote-service-trace.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})$",
5+
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {

validator/src/main/resources/expected-data-template/python/eks/aws-sdk-call-log.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"Version": "^1$",
2121
"RemoteService": "AWS.SDK.S3",
2222
"RemoteOperation": "GetBucketLocation",
23-
"RemoteTarget": "::s3:::e2e-test-bucket-name",
23+
"RemoteTarget": "^::s3:::e2e-test-bucket-name-{{testingId}}$",
2424
"aws.span.kind": "^CLIENT$"
2525
}]

validator/src/main/resources/expected-data-template/python/eks/aws-sdk-call-trace.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/aws-sdk-call$",
5+
"url": "^{{endpoint}}/aws-sdk-call\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {
@@ -45,7 +45,7 @@
4545
"aws.local.operation": "^GET aws-sdk-call$",
4646
"aws.remote.service": "^AWS\\.SDK\\.S3$",
4747
"aws.remote.operation": "GetBucketLocation",
48-
"aws.remote.target": "::s3:::e2e-test-bucket-name"
48+
"aws.remote.target": "^::s3:::e2e-test-bucket-name-{{testingId}}$"
4949
},
5050
"metadata": {
5151
"default": {

validator/src/main/resources/expected-data-template/python/eks/remote-service-trace.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "^{{serviceName}}$",
33
"http": {
44
"request": {
5-
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})$",
5+
"url": "^{{endpoint}}/remote-service\\?ip=(([0-9]{1,3}.){3}[0-9]{1,3})&testingId={{testingId}}$",
66
"method": "^GET$"
77
},
88
"response": {

validator/src/main/resources/validations/ec2/log-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "cw-log"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedLogStructureTemplate: "EC2_AWS_SDK_CALL_LOG"
1313
-
1414
validationType: "cw-log"

validator/src/main/resources/validations/ec2/trace-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "trace"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedTraceTemplate: "EC2_AWS_SDK_CALL_TRACE"
1313
-
1414
validationType: "trace"

validator/src/main/resources/validations/eks/log-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "cw-log"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedLogStructureTemplate: "EKS_AWS_SDK_CALL_LOG"
1313
-
1414
validationType: "cw-log"

validator/src/main/resources/validations/eks/trace-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "trace"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedTraceTemplate: "EKS_AWS_SDK_CALL_TRACE"
1313
-
1414
validationType: "trace"

validator/src/main/resources/validations/python/ec2/log-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "cw-log"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedLogStructureTemplate: "PYTHON_EC2_AWS_SDK_CALL_LOG"
1313
-
1414
validationType: "cw-log"

validator/src/main/resources/validations/python/ec2/trace-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "trace"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedTraceTemplate: "PYTHON_EC2_AWS_SDK_CALL_TRACE"
1313
-
1414
validationType: "trace"

validator/src/main/resources/validations/python/eks/log-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "cw-log"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedLogStructureTemplate: "PYTHON_EKS_AWS_SDK_CALL_LOG"
1313
-
1414
validationType: "cw-log"

validator/src/main/resources/validations/python/eks/trace-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
validationType: "trace"
99
httpPath: "/aws-sdk-call"
1010
httpMethod: "get"
11-
callingType: "http"
11+
callingType: "http-with-query"
1212
expectedTraceTemplate: "PYTHON_EKS_AWS_SDK_CALL_TRACE"
1313
-
1414
validationType: "trace"

0 commit comments

Comments
 (0)