From bc017b4e8d1875680b5e06d2f971ed490834588c Mon Sep 17 00:00:00 2001 From: Nikhil Sinha Date: Mon, 22 Dec 2025 02:07:27 +1100 Subject: [PATCH] update success message section in ingestion script --- scripts/ingest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/ingest.sh b/scripts/ingest.sh index 5aefb06af..738b75979 100644 --- a/scripts/ingest.sh +++ b/scripts/ingest.sh @@ -152,9 +152,9 @@ start_fluent_bit() { sleep 2 if ps -p "$FLUENT_PID" > /dev/null 2>&1; then print_info "✓ Fluent Bit started successfully (PID: $FLUENT_PID)" - print_info "To view logs: $0 logs" - print_info "To check status: $0 status" - print_info "To stop: $0 stop" + print_info "View logs: tail -f $LOG_FILE" + print_info "Check status: ps -p \$(cat $PID_FILE)" + print_info "Stop: kill \$(cat $PID_FILE)" else print_error "✗ Fluent Bit failed to start. Check logs: cat $LOG_FILE" rm -f "$PID_FILE"