Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ endif::[]
* Add lambda layer for instrumenting AWS Lambda functions {pull}1826[#1826]
* Implement instrumentation of Azure Functions {pull}1766[#1766]
* Add support for Django to wrapper script {pull}1780[#1780]
* Add support for Starlette to wrapper script {pull}1830[#1830]
* Add `transport_json_serializer` configuration option {pull}1777[#1777]
* Add S3 bucket and key name to OTel attributes {pull}1790[#1790]
* Implement partial transaction support in AWS lambda {pull}1784[#1784]
Expand Down
3 changes: 2 additions & 1 deletion docs/wrapper.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ no-code-changes instrumentation:

* Django
* Flask
* Starlette

Please keep in mind that these instrumentations are a work in progress! We'd
love to have feedback on our
Expand Down Expand Up @@ -54,4 +55,4 @@ You can also pass config options as arguments to the script:
[source,bash]
----
$ elasticapm-run --config "service_name=my_flask_app" --config "debug=true" flask run
----
----
55 changes: 55 additions & 0 deletions elasticapm/instrumentation/packages/starlette.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# BSD 3-Clause License
#
# Copyright (c) 2022, Elasticsearch BV
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import weakref
from typing import TYPE_CHECKING

from elasticapm.instrumentation.packages.base import AbstractInstrumentedModule

if TYPE_CHECKING:
from starlette.applications import Starlette


class StarletteInstrumentation(AbstractInstrumentedModule):
name = "starlette"

instrument_list = [("starlette.applications", "Starlette.build_middleware_stack")]

instrumented_apps = []

creates_transactions = True

def call(self, module, method, wrapped, instance: "Starlette", args, kwargs):
from elasticapm.contrib.starlette import ElasticAPM

if ElasticAPM not in instance.user_middleware:
instance.add_middleware(ElasticAPM, client=None)
self.instrumented_apps.append(weakref.ref(instance))
return wrapped(*args, **kwargs)
1 change: 1 addition & 0 deletions elasticapm/instrumentation/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
_wrapper_register = {
"elasticapm.instrumentation.packages.flask.FlaskInstrumentation",
"elasticapm.instrumentation.packages.django.DjangoAutoInstrumentation",
"elasticapm.instrumentation.packages.starlette.StarletteInstrumentation",
}


Expand Down
62 changes: 62 additions & 0 deletions tests/instrumentation/starlette_tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# BSD 3-Clause License
#
# Copyright (c) 2023, Elasticsearch BV
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import pytest # isort:skip

pytest.importorskip("starlette") # isort:skip

from starlette.applications import Starlette
from starlette.responses import PlainTextResponse
from starlette.routing import Route
from starlette.testclient import TestClient

from elasticapm import async_capture_span
from elasticapm.conf import constants
from elasticapm.contrib.starlette import ElasticAPM


def test_starlette_app_instrumented(wrapper_instrument, elasticapm_client):
async def hi(request):
body = await request.body()
with async_capture_span("test"):
pass
return PlainTextResponse(str(len(body)))

routes = [Route("/", hi)]
app = Starlette(routes=routes)
test_client = TestClient(app)

app.build_middleware_stack()
assert any(middleware.cls is ElasticAPM for middleware in app.user_middleware)
test_client.get("/")
transaction = elasticapm_client.events[constants.TRANSACTION][0]
assert transaction["name"] == "GET /"
assert transaction["result"] == "HTTP 2xx"
assert transaction["outcome"] == "success"