diff options
author | Chris Meyers <chris.meyers.fsu@gmail.com> | 2024-05-13 17:16:17 +0200 |
---|---|---|
committer | Chris Meyers <chrismeyersfsu@users.noreply.github.com> | 2024-05-31 19:55:17 +0200 |
commit | 0eb465531ca97aa5b932ec5752b1bdfea3181d9f (patch) | |
tree | 0ba1169b9f2d2520eb866e1c2f9755480ed06f84 /Makefile | |
parent | Add check_instance_ready management command (#15238) (diff) | |
download | awx-0eb465531ca97aa5b932ec5752b1bdfea3181d9f.tar.xz awx-0eb465531ca97aa5b932ec5752b1bdfea3181d9f.zip |
Centralized logging via otel
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -47,6 +47,10 @@ VAULT ?= false VAULT_TLS ?= false # If set to true docker-compose will also start a tacacs+ instance TACACS ?= false +# If set to true docker-compose will also start an OpenTelemetry Collector instance +OTEL ?= false +# If set to true docker-compose will also start a Loki instance +LOKI ?= false # If set to true docker-compose will install editable dependencies EDITABLE_DEPENDENCIES ?= false @@ -535,6 +539,8 @@ docker-compose-sources: .git/hooks/pre-commit -e enable_vault=$(VAULT) \ -e vault_tls=$(VAULT_TLS) \ -e enable_tacacs=$(TACACS) \ + -e enable_otel=$(OTEL) \ + -e enable_loki=$(LOKI) \ -e install_editable_dependencies=$(EDITABLE_DEPENDENCIES) \ $(EXTRA_SOURCES_ANSIBLE_OPTS) |