Skip to content

Commit e6dff7e

Browse files
Add support instrumentation for Tornado 5.1.1 (#812)
* Add support instrumentation for Tornado 5.1.1 * update CHANGELOG.md
1 parent a9507b3 commit e6dff7e

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.7.0-0.26b0...HEAD)
9-
9+
- `opentelemetry-instrumentation-tornado` Add support instrumentation for Tornado 5.1.1
10+
([#812](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/812))
11+
1012
## [1.7.1-0.26b1](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.7.0-0.26b0) - 2021-11-11
1113

1214
- `opentelemetry-instrumentation-aws-lambda` Add instrumentation for AWS Lambda Service - pkg metadata files (Part 1/2)

docs-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ PyMySQL~=0.9.3
3434
pyramid>=1.7
3535
redis>=2.6
3636
sqlalchemy>=1.0
37-
tornado>=6.0
37+
tornado>=5.1.1
3838
ddtrace>=0.34.0
3939
httpx~=0.18.0

instrumentation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
| [opentelemetry-instrumentation-sqlalchemy](./opentelemetry-instrumentation-sqlalchemy) | sqlalchemy |
3333
| [opentelemetry-instrumentation-sqlite3](./opentelemetry-instrumentation-sqlite3) | sqlite3 |
3434
| [opentelemetry-instrumentation-starlette](./opentelemetry-instrumentation-starlette) | starlette ~= 0.13.0 |
35-
| [opentelemetry-instrumentation-tornado](./opentelemetry-instrumentation-tornado) | tornado >= 6.0 |
35+
| [opentelemetry-instrumentation-tornado](./opentelemetry-instrumentation-tornado) | tornado >= 5.1.1 |
3636
| [opentelemetry-instrumentation-urllib](./opentelemetry-instrumentation-urllib) | urllib |
3737
| [opentelemetry-instrumentation-urllib3](./opentelemetry-instrumentation-urllib3) | urllib3 >= 1.0.0, < 2.0.0 |
3838
| [opentelemetry-instrumentation-wsgi](./opentelemetry-instrumentation-wsgi) | wsgi |

instrumentation/opentelemetry-instrumentation-tornado/src/opentelemetry/instrumentation/tornado/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
_instruments = ("tornado >= 6.0",)
16+
_instruments = ("tornado >= 5.1.1",)

opentelemetry-instrumentation/src/opentelemetry/instrumentation/bootstrap_gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
"instrumentation": "opentelemetry-instrumentation-starlette==0.26b1",
126126
},
127127
"tornado": {
128-
"library": "tornado >= 6.0",
128+
"library": "tornado >= 5.1.1",
129129
"instrumentation": "opentelemetry-instrumentation-tornado==0.26b1",
130130
},
131131
"urllib3": {

0 commit comments

Comments
 (0)