Elasticsearch Stack.
Awesome but heavy
You need a token to connect Kibana to Elastic.
First start elastic with: docker compose up -d elastic
docker exec -it elastic-elasticsearch-1 bin/elasticsearch-service-tokens create elastic/kibana kibana-new-token
Now place the token in the kibana.yml file: elasticsearch.serviceAccountToken:xxxxxxxx
Also generate a32 char string:
xpack.security.encryptionKey: "32_CHAR_HASH"
xpack.encryptedSavedObjects.encryptionKey: "32_CHAR_HASH"
xpack.reporting.encryptionKey: "32_CHAR_HASH"
Run kibana with: docker compose up -d kibana