Load-balancer liveness probe
curl --request GET \
--url https://api.signuprisk.com/healthzconst options = {method: 'GET'};
fetch('https://api.signuprisk.com/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/healthz"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/healthz"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"status": "ok",
"timestamp": "<string>"
}Operations
Load-balancer liveness probe
GET
/
healthz
Load-balancer liveness probe
curl --request GET \
--url https://api.signuprisk.com/healthzconst options = {method: 'GET'};
fetch('https://api.signuprisk.com/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/healthz"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/healthz"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"status": "ok",
"timestamp": "<string>"
}