cURL
curl --request GET \
--url https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug} \
--header 'API-Token: <api-key>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}")
.header("API-Token", "<api-key>")
.asString();const options = {method: 'GET', headers: {'API-Token': '<api-key>'}};
fetch('https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}"
headers = {"API-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"log_scale_alert": {
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"disabled": true,
"log_scale_action_slugs": [
"<string>"
],
"log_scale_query": "level = ERROR | severity > 3 | count(as=numErrors) | numErrors > 500",
"repository": "<string>",
"run_as_user": "<string>",
"slug": "<string>",
"tags": [
"<string>"
],
"throttle_field": "<string>",
"throttle_secs": 123,
"time_window_secs": "3600",
"updated_at": "2023-11-07T05:31:56Z"
}
}{
"message": "<string>"
}{
"message": "<string>"
}{}ReadLogScaleAlert
GET
/
api
/
v1
/
config
/
log-scale-alerts
/
{slug}
cURL
curl --request GET \
--url https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug} \
--header 'API-Token: <api-key>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}")
.header("API-Token", "<api-key>")
.asString();const options = {method: 'GET', headers: {'API-Token': '<api-key>'}};
fetch('https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{tenant}.chronosphere.io/api/v1/config/log-scale-alerts/{slug}"
headers = {"API-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"log_scale_alert": {
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"disabled": true,
"log_scale_action_slugs": [
"<string>"
],
"log_scale_query": "level = ERROR | severity > 3 | count(as=numErrors) | numErrors > 500",
"repository": "<string>",
"run_as_user": "<string>",
"slug": "<string>",
"tags": [
"<string>"
],
"throttle_field": "<string>",
"throttle_secs": 123,
"time_window_secs": "3600",
"updated_at": "2023-11-07T05:31:56Z"
}
}{
"message": "<string>"
}{
"message": "<string>"
}{}⌘I

