mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
7 lines
143 B
Bash
7 lines
143 B
Bash
#!/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 |