Using Custom Entity Types
Define your own custom entity types to receive data
Define Custom Type in Config
{
name: "Hostname Lookup",
acronym: "HOST",
description: "A sample integration that uses a custom regex to lookup hostnames and IPs",
entityTypes: ['IPv4'],
customTypes:[
{
key: 'hostname',
regex: /[a-z]+_host/
}
]
}Test for Custom Type
Multiple Custom Types
Last updated