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.

30 lines 830 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pingFields = exports.pingOptions = void 0; exports.pingOptions = [ { name: 'Ping', value: 'measurementPing', action: 'PING. Raw output, latency data, max 16 packets.', }, ]; exports.pingFields = [ { displayName: 'Packets', name: 'packets', type: 'number', description: 'The number of packets to send.\n' + '\n' + 'Constraints: Min 1┃Max 16 Default: 3', default: 3, typeOptions: { maxValue: 16, minValue: 1, }, displayOptions: { show: { resource: ['measurements'], operation: ['measurementPing'], }, }, }, ]; //# sourceMappingURL=pingDescription.js.map