Files
90DaysOfDevOps/Days/Monitoring/Fluentd/introduction/file/app.sh

7 lines
121 B
Bash
Raw Normal View History

2022-03-28 10:32:52 +01:00
#!/bin/sh
while true
do
echo "Writing log to a file"
echo '{"app":"file-myapp"}' >> /app/example-log.log
sleep 5
done