Skip to content

Commit a8aad4d

Browse files
committed
Remove soap
Signed-off-by: Varsha GS <[email protected]>
1 parent 860fa62 commit a8aad4d

File tree

4 files changed

+4
-86
lines changed

4 files changed

+4
-86
lines changed

instana/recorder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class StanRecorder(object):
2121
"couchbase", "django", "gcs", "gcps-producer",
2222
"gcps-consumer", "log", "memcache", "mongo", "mysql",
2323
"postgres", "pymongo", "rabbitmq", "redis","render",
24-
"rpc-client", "rpc-server", "sqlalchemy", "soap",
25-
"tornado-client", "tornado-server", "urllib3", "wsgi", "asgi")
24+
"rpc-client", "rpc-server", "sqlalchemy", "tornado-client",
25+
"tornado-server", "urllib3", "wsgi", "asgi")
2626

2727
# Recorder thread for collection/reporting of spans
2828
thread = None

instana/span.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,12 @@ def get_span_kind(self, span):
245245

246246

247247
class RegisteredSpan(BaseSpan):
248-
HTTP_SPANS = ("aiohttp-client", "aiohttp-server", "django", "http", "soap", "tornado-client",
248+
HTTP_SPANS = ("aiohttp-client", "aiohttp-server", "django", "http", "tornado-client",
249249
"tornado-server", "urllib3", "wsgi", "asgi")
250250

251251
EXIT_SPANS = ("aiohttp-client", "boto3", "cassandra", "celery-client", "couchbase", "log", "memcache",
252252
"mongo", "mysql", "postgres", "rabbitmq", "redis", "rpc-client", "sqlalchemy",
253-
"soap", "tornado-client", "urllib3", "pymongo", "gcs", "gcps-producer")
253+
"tornado-client", "urllib3", "pymongo", "gcs", "gcps-producer")
254254

255255
ENTRY_SPANS = ("aiohttp-server", "aws.lambda.entry", "celery-worker", "django", "wsgi", "rabbitmq",
256256
"rpc-server", "tornado-server", "gcps-consumer", "asgi")
@@ -501,9 +501,6 @@ def _collect_http_tags(self, span):
501501
self.data["http"]["error"] = span.tags.pop('http.error', None)
502502

503503
if len(span.tags) > 0:
504-
if span.operation_name == "soap":
505-
self.data["soap"]["action"] = span.tags.pop('soap.action', None)
506-
507504
custom_headers = []
508505
for key in span.tags:
509506
if key[0:12] == "http.header.":

tests/apps/soap_app/__init__.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

tests/apps/soap_app/app.py

Lines changed: 0 additions & 67 deletions
This file was deleted.

0 commit comments

Comments
 (0)