mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
 | 
						|
<script type="text/x-red" data-template-name="ping">
 | 
						|
    <div class="form-row">
 | 
						|
        <label for="node-input-host"><i class="fa fa-dot-circle-o"></i> <span data-i18n="ping.label.target"></span></label>
 | 
						|
        <input type="text" id="node-input-host" placeholder="www.google.com">
 | 
						|
    </div>
 | 
						|
    <div class="form-row">
 | 
						|
        <label for="node-input-timer"><i class="fa fa-repeat"></i> <span data-i18n="ping.label.ping"></label>
 | 
						|
        <input type="text" id="node-input-timer" placeholder="20">
 | 
						|
    </div>
 | 
						|
    <div class="form-row">
 | 
						|
        <label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
 | 
						|
        <input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
 | 
						|
    </div>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/x-red" data-help-name="ping">
 | 
						|
    <p>Pings a machine and returns the trip time in mS as <code>msg.payload</code>.</p>
 | 
						|
    <p>Returns <b>false</b> if no response received within 5 seconds, or if the host is unresolveable.</p>
 | 
						|
    <p>Default ping is every 20 seconds but can be configured.</p>
 | 
						|
    <p><code>msg.topic</code> contains the target host ip.</p>
 | 
						|
    <p>Note: if running inside Ubuntu Snap you will need to manually start the network-observe interface.
 | 
						|
        `snap connect node-red:network-observe`</p>
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
    RED.nodes.registerType('ping',{
 | 
						|
        category: 'network-input',
 | 
						|
        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",
 | 
						|
        paletteLabel: function() {
 | 
						|
            return this._("ping.ping");
 | 
						|
        },
 | 
						|
        label: function() {
 | 
						|
            return this.name||this.host;
 | 
						|
        },
 | 
						|
        labelStyle: function() {
 | 
						|
            return this.name?"node_label_italic":"";
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 |