This commit is contained in:
michaelcade
2022-03-28 10:32:52 +01:00
parent 719d23e3c4
commit ac9ddf3ffd
18 changed files with 553 additions and 5 deletions

View File

@ -0,0 +1,7 @@
#!/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