summaryrefslogtreecommitdiff
path: root/osprofiler/drivers
diff options
context:
space:
mode:
authorTovin Seven <vinhnt@vn.fujitsu.com>2017-07-04 11:09:06 +0700
committerTovin Seven <vinhnt@vn.fujitsu.com>2018-05-29 06:03:46 +0000
commit513a7c88a76f5b805de60a0a1b25b9b41e10a6d4 (patch)
treea97c6c1a3aad0a6c427932ac101eee0aee833044 /osprofiler/drivers
parente1ba98e13a598f2df7d3f18376680e372adc309d (diff)
downloadosprofiler-513a7c88a76f5b805de60a0a1b25b9b41e10a6d4.tar.gz
OSprofiler with Jaeger Tracing as backend
In this patch, I use Uber Jaeger as a tracer. Trace/span from OSprofiler will be sent to Jaeger. We can use Jaeger UI to view trace. A sample image of trace in Jaeger: https://tovin07.github.io/opentracing/jaeger-openstack-image-list.png Reference: - OpenTracing: http://opentracing.io/ - Uber Jager: https://www.jaegertracing.io/docs/ Depends-On: Iaac3ac3853867a67f7e386e762e0522076235daf Change-Id: I8f75af487f50d5e67a1321a4c951d2a0d85733a1 Implements: blueprint opentracing-compatible
Diffstat (limited to 'osprofiler/drivers')
-rw-r--r--osprofiler/drivers/__init__.py1
-rw-r--r--osprofiler/drivers/jaeger.py147
2 files changed, 148 insertions, 0 deletions
diff --git a/osprofiler/drivers/__init__.py b/osprofiler/drivers/__init__.py
index c59f25e..37fdb69 100644
--- a/osprofiler/drivers/__init__.py
+++ b/osprofiler/drivers/__init__.py
@@ -1,5 +1,6 @@
from osprofiler.drivers import base # noqa
from osprofiler.drivers import elasticsearch_driver # noqa
+from osprofiler.drivers import jaeger # noqa
from osprofiler.drivers import loginsight # noqa
from osprofiler.drivers import messaging # noqa
from osprofiler.drivers import mongodb # noqa
diff --git a/osprofiler/drivers/jaeger.py b/osprofiler/drivers/jaeger.py
new file mode 100644
index 0000000..669aa13
--- /dev/null
+++ b/osprofiler/drivers/jaeger.py
@@ -0,0 +1,147 @@
+# Copyright 2018 Fujitsu Ltd.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import collections
+import datetime
+import time
+
+from oslo_config import cfg
+from oslo_serialization import jsonutils
+import six.moves.urllib.parse as parser
+
+from osprofiler import _utils as utils
+from osprofiler.drivers import base
+from osprofiler import exc
+
+
+class Jaeger(base.Driver):
+ def __init__(self, connection_str, project=None, service=None, host=None,
+ conf=cfg.CONF, **kwargs):
+ """Jaeger driver for OSProfiler."""
+
+ super(Jaeger, self).__init__(connection_str, project=project,
+ service=service, host=host,
+ conf=conf, **kwargs)
+ try:
+ import jaeger_client
+ self.jaeger_client = jaeger_client
+ except ImportError:
+ raise exc.CommandError(
+ "To use OSProfiler with Uber Jaeger tracer, "
+ "you have to install `jaeger-client` manually. "
+ "Install with pip:\n `pip install jaeger-client`."
+ )
+
+ parsed_url = parser.urlparse(connection_str)
+ cfg = {
+ "local_agent": {
+ "reporting_host": parsed_url.hostname,
+ "reporting_port": parsed_url.port,
+ }
+ }
+
+ # Initialize tracer for each profiler
+ service_name = "{}-{}".format(project, service)
+ config = jaeger_client.Config(cfg, service_name=service_name)
+ self.tracer = config.initialize_tracer()
+
+ self.spans = collections.deque()
+
+ @classmethod
+ def get_name(cls):
+ return "jaeger"
+
+ def notify(self, payload):
+ if payload["name"].endswith("start"):
+ timestamp = datetime.datetime.strptime(payload["timestamp"],
+ "%Y-%m-%dT%H:%M:%S.%f")
+ epoch = datetime.datetime.utcfromtimestamp(0)
+ start_time = (timestamp - epoch).total_seconds()
+
+ # Create parent span
+ child_of = self.jaeger_client.SpanContext(
+ trace_id=utils.shorten_id(payload["base_id"]),
+ span_id=utils.shorten_id(payload["parent_id"]),
+ parent_id=None,
+ flags=self.jaeger_client.span.SAMPLED_FLAG
+ )
+
+ # Create Jaeger Tracing span
+ span = self.tracer.start_span(
+ operation_name=payload["name"].rstrip("-start"),
+ child_of=child_of,
+ tags=self.create_span_tags(payload),
+ start_time=start_time
+ )
+
+ # Replace Jaeger Tracing span_id (random id) to OSProfiler span_id
+ span.context.span_id = utils.shorten_id(payload["trace_id"])
+ self.spans.append(span)
+ else:
+ span = self.spans.pop()
+
+ # Store result of db call and function call
+ for call in ("db", "function"):
+ if payload.get("info", {}).get(call) is not None:
+ span.set_tag("result", payload["info"][call]["result"])
+
+ # Span error tag and log
+ if payload["info"].get("etype") is not None:
+ span.set_tag("error", True)
+ span.log_kv({"error.kind": payload["info"]["etype"]})
+ span.log_kv({"message": payload["info"]["message"]})
+
+ span.finish(finish_time=time.time())
+
+ def get_report(self, base_id):
+ """Please use Jaeger Tracing UI for this task."""
+ return self._parse_results()
+
+ def list_traces(self, fields=None):
+ """Please use Jaeger Tracing UI for this task."""
+ return []
+
+ def list_error_traces(self):
+ """Please use Jaeger Tracing UI for this task."""
+ return []
+
+ def create_span_tags(self, payload):
+ """Create tags for OpenTracing span.
+
+ :param info: Information from OSProfiler trace.
+ :returns tags: A dictionary contains standard tags
+ from OpenTracing sematic conventions,
+ and some other custom tags related to http, db calls.
+ """
+ tags = {}
+ info = payload["info"]
+
+ if info.get("db"):
+ # DB calls
+ tags["db.statement"] = info["db"]["statement"]
+ tags["db.params"] = jsonutils.dumps(info["db"]["params"])
+ elif info.get("request"):
+ # WSGI call
+ tags["http.path"] = info["request"]["path"]
+ tags["http.query"] = info["request"]["query"]
+ tags["http.method"] = info["request"]["method"]
+ tags["http.scheme"] = info["request"]["scheme"]
+ elif info.get("function"):
+ # RPC, function calls
+ tags["args"] = info["function"]["args"]
+ tags["kwargs"] = info["function"]["kwargs"]
+ tags["name"] = info["function"]["name"]
+
+ return tags