Update Monitoring Settings
Create or update monitoring settings for a specific site.
If settings already exist for the site they will be fully replaced; otherwise new settings are created. All IP entries are validated before saving - invalid formats will return a 400 error.
Supported IP formats for excluded_scanner_ips:
- Single IP:
"10.10.10.10" - IP range:
"10.10.12.1-10.10.12.4" - CIDR:
"10.10.11.0/24"
Side effect: Changes take effect on the next monitoring data collection cycle. Flows where the source IP matches an excluded entry will no longer appear in infra monitoring results. Destination IPs are not checked.
The unique identifier of the site
5cf83f93-f9dd-4898-a345-44513572c557
Monitoring settings with the full list of scanner IPs to exclude
Show optional properties
{
"site_id": "5cf83f93-f9dd-4898-a345-44513572c557"
}
{
"site_id": "5cf83f93-f9dd-4898-a345-44513572c557",
"excluded_scanner_ips": [
"10.10.10.10",
"10.10.12.1-10.10.12.4",
"10.10.11.0/24"
]
}
The unique identifier of the site for which the monitoring settings are configured.
List of IP addresses, IP ranges, or CIDR notations to exclude from infra monitoring only. Flows where the source IP matches an excluded entry are filtered out of infra monitoring results. Destination IPs are not checked. Use this to suppress noise from security scanners and vulnerability assessment tools.
Supported formats (IPv4 and IPv6):
- Single IP:
"10.10.10.10"or"2001:db8::1" - IP range:
"10.10.12.1-10.10.12.4" - CIDR block:
"10.10.11.0/24"or"2001:db8::/32"
OK. Monitoring settings updated successfully.
{
"site_id": "5cf83f93-f9dd-4898-a345-44513572c557",
"excluded_scanner_ips": [
"10.10.10.10",
"10.10.12.1-10.10.12.4",
"10.10.11.0/24"
]
}
The unique identifier of the site for which the monitoring settings are configured.
List of IP addresses, IP ranges, or CIDR notations to exclude from infra monitoring only. Flows where the source IP matches an excluded entry are filtered out of infra monitoring results. Destination IPs are not checked. Use this to suppress noise from security scanners and vulnerability assessment tools.
Supported formats (IPv4 and IPv6):
- Single IP:
"10.10.10.10"or"2001:db8::1" - IP range:
"10.10.12.1-10.10.12.4" - CIDR block:
"10.10.11.0/24"or"2001:db8::/32"
Bad Request
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Unauthorized
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Forbidden
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Precondition Failed
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Precondition Required
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Too Many Requests
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Error
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"site_id":"string"}' https://{api_host}/intelligence/monitoring/site-settings/{site-id}