# aliyun-log-jaeger-sender
**Repository Path**: mirrors_aliyun/aliyun-log-jaeger-sender
## Basic Information
- **Project Name**: aliyun-log-jaeger-sender
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2025-11-01
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Aliyun LOG Jaeger Sender
## Introduction
These components make Jaeger compatible with [Aliyun Log Service](https://help.aliyun.com/product/28958.html).
## Usage
### Adding the Dependencies in pom.xml
```
io.opentracing
opentracing-api
0.31.0
com.aliyun.openservices
aliyun-log-jaeger-sender
0.0.9
com.uber.jaeger
jaeger-core
0.26.0
```
### Build a Tracer
```java
aliyunLogSender = new AliyunLogSender
.Builder(projectName, logStore, endpoint, accessKeyId, accessKey)
.withTopic(topic)
.build();
RemoteReporter remoteReporter = new RemoteReporter.Builder().withSender(aliyunLogSender).build();
tracer = new Tracer.Builder(serviceName)
.withReporter(remoteReporter)
.withSampler(new ConstSampler(true))
.build();
```
## Reference
[simple-opentracing-demo](https://github.com/brucewu-fly/simple-opentracing-demo)
[spring-boot-opentracing-demo](https://github.com/brucewu-fly/spring-boot-opentracing-demo)