good build
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 43s

This commit is contained in:
Your Name
2025-09-20 14:02:56 +12:00
parent 29d619f89e
commit d0b17b339e
5 changed files with 4 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ bash "$SCRIPT_DIR/scripts/generate-config.sh" || _die "Failed to generate config
# Start the client # Start the client
echo "Starting Log Client..." echo "Starting Log Client..."
docker compose up -d || _die "Failed to start" docker compose up -d --build || _die "Failed to start"
echo "" echo ""
echo "=========================================" echo "========================================="

View File

@@ -2,5 +2,5 @@
source "${AGENT_PATH}/common.sh" source "${AGENT_PATH}/common.sh"
_check_required_env_vars "CONTAINER_NAME" _check_required_env_vars "CONTAINER_NAME"
docker compose up -d || _die "Failed to start" docker compose up -d --build || _die "Failed to start"
echo "Log Client started" echo "Log Client started"

View File

@@ -37,15 +37,11 @@ compactor:
working_directory: /loki/boltdb-shipper-compactor working_directory: /loki/boltdb-shipper-compactor
limits_config: limits_config:
enforce_metric_name: false
reject_old_samples: true reject_old_samples: true
reject_old_samples_max_age: 168h reject_old_samples_max_age: 168h
max_entries_limit_per_query: 5000 max_entries_limit_per_query: 5000
retention_period: 168h # 7 days retention_period: 168h # 7 days
chunk_store_config:
max_look_back_period: 168h
table_manager: table_manager:
retention_deletes_enabled: true retention_deletes_enabled: true
retention_period: 168h retention_period: 168h

View File

@@ -36,7 +36,7 @@ fi
# Start the stack # Start the stack
echo "Starting Log Server..." echo "Starting Log Server..."
docker compose up -d || _die "Failed to start" docker compose up -d --build || _die "Failed to start"
# Wait for services # Wait for services
echo -n "Waiting for services to start..." echo -n "Waiting for services to start..."

View File

@@ -2,5 +2,5 @@
source "${AGENT_PATH}/common.sh" source "${AGENT_PATH}/common.sh"
_check_required_env_vars "CONTAINER_NAME" _check_required_env_vars "CONTAINER_NAME"
docker compose up -d || _die "Failed to start" docker compose up -d --build || _die "Failed to start"
echo "Log Server started" echo "Log Server started"