Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ dependencies {
// Use JUnit test framework.
//testImplementation 'junit:junit:4.13'

//Distributed Tracing Dependency on OpenTelemetry and Solace OpenTelemetry JCSMP Integration
// Distributed tracing dependencies: OpenTelemetry and OpenTelemetry for Solace JCSMP API
implementation group: 'com.solace', name: 'solace-opentelemetry-jcsmp-integration', version: '1.1.0'
implementation group: 'io.opentelemetry', name: 'opentelemetry-exporter-otlp', version: '1.47.+'
implementation group: 'io.opentelemetry.semconv', name: 'opentelemetry-semconv', version: '1.29.+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
import io.opentelemetry.semconv.SemanticAttributes;

/**
* A sample that shows how to generate a Publisher/send span with Solace OpenTelemetry Integration
* for JCSMP.
* A sample that shows how to generate a Publisher/send span with OpenTelemetry for Solace JCSMP
* API.
* <p>
* Setup a Solace PubSub+ Broker and OpenTelemetry Collector as per tutorial >
* Setup a Solace Event Broker and OpenTelemetry Collector as per tutorial >
* https://codelabs.solace.dev/codelabs/dt-otel/index.html
* <p>
* This is the Publisher in the Publish-Subscribe messaging pattern.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
import io.opentelemetry.semconv.SemanticAttributes;

/**
* A sample that shows how to generate a Publisher/send span with Solace OpenTelemetry Integration
* for JCSMP.
* A sample that shows how to generate a Publisher/send span with OpenTelemetry for Solace JCSMP
* API.
* <p>
* Setup a Solace PubSub+ Broker and OpenTelemetry Collector as per tutorial >
* Setup a Solace Event Broker and OpenTelemetry Collector as per tutorial >
* https://codelabs.solace.dev/codelabs/dt-otel/index.html
* <p>
* This is the Publisher in the Publish-Subscribe messaging pattern.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void handleEvent(Object source, FlowEventArgs event) {
} catch (JCSMPErrorResponseException e) { // something else went wrong: queue not exist, queue shutdown, etc.
logger.error(e);
System.err.printf("%n*** Could not establish a connection to queue '%s': %s%n", queueName, e.getMessage());
System.err.println("Create queue using PubSub+ Manager WebGUI, and add subscription solace/tracing ");
System.err.println("Create queue using Broker Manager WebGUI, and add subscription solace/tracing ");
System.err.println(" or see the SEMP CURL scripts inside the 'semp-rest-api' directory.");
// could also try to retry, loop and retry until successfully able to connect to the queue
System.err.println("NOTE: see QueueProvision sample for how to construct queue with consumer app.");
Expand Down