compute
GET /v1/compute/servers/{serverId}/health
Read a server's hardware and live resource usage.
प्रमाणीकरण
एपिआई कुञ्जीलाई बियरर टोकन (bearer token) को रूपमा पठाउनुहोस्। कुञ्जीसँग sites.view अनुमति हुनुपर्छ; अनुमति नभएको कुञ्जीलाई 404 होइन, 403 मार्फत अस्वीकार गरिन्छ।
यो इन्डपोइन्टले कुनै संस्थाको आइडी लिँदैन। तपाईंको कुञ्जीले यस अन्तर्गत पर्ने संस्थालाई पहिल्यै पहिचान गर्छ, र प्रतिक्रिया त्यसैमा सीमित हुन्छ।
प्रयास गर्नुहोस्
कोणीय कोष्ठकभित्र भएका जुनसुकै कुरालाई आफ्नो मानहरूद्वारा बदल्नुहोस्, र मुख्य स्थानहोल्डरलाई तपाईंको ड्यासबोर्डको कुञ्जीद्वारा बदल्नुहोस्।
curl -X GET https://api.zinndigital.com/v1/compute/servers/{serverId}/health \
-H "Authorization: Bearer zdk_live_…"लगइन गर्नुभएको छ? तपाईंको ड्यासबोर्डमा रहेको API कन्सोलले तपाईंको वास्तविक संस्थाको आईडी र आफ्नै कुञ्जी भरिदिन्छ, र लाइभ API विरुद्ध अनुरोध चलाउँछ ताकि तपाईंले वास्तविक प्रतिक्रिया हेर्न सक्नुहोस्। यो एन्डपोइन्टलाई API कन्सोलमा खोल्नुहोस्
विवरणहरू
What the machine is made of - cores, memory, disk, operating system - and how hard it is working right now: CPU, memory, disk and this month's bandwidth. Read live from the provider on every call and never stored, for the same reason the renewal is: a cached CPU reading is stale the moment it is written, and a customer looking at a usage gauge is asking about now. Every usage figure is -1 when the provider did not answer, which is not the same as zero. A client must render the difference: 0% says the machine is idle, -1 says we could not ask. Memory and disk are byte counts with both halves of the ratio, so a screen can say "224 MB of 1 GB" rather than only a percentage. power_state is the provider's own word (running, shut off), carried verbatim and never rounded to a boolean. This response deliberately carries no hostname. The provider also states the guest hostname and the physical KVM host; both name our supplier and are never exposed to a customer. Requires sites.view.
प्यारामिटरहरू
| नाम | प्रकार | आवश्यक | यो के हो |
|---|---|---|---|
serverId (path) | Uuid | हुन्छ | The server's id, as listComputeServers reports it. Ours (UUIDv7), minted when the order row was written — never the provider's own identifier for the machine. |
प्रतिक्रिया
| नाम | प्रकार | आवश्यक | यो के हो |
|---|---|---|---|
cores | integer | हुन्छ | Virtual CPU cores the machine is sold with. |
ram_mb | integer | हुन्छ | Memory the machine is sold with, in megabytes. |
disk_gb | integer | हुन्छ | Primary disk the machine is sold with, in gigabytes. |
os_name | string | हुन्छ | The provider's own name for the operating system image, or "". |
ram_used_bytes | integer | हुन्छ | Memory in use, in bytes. null when the provider did not say. |
ram_total_bytes | integer | हुन्छ | Total memory, in bytes. null when the provider did not say. |
disk_used_bytes | integer | हुन्छ | Disk in use, in bytes. null when the provider did not say. |
disk_total_bytes | integer | हुन्छ | Total disk, in bytes. null when the provider did not say. |
cpu_percent | number | हुन्छ | Processor in use, 0-100. null when the provider did not say. ⛔ Normalised to a real percentage at the boundary, on every range. One provider reports every non-idle CPU class… |
bandwidth_used_gb | number | हुन्छ | This month's transfer, in gigabytes. null when not stated. |
bandwidth_allowance_gb | number | हुन्छ | The monthly transfer allowance, in gigabytes. ⭐ The one field on this schema that may be -1, meaning the allowance has no ceiling; null means the provider did not state… |
bandwidth_overage_gb | number | हुन्छ | Transfer used beyond the allowance this month, in gigabytes, as the provider states it — the figure overage charges are computed from. null when not stated, and a client must… |
power_state | string | हुन्छ | The provider's own word for the machine's state (running, shut off), verbatim and never rounded to a boolean, or "". |
यो इन्डपोइन्टले फर्काउन सक्ने त्रुटिहरू
401 · 403 · 404 · 422 · 429 · 503