You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable BanyanDB access logs for Kind via BYDB env vars
Use Helm --set banyandb.standalone.env[] to pass:
- BYDB_ENABLE_INGESTION_ACCESS_LOG=true
- BYDB_ENABLE_QUERY_ACCESS_LOG=true
- BYDB_ACCESS_LOG_ROOT_PATH=/tmp
Uses /tmp (not /tmp/access-log) because BanyanDB doesn't auto-create
the directory and the pod crashes. With /tmp, files go to
/tmp/measure-ingest-*, /tmp/stream-query-*, etc.
Access log files are not auto-collected for Kind (would require
collecting all of /tmp/ which is too broad). They are available
via kubectl exec for live debugging. Compose tests collect them
from /tmp/access-log/ as before.
0 commit comments