Skip to content

Commit 8114bc6

Browse files
update success message section in ingestion script (#1494)
1 parent 28b8fa7 commit 8114bc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/ingest.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ start_fluent_bit() {
152152
sleep 2
153153
if ps -p "$FLUENT_PID" > /dev/null 2>&1; then
154154
print_info "✓ Fluent Bit started successfully (PID: $FLUENT_PID)"
155-
print_info "To view logs: $0 logs"
156-
print_info "To check status: $0 status"
157-
print_info "To stop: $0 stop"
155+
print_info "View logs: tail -f $LOG_FILE"
156+
print_info "Check status: ps -p \$(cat $PID_FILE)"
157+
print_info "Stop: kill \$(cat $PID_FILE)"
158158
else
159159
print_error "✗ Fluent Bit failed to start. Check logs: cat $LOG_FILE"
160160
rm -f "$PID_FILE"

0 commit comments

Comments
 (0)