UNPKG

@globalping/n8n-nodes-globalping

Version:

The Globalping n8n node allows you to perform network measurements such as ping, traceroute, mtr, http and DNS lookups from thousands of locations around the world.

62 lines 1.95 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tracerouteFields = exports.tracerouteOptions = void 0; exports.tracerouteOptions = [ { name: 'Traceroute', value: 'measurementTraceroute', action: 'Traceroute. Raw output, latency data, all protocols and ports.', }, ]; exports.tracerouteFields = [ { displayName: 'Traceroute Options', name: 'measurementOptions', type: 'collection', default: {}, description: 'Additional optional settings', options: [ { displayName: 'Port', name: 'port', type: 'number', description: 'The destination port for the data packets.\n' + '\n' + 'Constraints: Min 0┃Max 65535 Default: 80', default: 80, typeOptions: { maxValue: 65535, minValue: 0, }, }, { displayName: 'Protocol', name: 'protocol', type: 'options', description: 'The transport protocol to use.\n' + '\n' + 'Default: ICMP Allowed: ICMP┃TCP┃UDP', options: [ { name: 'ICMP', value: 'ICMP', }, { name: 'TCP', value: 'TCP', }, { name: 'UDP', value: 'UDP', }, ], default: 'ICMP', }, ], displayOptions: { show: { resource: ['measurements'], operation: ['measurementTraceroute'], }, }, }, ]; //# sourceMappingURL=tracerouteDescription.js.map