我有简单的 python 应用程序并想使用谷歌云日志记录。我使用 docker 并使用 kubernetes 运行它。
如何将日志发送到谷歌云日志?
import time
import logging
def main():
logging.basicConfig()
logging.getLogger().setLevel(logging.INFO)
try:
while True:
logging.info('Working...')
time.sleep(1)
except KeyboardInterrupt:
logging.info('Stopped working')
pass;
if __name__ == '__main__':
main()