2013-10-04 09:24:09 +02:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="ping">
|
2013-11-10 18:01:19 +01:00
|
|
|
<div class="form-row">
|
2014-07-27 19:05:23 +02:00
|
|
|
<label for="node-input-host"><i class="fa fa-dot-circle-o"></i> Target</label>
|
2013-11-10 18:01:19 +01:00
|
|
|
<input type="text" id="node-input-host" placeholder="www.google.com">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-07-27 19:05:23 +02:00
|
|
|
<label for="node-input-timer"><i class="fa fa-repeat"></i> Ping (S)</label>
|
2013-11-10 18:01:19 +01:00
|
|
|
<input type="text" id="node-input-timer" placeholder="20">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-08-30 12:00:28 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
2013-11-10 18:01:19 +01:00
|
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
|
|
</div>
|
2013-10-04 09:24:09 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="ping">
|
2016-02-12 14:14:12 +01:00
|
|
|
<p>Pings a machine and returns the trip time in mS as <code>msg.payload</code>.</p>
|
2014-07-25 11:09:35 +02:00
|
|
|
<p>Returns <b>false</b> if no response received within 5 seconds, or if the host is unresolveable.</p>
|
2013-10-04 09:24:09 +02:00
|
|
|
<p>Default ping is every 20 seconds but can be configured.</p>
|
2016-02-12 14:14:12 +01:00
|
|
|
<p><code>msg.topic</code> contains the target host ip.
|
2013-10-04 09:24:09 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('ping',{
|
2015-03-04 20:57:22 +01:00
|
|
|
category: 'network-input',
|
2013-10-04 09:24:09 +02:00
|
|
|
color:"#fdf0c2",
|
|
|
|
defaults: {
|
|
|
|
name: {value:""},
|
|
|
|
host: {value:"",required:true},
|
|
|
|
timer: {value:"20", required:true, validate:RED.validators.number()}
|
|
|
|
},
|
|
|
|
inputs:0,
|
|
|
|
outputs:1,
|
|
|
|
icon: "alert.png",
|
|
|
|
label: function() {
|
|
|
|
return this.name||this.host;
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|