Connect to any HTTP endpoint that returns asset data in JSON format. Use this connector to integrate with custom or unsupported systems.
- HTTP(S) endpoint returning JSON with asset hostnames
- Network access from SilentPulse to the endpoint
| Field | Type | Required | Default | Description |
|---|
url | url | yes | | HTTP endpoint URL |
method | text | no | GET | HTTP method (GET or POST) |
auth_header | password | no | | Authorization header value |
skip_tls_verify | boolean | no | | Skip TLS certificate verification |
| Field | Type | Required | Default | Description |
|---|
body_template | textarea | no | | JSON body for POST requests |
hostname_jsonpath | text | yes | $.data[*].hostname | JSONPath expression to extract hostnames |
Set the auth_header field to pass an Authorization header:
- Bearer token:
Bearer token123
- Basic auth:
Basic base64encoded
- API key:
ApiKey mykey123
| Resource | Request |
|---|
| CPU | 50m |
| Memory | 64Mi |
| Min replicas | 1 |
| Max replicas | 2 |
- Response must be valid JSON
- Max response size: 10MB
- No pagination support yet