Extracts URL components from a field. The attributes url.scheme, url.username, url.password, url.host, url.port, url.path, url.fragment and url.query are added to the event
Name | Type | Required | Default | Description |
---|---|---|---|---|
field | string | No | url | The field from which to parse URL components. |
as | string | No | Use a prefix for the attributes added to the event. |
field
is the unnamed parameter.
Parses the field named url and adds URL components to the event.
parseUrl()
Parses the field named endpoint and adds URL components to the event.
parseUrl(field=endpoint)
Parses the field named endpoint and adds URL components to the event with url as a prefix.
url := parseUrl(field=endpoint)
Parses the field named endpoint and adds URL components to the event with apiEndpoint as a prefix.
parseUrl(field=endpoint, as=apiEndpoint)