Пример #1
0
    def test_should_add_tracing_information(self):
        # Given
        with Flask("tracing").app_context():
            # A mock LogRecord and B3 tracing information
            created = time.time()
            levelname = "INFO"
            name = "Logger name"
            record = MockLogRecord(created, levelname, name)
            dt = datetime.fromtimestamp(time.time())
            b3.start_span()
            values = b3.values()

            # When
            # We update the record
            sleuth._update_record(record)

            # Then
            # We should get tracing information
            self.assertTrue(record.tracing_information)
            # "[test,ba580718aefa94b9,ba580718aefa94b9,false] "
            fields = record.tracing_information.strip()[1:-1].split(",")
            self.assertEqual(fields[0], "tracing")
            self.assertEqual(fields[1], values[b3.b3_trace_id])
            self.assertEqual(fields[2], values[b3.b3_span_id])
            self.assertEqual(fields[3], "false")
Пример #2
0
def logging_demo():
    logger = logging.getLogger("demo_logger")
    logger.setLevel(logging.DEBUG)

    # No B3 tracing information collected
    logger.debug("Logging without tracing information")

    # With B3 tracing information collected
    b3.start_span()
    logger.warning("Logging with added tracing information")
    b3.end_span()
Пример #3
0
    def test_should_propagate_span_id_as_parent(self):
        # Given
        # A trace ID in the B3 headers
        span_id = "Barbabright"
        b3.start_span({b3_span_id: span_id})

        # When
        # We update onward request headers
        headers = b3._start_subspan()

        # Then
        # The incoming trace ID should be propagated
        self.assertEqual(span_id, headers[b3_parent_span_id])
Пример #4
0
def api_all():
    #https://github.com/davidcarboni/B3-Propagation
    # print(b3.values())
    # logger = logging.getLogger("werkzeug")
    # logger.setLevel(logging.DEBUG)
    b3.start_span()

    # logger.debug(b3.values()['X-B3-TraceId'], extra = {'props' : {'extra_property' : 'extra_value'}})
    # logger.info("Requested python APi information")
    # logger.info("Hey")
    # logger.info("Custom Logger message Python API", extra = buildTraceInfo(app_name,b3.values()['X-B3-TraceId']) )
    halloLog()
    b3.end_span()
    return jsonify(info)
Пример #5
0
    def test_should_maintain_sampled(self):
        # Given
        # Sampled is not set in the request headers
        sampled = '0'
        b3.start_span({b3_sampled: sampled})

        # When
        # We get b3 values and update onward request headers
        values = b3.values()
        headers = b3._start_subspan()

        # Then
        # The Sampled value should be maintained
        self.assertEqual(sampled, values[b3_sampled])
        self.assertEqual(sampled, headers[b3_sampled])
Пример #6
0
    def test_should_not_set_sampled(self):
        # Given
        # Sampled is not set in the request headers
        b3.start_span({})

        # When
        # We get b3 values and update onward request headers
        values = b3.values()
        headers = b3._start_subspan()

        # Then
        # Sampled should not be set and should
        # remain absent from onward request headers
        self.assertIsNone(values[b3_sampled])
        self.assertFalse(b3_sampled in headers)
Пример #7
0
    def test_should_propagate_with_new_span_id(self):
        # Given
        # A trace ID in the B3 headers
        span_id = "Barbazoo"
        b3.start_span({b3_span_id: span_id})

        # When
        # We update onward request headers
        headers = b3._start_subspan()

        # Then
        # The incoming trace ID should be propagated
        self.assertNotEqual(span_id, headers[b3_span_id])
        # The ID should be 16 characters of hex
        self.assertTrue(re.match("[a-fA-F0-9]{16}", headers[b3_span_id]))
Пример #8
0
    def test_should_maintain_trace_id(self):
        # Given
        # A trace ID in the B3 headers
        trace_id = "Barbapapa"
        b3.start_span({b3_trace_id: trace_id})

        # When
        # We get b3 values and update onward request headers
        values = b3.values()
        headers = b3._start_subspan()

        # Then
        # The incoming trace ID should be maintained
        self.assertEqual(trace_id, values[b3_trace_id])
        self.assertEqual(trace_id, headers[b3_trace_id])
