We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28b8fa7 commit 8114bc6Copy full SHA for 8114bc6
scripts/ingest.sh
@@ -152,9 +152,9 @@ start_fluent_bit() {
152
sleep 2
153
if ps -p "$FLUENT_PID" > /dev/null 2>&1; then
154
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"
+ print_info "View logs: tail -f $LOG_FILE"
+ print_info "Check status: ps -p \$(cat $PID_FILE)"
+ print_info "Stop: kill \$(cat $PID_FILE)"
158
else
159
print_error "✗ Fluent Bit failed to start. Check logs: cat $LOG_FILE"
160
rm -f "$PID_FILE"
0 commit comments