monit-general
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

How to output stdout and stderr from an exec program script in monit


From: Vikram Kone
Subject: How to output stdout and stderr from an exec program script in monit
Date: Mon, 8 Feb 2016 10:06:28 -0800

Hi,
I have a python script that I use as to check certain system conditions to alert on using monit.
This script prints a buch of stuff during execution to stdout which I want to capture in a log file.
How should I configure the monit conf script, such that I can capture both the stdout and stderr of this script and at the same time alerting on the exit status of the script. The monit alert should also included the stdout/stderr for the alert events.

This is what I tried

#/etc/monit/conf/myprogram.conf

check program my_program with path "/usr/bin/python -u /opt/program/my_program.py > my_prgoram.log 2&>1"
 if status !=0 alert

But I see that the monit always thinks that the program is reporting status=0 even when then it exists with error code 1.

What am i doing wrong?

reply via email to

[Prev in Thread] Current Thread [Next in Thread]