From 5e7acc8444284ca339ecd494e63643b685d53ca8 Mon Sep 17 00:00:00 2001 From: Lorenzo Mangani Date: Mon, 4 Dec 2023 14:11:19 +0100 Subject: [PATCH] Update ingestion.md --- docs/logs/ingestion.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/docs/logs/ingestion.md b/docs/logs/ingestion.md index 08d7210..bc66de7 100644 --- a/docs/logs/ingestion.md +++ b/docs/logs/ingestion.md @@ -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 ** @@ -320,7 +320,7 @@ service: ?> _That's it!_ You're now _tracing spans to **qryn** using OTLP Collector! -## ** ClickHouse MV ** +## ** ClickHouse ** @@ -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')