Skip to main content

Endpoint Variables

Endpoint Variables

The following variables are available under the endpoint namespace:

NameTypeDescription
endpoint.addrstringThe address for this endpoint.
endpoint.hoststringThe hostname for this endpoint.
endpoint.idstringThe endpoint that serviced this connection.
endpoint.portint32The port for this endpoint.
endpoint.protocolstringThe protocol for this endpoint. Current supported values are http, https, tcp, and tls.
endpoint.urlstringThe url for this endpoint.

endpoint.addr

The address for this endpoint.

# snippet
---
expressions:
- endpoint.addr == 'my-subdomain.ngrok.app:443'

endpoint.host

The hostname for this endpoint.

# snippet
---
expressions:
- endpoint.host == 'my-subdomain.ngrok.app'

endpoint.id

The id for this endpoint.

# snippet
---
expressions:
- endpoint.id == 'ep_2iL8LRbQilSCKYjaslRoqBwJcfT'

endpoint.port

The port for this endpoint.

# snippet
---
expressions:
- endpoint.port == 443

endpoint.protocol

The protocol for this endpoint. Current supported values are http, https, tcp, and tls.

# snippet
---
expressions:
- endpoint.protocol == 'https'

endpoint.url

The url for this endpoint.

# snippet
---
expressions:
- endpoint.url == 'https://my-subdomain.ngrok.app'