Class: Infrawrench::ProbesNamespace
- Inherits:
-
Object
- Object
- Infrawrench::ProbesNamespace
- Defined in:
- lib/infrawrench/client.rb,
sig/infrawrench/sdk.rbs
Overview
client.probes
Instance Method Summary collapse
-
#create(org_id: nil, body: nil, request_options: nil) ⇒ Hash
Create a probe.
-
#delete(probe_id:, org_id: nil, request_options: nil) ⇒ nil
Delete a probe.
-
#get(org_id: nil, request_options: nil) ⇒ Hash
List synthetic probes.
-
#initialize(transport) ⇒ ProbesNamespace
constructor
private
A new instance of ProbesNamespace.
-
#metrics(probe_id:, org_id: nil, start_ms: nil, end_ms: nil, request_options: nil) ⇒ Hash
Read a probe's recorded series.
-
#suggestions(org_id: nil, request_options: nil) ⇒ Hash
Suggest endpoints from synced resources.
-
#update(probe_id:, org_id: nil, body: nil, request_options: nil) ⇒ Hash
Update or disable a probe.
Constructor Details
#initialize(transport) ⇒ ProbesNamespace
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ProbesNamespace.
10464 10465 10466 |
# File 'lib/infrawrench/client.rb', line 10464 def initialize(transport) @transport = transport end |
Instance Method Details
#create(org_id: nil, body: nil, request_options: nil) ⇒ Hash
Create a probe
Point an uptime/latency check at an endpoint. Numeric inputs are clamped into their allowed ranges rather than rejected; the first check runs within one poller tick. Audit-logged.
Requires permission: resources:write.
POST /api/org/orgId/probes
Raises on 400: Bad request
Raises on 404: Not found
10488 10489 10490 10491 10492 10493 10494 10495 10496 |
# File 'lib/infrawrench/client.rb', line 10488 def create(org_id: nil, body: nil, request_options: nil) @transport.request( http_method: "POST", path: "/api/org/{orgId}/probes", path_params: { "orgId" => org_id }, body: body, request_options: ) end |
#delete(probe_id:, org_id: nil, request_options: nil) ⇒ nil
Delete a probe
Remove the probe. Recorded series age out of the metric store. Audit-logged.
Requires permission: resources:write.
DELETE /api/org/orgId/probes/probeId
Raises on 404: Not found
10515 10516 10517 10518 10519 10520 10521 10522 10523 |
# File 'lib/infrawrench/client.rb', line 10515 def delete(probe_id:, org_id: nil, request_options: nil) @transport.request( http_method: "DELETE", path: "/api/org/{orgId}/probes/{probeId}", path_params: { "orgId" => org_id, "probeId" => probe_id }, accept: :empty, request_options: ) end |
#get(org_id: nil, request_options: nil) ⇒ Hash
List synthetic probes
Every probe in the organization with its live status, consecutive-failure count, last latency and trailing-24h uptime. Probes run on an interval from an edge proxy outside the cluster, so results reflect what an internet client would see.
Requires permission: resources:read.
GET /api/org/orgId/probes
10542 10543 10544 10545 10546 10547 10548 10549 |
# File 'lib/infrawrench/client.rb', line 10542 def get(org_id: nil, request_options: nil) @transport.request( http_method: "GET", path: "/api/org/{orgId}/probes", path_params: { "orgId" => org_id }, request_options: ) end |
#metrics(probe_id:, org_id: nil, start_ms: nil, end_ms: nil, request_options: nil) ⇒ Hash
Read a probe's recorded series
The "Latency" (ms) and "Up" (1/0) series over a time range, from the shared metric store. Resolution auto-selects raw/1-minute/1-hour rollups by span. Defaults to the trailing 24 hours.
Requires permission: resources:read.
GET /api/org/orgId/probes/probeId/metrics
Raises on 400: Bad request
Raises on 404: Not found
Raises on 503: A backing service this endpoint depends on is not available
10575 10576 10577 10578 10579 10580 10581 10582 10583 |
# File 'lib/infrawrench/client.rb', line 10575 def metrics(probe_id:, org_id: nil, start_ms: nil, end_ms: nil, request_options: nil) @transport.request( http_method: "GET", path: "/api/org/{orgId}/probes/{probeId}/metrics", path_params: { "orgId" => org_id, "probeId" => probe_id }, query: { "startMs" => start_ms, "endMs" => end_ms }, request_options: ) end |
#suggestions(org_id: nil, request_options: nil) ⇒ Hash
Suggest endpoints from synced resources
Endpoint candidates mined from the organization's synced resource outputs and fields (keys like url, endpoint, host, domain, publicIp). A cheap read over stored state — no provider API calls. Deduplicated by URL.
Requires permission: resources:read.
GET /api/org/orgId/probes/suggestions
10600 10601 10602 10603 10604 10605 10606 10607 |
# File 'lib/infrawrench/client.rb', line 10600 def suggestions(org_id: nil, request_options: nil) @transport.request( http_method: "GET", path: "/api/org/{orgId}/probes/suggestions", path_params: { "orgId" => org_id }, request_options: ) end |
#update(probe_id:, org_id: nil, body: nil, request_options: nil) ⇒ Hash
Update or disable a probe
Edit settings and/or toggle enabled. Changing the URL or method resets
the probe's state to unknown — the history belongs to the old endpoint.
Audit-logged.
Requires permission: resources:write.
PUT /api/org/orgId/probes/probeId
Raises on 400: Bad request
Raises on 404: Not found
10630 10631 10632 10633 10634 10635 10636 10637 10638 |
# File 'lib/infrawrench/client.rb', line 10630 def update(probe_id:, org_id: nil, body: nil, request_options: nil) @transport.request( http_method: "PUT", path: "/api/org/{orgId}/probes/{probeId}", path_params: { "orgId" => org_id, "probeId" => probe_id }, body: body, request_options: ) end |