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.
10410 10411 10412 |
# File 'lib/infrawrench/client.rb', line 10410 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
10434 10435 10436 10437 10438 10439 10440 10441 10442 |
# File 'lib/infrawrench/client.rb', line 10434 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
10461 10462 10463 10464 10465 10466 10467 10468 10469 |
# File 'lib/infrawrench/client.rb', line 10461 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
10488 10489 10490 10491 10492 10493 10494 10495 |
# File 'lib/infrawrench/client.rb', line 10488 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
10521 10522 10523 10524 10525 10526 10527 10528 10529 |
# File 'lib/infrawrench/client.rb', line 10521 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
10546 10547 10548 10549 10550 10551 10552 10553 |
# File 'lib/infrawrench/client.rb', line 10546 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
10576 10577 10578 10579 10580 10581 10582 10583 10584 |
# File 'lib/infrawrench/client.rb', line 10576 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 |