Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/tools/kafka/ssl/Makefile

19 lines
279 B

HOST_IP ?= host.docker.internal
TOPIC ?= promtail
RF ?= 1
PARTS ?= 3
BROKER_LIST := $(shell ../broker-list.sh $(HOST_IP))
create-certs:
bash ../secrets/create-certs.sh
start-kafka:
docker-compose up -d
stop-kafka:
docker-compose down
print-brokers:
@echo $(BROKER_LIST)