mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-07-10 07:49:50 +07:00
7 lines
143 B
Bash
Executable File
7 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
while true
|
|
do
|
|
echo "Sending logs to FluentD"
|
|
curl -X POST -d 'json={"foo":"bar"}' http://fluentd:9880/http-myapp.log
|
|
sleep 5
|
|
done |