Running in debug mode, do not use in production.

Go

Below is an example of making an HTTP request to Tailored Solutions Healthchecks from Go.

package main

import "fmt"
import "net/http"
import "time"

func main() {
    var client = &http.Client{
        Timeout: 10 * time.Second,
    }

    _, err := client.Head("https://healthchecks.internal.needlework.cz/ping/your-uuid-here")
    if err != nil {
        fmt.Printf("%s", err)
    }
}