Compare commits
No commits in common. "828eca445a6c7fe5b9d2340da89db749f08a8018" and "2afbdc7a940be8de6efafdbd3cf9423ff4883500" have entirely different histories.
828eca445a
...
2afbdc7a94
@ -1,25 +0,0 @@
|
|||||||
package routers
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"log"
|
|
||||||
tasks "monitoring/app/storage/clickhouse/tables"
|
|
||||||
"net/http"
|
|
||||||
)
|
|
||||||
|
|
||||||
func AddTaskMetric(r *http.Request) (interface{}, int) {
|
|
||||||
d := json.NewDecoder(r.Body)
|
|
||||||
body := tasks.TaskMetric{}
|
|
||||||
err := d.Decode(&body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, http.StatusBadRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
err = tasks.AddTaskMetric(body)
|
|
||||||
if err != nil {
|
|
||||||
log.Print(err.Error())
|
|
||||||
return nil, http.StatusInternalServerError
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil, http.StatusAccepted
|
|
||||||
}
|
|
@ -9,12 +9,12 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type EndpointMetric struct {
|
type EndpointMetric struct {
|
||||||
Timestamp time.Time `json:"timestamp"`
|
Timestamp time.Time `json:"timestamp"`
|
||||||
Service string `json:"service"`
|
Service string `json:"service"`
|
||||||
Endpoint string `json:"endpoint"`
|
Endpoint string `json:"endpoint"`
|
||||||
StatusCode int `json:"status_code"`
|
StatusCode int `json:"status_code"`
|
||||||
ResponseTime int `json:"response_time"`
|
ResponseTime int `json:"response_time"`
|
||||||
Method string `json:"method"`
|
Method string `json:"method"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func AddEndpointMetric(metric EndpointMetric) error {
|
func AddEndpointMetric(metric EndpointMetric) error {
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
package storage
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type TaskMetric struct {
|
|
||||||
Timestamp time.Time `json:"timestamp"`
|
|
||||||
Service string `json:"service"`
|
|
||||||
Queue string `json:"queue"`
|
|
||||||
Success bool `json:"success"`
|
|
||||||
ExecutionTimeMs int `json:"execution_time_ms"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func AddTaskMetric(metric TaskMetric) error {
|
|
||||||
batch, err := connection().PrepareBatch(context.Background(), "INSERT INTO tasks")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
err = batch.Append(
|
|
||||||
metric.Timestamp,
|
|
||||||
metric.Service,
|
|
||||||
metric.Queue,
|
|
||||||
metric.Success,
|
|
||||||
metric.ExecutionTimeMs,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return batch.Send()
|
|
||||||
}
|
|
6
main.go
6
main.go
@ -4,7 +4,6 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"log"
|
"log"
|
||||||
endpoint "monitoring/app/routers/metrics"
|
endpoint "monitoring/app/routers/metrics"
|
||||||
task "monitoring/app/routers/metrics"
|
|
||||||
client "monitoring/app/storage/clickhouse"
|
client "monitoring/app/storage/clickhouse"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
@ -40,9 +39,8 @@ func main() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
http.HandleFunc("/api/v1/metrics/endpoint", handlerWrapper(endpoint.AddEndpointMetric))
|
http.HandleFunc("/api/v1/metrics/endpoint", handlerWrapper(endpoint.AddEndpointMetric))
|
||||||
http.HandleFunc("/api/v1/metrics/task", handlerWrapper(task.AddTaskMetric))
|
|
||||||
log.Printf("Server started")
|
log.Printf("Server started")
|
||||||
http.ListenAndServe(":1237", nil)
|
http.ListenAndServe(":1237", nil)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user