gpt4 book ai didi

amazon-web-services - 在 EC2 Ubuntu 或 Linux 中记录每个请求和输出

转载 作者:行者123 更新时间:2023-12-04 19:28:39 25 4
gpt4 key购买 nike

我有一个 AWS EC2 实例,在这个实例中,我有一些 cron 作业。
这个 cron 作业看起来像:

0 5 * * mon curl -Ssi -X POST http://example.com 
我有一些手动输出,例如:
echo "output: hello..."
我想将这些操作存储在 EC2 ubuntu 或 linux 实例中的日志文件中。可能吗?有什么建议吗?
预期输出:
[2021-10-10 ...] - POST http://example.com
[2021-10-11 ...] - output: hello...

最佳答案

编写以下脚本~/bin/site-detector

#!/bin/bash
source ~/.bash_profile

log_file=/tmp/site-detector.log
curl -Ssi -X POST http://example.com >> $log_file
echo "Detected @ $(date)" >> $log_file
echo " " >> $log_file
使您的脚本可执行:
chmod a+x ~/bin/site-detector
更新您的 crontab 脚本:
0 5 * * mon ~/bin/site-detector 

关于amazon-web-services - 在 EC2 Ubuntu 或 Linux 中记录每个请求和输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68804544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com