-
Notifications
You must be signed in to change notification settings - Fork 150
[Tracer] Servicebus #7413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
[Tracer] Servicebus #7413
Changes from all commits
9776b69
6268114
343b573
eec3b24
76711c7
5a624f6
36b5b00
f568404
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"UserConfig": { | ||
"Namespaces": [ | ||
{ | ||
"Name": "sbemulatorns", | ||
"Queues": [ | ||
{ | ||
"Name": "samples-azureservicebus-queue", | ||
"Properties": { | ||
"DeadLetteringOnMessageExpiration": false, | ||
"DefaultMessageTimeToLive": "PT1H", | ||
"LockDuration": "PT1M", | ||
"MaxDeliveryCount": 10, | ||
"EnablePartitioning": false, | ||
"RequiresDuplicateDetection": false, | ||
"RequiresSession": false | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"Logging": { | ||
"Type": "File" | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -864,6 +864,17 @@ | |
"7.*.*" | ||
] | ||
}, | ||
{ | ||
"IntegrationName": "AzureServiceBusAPM", | ||
"SampleProjectName": "Samples.AzureServiceBus.APM", | ||
"NugetPackageSearchName": "Azure.Messaging.ServiceBus", | ||
"MinVersion": "7.18.0", | ||
"MaxVersionExclusive": "7.21.0", | ||
"SpecificVersions": [ | ||
"7.18.*", | ||
"7.*.*" | ||
] | ||
}, | ||
Comment on lines
+867
to
+877
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just to clarify, we made a new one here because the sample application is different? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The other samples app was built by DSM and was kept for manual testing, never included as part of CI. We want to test the new stuff, but these changes should be unrelated to DSM instrumentations, so I created a new sample app and included this flow in CI |
||
{ | ||
"IntegrationName": "Selenium", | ||
"SampleProjectName": "Samples.Selenium", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome thanks!