Skip to content

Commit

Permalink
Update ingestion.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Dec 4, 2023
1 parent cdbffc2 commit 5e7acc8
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions docs/logs/ingestion.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ curl -i -XPOST 'http://qryn:3100/influx/api/v2/write' \

?> That's it! You're now shipping logs straight off your bash scripts!

## ** OTEL Collector **
## ** OTEL **

<a id=grafana name=grafana></a>

Expand Down Expand Up @@ -320,7 +320,7 @@ service:
?> _That's it!_ You're now _tracing spans to **qryn** using OTLP Collector!
## ** ClickHouse MV **
## ** ClickHouse **
<a id=clickhouse name=clickhouse></a>
Expand Down Expand Up @@ -407,6 +407,24 @@ curl -i -XPOST -H "Content-Type: application/json" http://127.0.0.1:3104/loki/ap

?> _That's it!_ You are now inserting metrics throug Curl in **qryn**

## ** Docker **

Integrate **qryn** using the native docker logging driver

```
version: '3.9'

services:
some-service:
image: 'some-service/image:latest'
ports:
- '80:80'
logging:
driver: loki
options:
loki-url: 'http://localhost:3100/loki/api/v1/push'
```
## ** DEV **
![image](https://user-images.githubusercontent.com/1423657/187414382-64a9203f-52a6-4c58-af75-ad4fee3d5a31.png ':size=600')
Expand Down

0 comments on commit 5e7acc8

Please sign in to comment.