Skip to content

Commit 6bde73c

Browse files
authored
Improve pika instrumentation examples (#3390)
1 parent 3a585b4 commit 6bde73c

File tree

1 file changed

+27
-1
lines changed
  • instrumentation/opentelemetry-instrumentation-pika/src/opentelemetry/instrumentation/pika

1 file changed

+27
-1
lines changed

instrumentation/opentelemetry-instrumentation-pika/src/opentelemetry/instrumentation/pika/__init__.py

+27-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
pika_instrumentation = PikaInstrumentor()
5252
pika_instrumentation.instrument_channel(channel=channel)
5353
54-
5554
channel.basic_publish(exchange='', routing_key='hello', body=b'Hello World!')
5655
5756
pika_instrumentation.uninstrument_channel(channel=channel)
@@ -60,23 +59,50 @@
6059
6160
.. code-block:: python
6261
62+
import pika
63+
from opentelemetry.instrumentation.pika import PikaInstrumentor
64+
from opentelemetry.trace import get_tracer_provider
65+
66+
connection = pika.BlockingConnection(pika.URLParameters('amqp://localhost'))
67+
channel = connection.channel()
68+
tracer_provider = get_tracer_provider()
69+
70+
channel.queue_declare(queue='hello')
71+
6372
PikaInstrumentor.instrument_channel(channel, tracer_provider=tracer_provider)
6473
74+
channel.basic_publish(exchange='', routing_key='hello', body=b'Hello World!')
75+
76+
PikaInstrumentor.uninstrument_channel(channel)
77+
6578
* PikaInstrumentor also supports instrumenting with hooks that will be called when producing or consuming a message.
6679
The hooks should be of type "Callable[[Span, bytes, BasicProperties], None]"
6780
where the first parameter is the span, the second parameter is the message body
6881
and the third parameter is the message properties
6982
7083
.. code-block:: python
7184
85+
import pika
86+
from opentelemetry.instrumentation.pika import PikaInstrumentor
87+
from opentelemetry.trace import Span
88+
from pika import BasicProperties
89+
7290
def publish_hook(span: Span, body: bytes, properties: BasicProperties):
7391
span.set_attribute("messaging.payload", body.decode())
7492
7593
def consume_hook(span: Span, body: bytes, properties: BasicProperties):
7694
span.set_attribute("messaging.id", properties.message_id)
7795
96+
connection = pika.BlockingConnection(pika.URLParameters('amqp://localhost'))
97+
channel = connection.channel()
98+
channel.queue_declare(queue='hello')
99+
78100
PikaInstrumentor.instrument_channel(channel, publish_hook=publish_hook, consume_hook=consume_hook)
79101
102+
channel.basic_publish(exchange='', routing_key='hello', body=b'Hello World!')
103+
104+
PikaInstrumentor.uninstrument_channel(channel)
105+
80106
Consumer Instrumentation
81107
------------------------
82108
For consumer instrumentation, pika supports two consuming modes:

0 commit comments

Comments
 (0)