File tree Expand file tree Collapse file tree
instrumentation/opentelemetry-instrumentation-botocore/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919 ([ #4203 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4203 ) )
2020- ` opentelemetry-instrumentation-psycopg2 ` : Add parameter ` capture_parameters ` to instrumentor.
2121 ([ #4212 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4212 ) )
22+ - ` opentelemetry-instrumentation-botocore ` : Add support for instrumenting ` aiobotocore `
23+ ([ #4049 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4049 ) )
2224
2325### Fixed
2426
@@ -239,8 +241,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
239241 ([ #3681 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3681 ) )
240242- ` opentelemetry-instrumentation-flask ` : Fix exemplars generation for ` http.server.request.duration ` and ` http.server.duration ` metrics
241243 ([ #3912 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3912 ) )
242- - ` opentelemetry-instrumentation-botocore ` : Add support for instrumenting ` aiobotocore `
243- ([ #4049 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4049 ) )
244244
245245### Added
246246
Original file line number Diff line number Diff line change 1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14- import importlib .util
1514import json
1615import os
1716from importlib .metadata import EntryPoint
5453
5554_REQUEST_ID_REGEX_MATCH = r"[A-Za-z0-9]{52}"
5655
57- aiobotocore_installed = importlib .util .find_spec ("aiobotocore" ) is not None
58-
5956
6057# pylint:disable=too-many-public-methods
6158class TestBotocoreInstrumentor (TestBase ):
You can’t perform that action at this time.
0 commit comments