Displaying 20 results from an estimated 5683 matches for "health".
2019 Nov 25
2
Health check curl example
:) I really starting to feel a bit like an idiot, but all these 3
configs[0] give error 'Client not compatible with this binary'
[0]
service health-check {
executable = script /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
service health-check {
executable = script -e "HOME PATH" /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
service health-check {
executable = script -e...
2019 Nov 25
1
Health check curl example
I can't yet use -p, the version I have is not supporting it still :(
Maybe it is better to wait until alpine linux updates the package.
-----Original Message-----
Subject: RE: Health check curl example
No worries. Now you are not using the passthrough(-p) mode. That is why
dovecot is telling you that your client is not compatible.
Using "script" without -p would require you to implement that protocol:
http://doc.dovecot.org/admin_manual/health_check.html#script-pr...
2019 Nov 25
2
Health check curl example
Thanks, Markus, maybe we should add this to the admin_manual? However I
am now getting the error 'script: Fatal: Missing script path'
Similar as when I try via the command line
bash-5.0# /usr/libexec/dovecot/script -e /bin/health-check.sh
Fatal: Missing script path
bash-5.0# /usr/libexec/dovecot/script -e /bin/ health-check.sh
Panic: BUG: No IOs or timeouts set. Not waiting for infinity.
Aborted (core dumped)
-----Original Message-----
Subject: Re: Health check curl example
Hi,
you can use telnet or netcat to send...
2019 Nov 24
2
Health check curl example
How do I check the standard script then on this port 5001 from the
command line?
This one of alpine linux also does not have it yet
bash-5.0# dovecot --version
2.3.7.2 (3c910f64b)
-----Original Message-----
Subject: RE: Health check curl example
Yes. The passthrough option is rather new.
Aki
On 24/11/2019 15:28 Marc Roos via dovecot < dovecot at dovecot.org>
wrote:
I think I already have that, I am having this configured
service health-check {
# this is the default configuration using the simple PIN...
2019 Nov 25
0
Health check curl example
No worries. Now you are not using the passthrough(-p) mode. That is why dovecot is telling you that your client is not compatible.
Using "script" without -p would require you to implement that protocol: http://doc.dovecot.org/admin_manual/health_check.html#script-protocol.
I believe all you want to do is to keep this line
executable = script -p health-check.sh
and just replace health-check.sh with the script that you implemented.
> On November 25, 2019 11:48 AM Marc Roos via dovecot <dovecot at dovecot.org> wrote:
>
>...
2010 Apr 09
1
[Gluster-devel] Gluster health/status
Gluster devs,
I found the message below in the archives. glfs-health.sh is not
included in the v3.0.3 sources - is there any plan to add this to the
"extras" directory? What's its status?
Ian
== snip ==
Raghavendra G
Mon, 22 Feb 2010 20:20:33 -0800
Hi all,
Here is some work related to Health monitoring. glfs-health.sh is a shell
script to check...
2017 Oct 25
3
Gluster Health Report tool
...and ideas for more
Reports are welcome.
This tool needs to run in every Gluster node to detect the local
issues (Example: Parsing log files, checking disk space etc) in each
Nodes. But some of the reports use Gluster CLI to identify the issues
Which can be run in any one node.(For example
`gluster-health-report --run-only glusterd-peer-disconnect`)
# Install
??? sudo pip install gluster-health-report
# Usage
Run `gluster-health-report --help` for help
??? gluster-health-report
Example output is available here
https://github.com/aravindavk/gluster-health-report
# Project Details
- Issue pag...
2019 Nov 24
2
Health check curl example
I think I already have that, I am having this configured
service health-check {
# this is the default configuration using the simple PING->PONG
# example health-check.
executable = script -p /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
bash-5.0# /bin/health-check.sh
HTTP/1.1 200 OK
Connection: keep-alive
OK
-----Original M...
2006 Apr 08
1
Welcome to Your WebMD Health Newsletters
Dear WebMD with AOL Health Member:
Congratulations on becoming a newsletter subscriber!
You''ll be getting the latest health news and the best
information WebMD has to offer.
We also want to make sure you know some of the best
ways to seek information on WebMD.
Every day, we showcase different WebMD features th...
2017 Oct 25
2
[Gluster-devel] Gluster Health Report tool
Hi Aravinda,
Very nice initiative, thank you very much! As as small recommendation it would be nice to have a "nagios/icinga" mode, maybe through a "-n" parameter which will do the health check and output the status ina nagios/icinga compatible format. As such this tool could be directly used by nagios for monitoring.
Best,
M.
> -------- Original Message --------
> Subject: [Gluster-devel] Gluster Health Report tool
> Local Time: October 25, 2017 2:11 PM
> UTC Time: Oc...
2019 Nov 25
0
Health check curl example
...1-outsourcing.eu> wrote:
>
>
> Thanks, Markus, maybe we should add this to the admin_manual? However I
> am now getting the error 'script: Fatal: Missing script path'
>
> Similar as when I try via the command line
> bash-5.0# /usr/libexec/dovecot/script -e /bin/health-check.sh
> Fatal: Missing script path
>
>
> bash-5.0# /usr/libexec/dovecot/script -e /bin/ health-check.sh
> Panic: BUG: No IOs or timeouts set. Not waiting for infinity.
> Aborted (core dumped)
>
>
>
>
> -----Original Message-----
> Subject: Re: Health ch...
2019 Nov 24
2
Health check curl example
I am not understanding how this health check[1] script should work. From
the commandline it works fine when I type a PING I get a PONG. But how
do I do a curl to this 5001 port?
Tried something like this:
bash-5.0# curl http://localhost:5001/
curl: (56) Recv failure: Connection reset by peer
bash-5.0# curl http://localhost:5001/PI...
2019 Nov 25
0
Health check curl example
...> How do I check the standard script then on this port 5001 from the
> command line?
>
>
> This one of alpine linux also does not have it yet
> bash-5.0# dovecot --version
> 2.3.7.2 (3c910f64b)
>
>
>
>
>
> -----Original Message-----
> Subject: RE: Health check curl example
>
> Yes. The passthrough option is rather new.
>
> Aki
>
> On 24/11/2019 15:28 Marc Roos via dovecot < dovecot at dovecot.org>
> wrote:
>
>
> I think I already have that, I am having this configured
>
> service health-check...
2012 May 23
0
Research Assistant/Staff Scientist: Technology in Environmental Health (Boston, MA)
Research Assistant/Staff Scientist: Technology in Environmental
Health (Silent Spring Institute; Boston, MA)
Silent Spring Institute is a non-profit scientific research group studying
the environment and health. We are a multi-disciplinary team and
international leader in research on everyday exposures to
hormone disruptors, tests for breast carcinogens, and environm...
2019 Nov 24
0
Health check curl example
...t.org</a>> wrote:
</div>
<div>
<br>
</div>
<div>
<br>
</div>
<div>
I think I already have that, I am having this configured
</div>
<div>
<br>
</div>
<div>
service health-check {
</div>
<div>
# this is the default configuration using the simple PING->PONG
</div>
<div>
# example health-check.
</div>
<div>
executable = script -p /bin/health-check.sh
</div>
<div>
inet_listener he...
2017 Oct 25
0
[Gluster-devel] Gluster Health Report tool
...Wed, Oct 25, 2017 at 7:56 PM, mabi <mabi at protonmail.ch> wrote:
> Hi Aravinda,
>
> Very nice initiative, thank you very much! As as small recommendation it
> would be nice to have a "nagios/icinga" mode, maybe through a "-n"
> parameter which will do the health check and output the status ina
> nagios/icinga compatible format. As such this tool could be directly used
> by nagios for monitoring.
>
> Best,
> M.
>
>
>
> -------- Original Message --------
> Subject: [Gluster-devel] Gluster Health Report tool
> Local Time: Octo...
2006 Jun 16
6
modeling logit(y/n) using lrm
...es' and
'failures' for that hospital, respectively? I would like to avoid the
restructuring, and I understand that the use of the weight function is
not compatible with a lot of the validation functions available in Hmisc
(validate, bootcov, etc.).
Cody Hamilton, Ph.D
Institute for Health Care Research and Improvement
Baylor Health Care System
(214) 265-3618
This e-mail, facsimile, or letter and any files or attachments transmitted with it contains information that is confidential and privileged. This information is intended only for the use of the individual(s) and entity(ie...
2007 Jul 16
3
Crontab script to check health of Asterisk server?
Has anybody created a crontab script to check the health of an Asterisk
server?
The part I'm struggling with is some sort of IAX "ping" to test the
connection to each provider without making a call.
-HJC
2017 Jul 05
3
Question about correlation
Greeting.
Dear Mr/Mrs/Miss,
OTU ID Health Disease
Bacterial 1 0.29 0.34
Bacterial 2 0.25 0.07
Bacterial 3 0.06 0.06
Bacterial 4 0.07 0.09
Bacterial 5 0.02 0.05
Above show the first 6 data sets, may I ask that the reason of R show the
error like "Error in cor(data) : 'x' must be numeric" ? And how to solve
it? Besides, isn...
2017 Jul 05
0
Question about correlation
Hi Chin Yi,
If you are trying to correlate "Health" with "Disease", i.e.
cydf<-read.table(text="OTU ID Health Disease
Bacterial 1 0.29 0.34
Bacterial 2 0.25 0.07
Bacterial 3 0.06 0.06
Bacterial 4 0.07 0.09
Bacterial 5 0.02 0.05",
header=TRUE)
print(cor(cydf$Health,cydf$Disease))
[1] 0.7103517
If you are get...