-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into instrumentation-scope
- Loading branch information
Showing
16 changed files
with
279 additions
and
129 deletions.
There are no files selected for viewing
78 changes: 49 additions & 29 deletions
78
frontend/public/locales/en/messagingQueuesKafkaOverview.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,50 @@ | ||
{ | ||
"breadcrumb": "Messaging Queues", | ||
"header": "Kafka / Overview", | ||
"overview": { | ||
"title": "Start sending data in as little as 20 minutes", | ||
"subtitle": "Connect and Monitor Your Data Streams" | ||
}, | ||
"configureConsumer": { | ||
"title": "Configure Consumer", | ||
"description": "Add consumer data sources to gain insights and enhance monitoring.", | ||
"button": "Get Started" | ||
}, | ||
"configureProducer": { | ||
"title": "Configure Producer", | ||
"description": "Add producer data sources to gain insights and enhance monitoring.", | ||
"button": "Get Started" | ||
}, | ||
"monitorKafka": { | ||
"title": "Monitor kafka", | ||
"description": "Add your Kafka source to gain insights and enhance activity tracking.", | ||
"button": "Get Started" | ||
}, | ||
"summarySection": { | ||
"viewDetailsButton": "View Details" | ||
}, | ||
"confirmModal": { | ||
"content": "Before navigating to the details page, please make sure you have configured all the required setup to ensure correct data monitoring.", | ||
"okText": "Proceed" | ||
} | ||
} | ||
"breadcrumb": "Messaging Queues", | ||
"header": "Kafka / Overview", | ||
"overview": { | ||
"title": "Start sending data in as little as 20 minutes", | ||
"subtitle": "Connect and Monitor Your Data Streams" | ||
}, | ||
"configureConsumer": { | ||
"title": "Configure Consumer", | ||
"description": "Add consumer data sources to gain insights and enhance monitoring.", | ||
"button": "Get Started" | ||
}, | ||
"configureProducer": { | ||
"title": "Configure Producer", | ||
"description": "Add producer data sources to gain insights and enhance monitoring.", | ||
"button": "Get Started" | ||
}, | ||
"monitorKafka": { | ||
"title": "Monitor kafka", | ||
"description": "Add your Kafka source to gain insights and enhance activity tracking.", | ||
"button": "Get Started" | ||
}, | ||
"summarySection": { | ||
"viewDetailsButton": "View Details", | ||
"consumer": { | ||
"title": "Consumer lag view", | ||
"description": "Connect and Monitor Your Data Streams" | ||
}, | ||
"producer": { | ||
"title": "Producer latency view", | ||
"description": "Connect and Monitor Your Data Streams" | ||
}, | ||
"partition": { | ||
"title": "Partition Latency view", | ||
"description": "Connect and Monitor Your Data Streams" | ||
}, | ||
"dropRate": { | ||
"title": "Drop Rate view", | ||
"description": "Connect and Monitor Your Data Streams" | ||
} | ||
}, | ||
"confirmModal": { | ||
"content": "Before navigating to the details page, please make sure you have configured all the required setup to ensure correct data monitoring.", | ||
"okText": "Proceed" | ||
}, | ||
"overviewSummarySection": { | ||
"title": "Monitor Your Data Streams", | ||
"subtitle": "Monitor key Kafka metrics like consumer lag and latency to ensure efficient data flow and troubleshoot in real time." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...md-docs/SpringBoot/Kubernetes/springBoot-kubernetes-runApplication-consumers.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
| ||
|
||
Once you are done instrumenting your Java application, you can run it using the below commands | ||
|
||
**Note:** | ||
- Ensure you have Java and Maven installed. Compile your Java consumer applications: Ensure your consumer apps are compiled and ready to run. | ||
|
||
**Run Consumer App with Java Agent:** | ||
|
||
```bash | ||
java -javaagent:/path/to/opentelemetry-javaagent.jar \ | ||
-Dotel.service.name=consumer-svc \ | ||
-Dotel.traces.exporter=otlp \ | ||
-Dotel.metrics.exporter=otlp \ | ||
-Dotel.logs.exporter=otlp \ | ||
-Dotel.instrumentation.kafka.producer-propagation.enabled=true \ | ||
-Dotel.instrumentation.kafka.experimental-span-attributes=true \ | ||
-Dotel.instrumentation.kafka.metric-reporter.enabled=true \ | ||
-jar /path/to/your/consumer.jar | ||
``` | ||
|
||
<path> - update it to the path where you downloaded the Java JAR agent in previous step | ||
<my-app> - Jar file of your application | ||
|
||
| ||
|
||
**Note:** | ||
- In case you're dockerising your application, make sure to dockerise it along with OpenTelemetry instrumentation done in previous step. | ||
|
||
| ||
|
||
If you encounter any difficulties, please consult the [troubleshooting section](https://signoz.io/docs/instrumentation/springboot/#troubleshooting-your-installation) for assistance. |
4 changes: 2 additions & 2 deletions
4
...md-docs/SpringBoot/Kubernetes/springBoot-kubernetes-runApplication-producers.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.