Пример #9
0
    def test_should_set_flags_for_debug(self):
        # Given
        # We have set debug on
        b3.debug = True
        b3.start_span({})

        # When
        # We get b3 values and update onward request headers
        values = b3.values()
        headers = b3._start_subspan()

        # Then
        # Flags should be set to 1 to indicate debug
        self.assertEqual("1", values[b3_flags])
        self.assertEqual("1", headers[b3_flags])
Пример #10
0
    def test_should_maintain_flags_for_debug(self):
        # Given
        # Flags is set in the B3 headers
        flags = '1'
        b3.start_span({b3_flags: flags})

        # When
        # We get b3 values and update onward request headers
        values = b3.values()
        headers = b3._start_subspan()

        # Then
        # Flags should be set to 1 to indicate debug
        self.assertEqual(flags, values[b3.b3_flags])
        self.assertEqual(flags, headers[b3_flags])
Пример #11
0
    def test_should_generate_root_span_ids(self):
        # Given
        # No B3 headers - this is the root span
        b3.start_span({})

        # When
        # We get the B3 values
        values = b3.values()

        # Then
        # Both trace ID and span ID should have been genenated
        self.assertTrue(values[b3_trace_id])
        self.assertTrue(values[b3_span_id])
        # The IDs should be 16 characters of hex
        self.assertTrue(re.match("[a-fA-F0-9]{16}", values[b3_trace_id]))
        self.assertTrue(re.match("[a-fA-F0-9]{16}", values[b3_span_id]))
Пример #12
0
    def test_should_update_span_info_on_subspan_start(self):
        # Given
        # We have a full set of span values
        b3.start_span({b3_sampled: "1", b3_flags: "1"})

        # When
        # We start a subspan
        span = b3.values()
        b3._start_subspan()

        # Then
        # Values should now reflect the sub-span
        subspan = b3.values()
        self.assertEqual(span[b3_trace_id], subspan[b3_trace_id])
        self.assertEqual(span[b3_span_id], subspan[b3_parent_span_id])
        self.assertNotEqual(span[b3_span_id], subspan[b3_span_id])
        self.assertEqual(span[b3_sampled], subspan[b3_sampled])
        self.assertEqual(span[b3_flags], subspan[b3_flags])
Пример #13
0
    def test_should_revert_span_info_on_subspan_end(self):
        # Given
        # We have a full set of span values and a subspan
        b3.start_span({b3_sampled: "1", b3_flags: "1"})
        span = b3.values()
        b3._start_subspan()

        # When
        # We end the subspan
        b3._end_subspan()

        # Then
        # Values should now reflect the sub-span
        reverted = b3.values()
        self.assertEqual(span[b3_trace_id], reverted[b3_trace_id])
        self.assertEqual(span[b3_parent_span_id], reverted[b3_parent_span_id])
        self.assertEqual(span[b3_span_id], reverted[b3_span_id])
        self.assertEqual(span[b3_sampled], reverted[b3_sampled])
        self.assertEqual(span[b3_flags], reverted[b3_flags])
Пример #14
0
def before_request():
    b3.start_span()
Пример #15
0
"""
NB: This example requires Flask to run.
"""
import logging

from flask import Flask, jsonify, request

import b3
from b3 import span

b3.trace_len = 32
app = Flask("test")

# Before and after request to process B3 values and log span boundaries
app.before_request(lambda: b3.start_span(request.headers))
app.after_request(b3.end_span)

# Set up logging to display trace information
log = logging.getLogger(__name__)


@app.route("/")
def default():
    log.warning("Starting with b3 values: {}".format(b3.values()))

    with b3.SubSpan() as headers:
        # Pretend to call a downstream service in the sub-span
        log.warning("Calling downstream service with b3 values: {}".format(
            b3.values()))

    log.warning("Finishing with b3 values: {}".format(b3.values()))