Technical & DevelopmentIntermediate
azure-monitor-ingestion-java
Custom log ingestion to Azure Monitor
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-monitor-ingestion-javanpx skills add https://github.com/microsoft/skills --skill azure-monitor-ingestion-javaOr paste this URL into your assistant to install:
Overview
What This Skill Does
Java client library for sending custom logs to Azure Monitor using the Logs Ingestion API. Works through Data Collection Rules (DCR) and Data Collection Endpoints (DCE) to route logs into Log Analytics workspace tables. Supports both synchronous and async (Reactor) upload patterns.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure Monitor Ingestion SDK for Java
Client library for sending custom logs to Azure Monitor using the Logs Ingestion API via Data Collection Rules.
Installation
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-ingestion</artifactId>
<version>1.2.11</version>
</dependency>
Or use Azure SDK BOM:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>{bom_version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-ingestion</artifactId>
</dependency>
</dependencies>
Lines 1 - 36 of 231
Recommendations