You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: framework-docs/modules/ROOT/pages/integration/jms/using.adoc
+8-6
Original file line number
Diff line number
Diff line change
@@ -167,13 +167,15 @@ operations that do not refer to a specific destination.
167
167
168
168
One of the most common uses of JMS messages in the EJB world is to drive message-driven
169
169
beans (MDBs). Spring offers a solution to create message-driven POJOs (MDPs) in a way
170
-
that does not tie a user to an EJB container. (See xref:integration/jms/receiving.adoc#jms-receiving-async[Asynchronous reception: Message-Driven POJOs] for detailed
171
-
coverage of Spring's MDP support.) Since Spring Framework 4.1, endpoint methods can be
172
-
annotated with `@JmsListener` -- see xref:integration/jms/annotated.adoc[Annotation-driven Listener Endpoints] for more details.
170
+
that does not tie a user to an EJB container. (See
Copy file name to clipboardExpand all lines: framework-docs/modules/ROOT/pages/integration/observability.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ This instrumentation will create 2 types of observations:
126
126
* `"jms.message.publish"` when a JMS message is sent to the broker, typically with `JmsTemplate`.
127
127
* `"jms.message.process"` when a JMS message is processed by the application, typically with a `MessageListener` or a `@JmsListener` annotated method.
128
128
129
-
NOTE: Currently there is no instrumentation for `"jms.message.receive"` observations as there is little value in measuring the time spent waiting for the reception of a message.
129
+
NOTE: Currently there is no instrumentation for `"jms.message.receive"` observations as there is little value in measuring the time spent waiting for the receipt of a message.
130
130
Such an integration would typically instrument `MessageConsumer#receive` method calls. But once those return, the processing time is not measured and the trace scope cannot be propagated to the application.
131
131
132
132
By default, both observations share the same set of possible `KeyValues`:
0 commit comments