mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
262 lines
8.6 KiB
Go
262 lines
8.6 KiB
Go
package controller
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"github.com/go-openapi/runtime/middleware"
|
|
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
|
"github.com/influxdata/influxdb-client-go/v2/api"
|
|
"github.com/openziti/zrok/controller/metrics"
|
|
"github.com/openziti/zrok/rest_model_zrok"
|
|
"github.com/openziti/zrok/rest_server_zrok/operations/metadata"
|
|
"github.com/sirupsen/logrus"
|
|
"time"
|
|
)
|
|
|
|
type getAccountMetricsHandler struct {
|
|
cfg *metrics.InfluxConfig
|
|
idb influxdb2.Client
|
|
queryApi api.QueryAPI
|
|
}
|
|
|
|
func newGetAccountMetricsHandler(cfg *metrics.InfluxConfig) *getAccountMetricsHandler {
|
|
idb := influxdb2.NewClient(cfg.Url, cfg.Token)
|
|
queryApi := idb.QueryAPI(cfg.Org)
|
|
return &getAccountMetricsHandler{
|
|
cfg: cfg,
|
|
idb: idb,
|
|
queryApi: queryApi,
|
|
}
|
|
}
|
|
|
|
func (h *getAccountMetricsHandler) Handle(params metadata.GetAccountMetricsParams, principal *rest_model_zrok.Principal) middleware.Responder {
|
|
duration := 30 * 24 * time.Hour
|
|
if params.Duration != nil {
|
|
v, err := time.ParseDuration(*params.Duration)
|
|
if err != nil {
|
|
logrus.Errorf("bad duration '%v' for '%v': %v", *params.Duration, principal.Email, err)
|
|
return metadata.NewGetAccountMetricsBadRequest()
|
|
}
|
|
duration = v
|
|
}
|
|
slice := sliceSize(duration)
|
|
|
|
query := fmt.Sprintf("from(bucket: \"%v\")\n", h.cfg.Bucket) +
|
|
fmt.Sprintf("|> range(start: -%v)\n", duration) +
|
|
"|> filter(fn: (r) => r[\"_measurement\"] == \"xfer\")\n" +
|
|
"|> filter(fn: (r) => r[\"_field\"] == \"rx\" or r[\"_field\"] == \"tx\")\n" +
|
|
"|> filter(fn: (r) => r[\"namespace\"] == \"backend\")\n" +
|
|
fmt.Sprintf("|> filter(fn: (r) => r[\"acctId\"] == \"%d\")\n", principal.ID) +
|
|
"|> drop(columns: [\"share\", \"envId\"])\n" +
|
|
fmt.Sprintf("|> aggregateWindow(every: %v, fn: sum, createEmpty: true)", slice)
|
|
|
|
rx, tx, timestamps, err := runFluxForRxTxArray(query, h.queryApi)
|
|
if err != nil {
|
|
logrus.Errorf("error running account metrics query for '%v': %v", principal.Email, err)
|
|
return metadata.NewGetAccountMetricsInternalServerError()
|
|
}
|
|
|
|
response := &rest_model_zrok.Metrics{
|
|
Scope: "account",
|
|
ID: fmt.Sprintf("%d", principal.ID),
|
|
Period: duration.Seconds(),
|
|
}
|
|
for i := 0; i < len(rx) && i < len(tx) && i < len(timestamps); i++ {
|
|
response.Samples = append(response.Samples, &rest_model_zrok.MetricsSample{
|
|
Rx: rx[i],
|
|
Tx: tx[i],
|
|
Timestamp: timestamps[i],
|
|
})
|
|
}
|
|
return metadata.NewGetAccountMetricsOK().WithPayload(response)
|
|
}
|
|
|
|
type getEnvironmentMetricsHandler struct {
|
|
cfg *metrics.InfluxConfig
|
|
idb influxdb2.Client
|
|
queryApi api.QueryAPI
|
|
}
|
|
|
|
func newGetEnvironmentMetricsHandler(cfg *metrics.InfluxConfig) *getEnvironmentMetricsHandler {
|
|
idb := influxdb2.NewClient(cfg.Url, cfg.Token)
|
|
queryApi := idb.QueryAPI(cfg.Org)
|
|
return &getEnvironmentMetricsHandler{
|
|
cfg: cfg,
|
|
idb: idb,
|
|
queryApi: queryApi,
|
|
}
|
|
}
|
|
|
|
func (h *getEnvironmentMetricsHandler) Handle(params metadata.GetEnvironmentMetricsParams, principal *rest_model_zrok.Principal) middleware.Responder {
|
|
trx, err := str.Begin()
|
|
if err != nil {
|
|
logrus.Errorf("error starting transaction: %v", err)
|
|
return metadata.NewGetEnvironmentMetricsInternalServerError()
|
|
}
|
|
defer func() { _ = trx.Rollback() }()
|
|
env, err := str.FindEnvironmentForAccount(params.EnvID, int(principal.ID), trx)
|
|
if err != nil {
|
|
logrus.Errorf("error finding environment '%s' for '%s': %v", params.EnvID, principal.Email, err)
|
|
return metadata.NewGetEnvironmentMetricsUnauthorized()
|
|
}
|
|
|
|
duration := 30 * 24 * time.Hour
|
|
if params.Duration != nil {
|
|
v, err := time.ParseDuration(*params.Duration)
|
|
if err != nil {
|
|
logrus.Errorf("bad duration '%v' for '%v': %v", *params.Duration, principal.Email, err)
|
|
return metadata.NewGetAccountMetricsBadRequest()
|
|
}
|
|
duration = v
|
|
}
|
|
slice := sliceSize(duration)
|
|
|
|
query := fmt.Sprintf("from(bucket: \"%v\")\n", h.cfg.Bucket) +
|
|
fmt.Sprintf("|> range(start: -%v)\n", duration) +
|
|
"|> filter(fn: (r) => r[\"_measurement\"] == \"xfer\")\n" +
|
|
"|> filter(fn: (r) => r[\"_field\"] == \"rx\" or r[\"_field\"] == \"tx\")\n" +
|
|
"|> filter(fn: (r) => r[\"namespace\"] == \"backend\")\n" +
|
|
fmt.Sprintf("|> filter(fn: (r) => r[\"envId\"] == \"%d\")\n", int64(env.Id)) +
|
|
"|> drop(columns: [\"share\", \"acctId\"])\n" +
|
|
fmt.Sprintf("|> aggregateWindow(every: %v, fn: sum, createEmpty: true)", slice)
|
|
|
|
rx, tx, timestamps, err := runFluxForRxTxArray(query, h.queryApi)
|
|
if err != nil {
|
|
logrus.Errorf("error running account metrics query for '%v': %v", principal.Email, err)
|
|
return metadata.NewGetAccountMetricsInternalServerError()
|
|
}
|
|
|
|
response := &rest_model_zrok.Metrics{
|
|
Scope: "account",
|
|
ID: fmt.Sprintf("%d", principal.ID),
|
|
Period: duration.Seconds(),
|
|
}
|
|
for i := 0; i < len(rx) && i < len(tx) && i < len(timestamps); i++ {
|
|
response.Samples = append(response.Samples, &rest_model_zrok.MetricsSample{
|
|
Rx: rx[i],
|
|
Tx: tx[i],
|
|
Timestamp: timestamps[i],
|
|
})
|
|
}
|
|
|
|
return metadata.NewGetEnvironmentMetricsOK().WithPayload(response)
|
|
}
|
|
|
|
type getShareMetricsHandler struct {
|
|
cfg *metrics.InfluxConfig
|
|
idb influxdb2.Client
|
|
queryApi api.QueryAPI
|
|
}
|
|
|
|
func newGetShareMetricsHandler(cfg *metrics.InfluxConfig) *getShareMetricsHandler {
|
|
idb := influxdb2.NewClient(cfg.Url, cfg.Token)
|
|
queryApi := idb.QueryAPI(cfg.Org)
|
|
return &getShareMetricsHandler{
|
|
cfg: cfg,
|
|
idb: idb,
|
|
queryApi: queryApi,
|
|
}
|
|
}
|
|
|
|
func (h *getShareMetricsHandler) Handle(params metadata.GetShareMetricsParams, principal *rest_model_zrok.Principal) middleware.Responder {
|
|
trx, err := str.Begin()
|
|
if err != nil {
|
|
logrus.Errorf("error starting transaction: %v", err)
|
|
return metadata.NewGetEnvironmentMetricsInternalServerError()
|
|
}
|
|
defer func() { _ = trx.Rollback() }()
|
|
shr, err := str.FindShareWithToken(params.ShrToken, trx)
|
|
if err != nil {
|
|
logrus.Errorf("error finding share '%v' for '%v': %v", params.ShrToken, principal.Email, err)
|
|
return metadata.NewGetShareMetricsUnauthorized()
|
|
}
|
|
env, err := str.GetEnvironment(shr.EnvironmentId, trx)
|
|
if err != nil {
|
|
logrus.Errorf("error finding environment '%d' for '%v': %v", shr.EnvironmentId, principal.Email, err)
|
|
return metadata.NewGetShareMetricsUnauthorized()
|
|
}
|
|
if env.AccountId != nil && int64(*env.AccountId) != principal.ID {
|
|
logrus.Errorf("user '%v' does not own share '%v'", principal.Email, params.ShrToken)
|
|
return metadata.NewGetShareMetricsUnauthorized()
|
|
}
|
|
|
|
duration := 30 * 24 * time.Hour
|
|
if params.Duration != nil {
|
|
v, err := time.ParseDuration(*params.Duration)
|
|
if err != nil {
|
|
logrus.Errorf("bad duration '%v' for '%v': %v", *params.Duration, principal.Email, err)
|
|
return metadata.NewGetAccountMetricsBadRequest()
|
|
}
|
|
duration = v
|
|
}
|
|
slice := sliceSize(duration)
|
|
|
|
query := fmt.Sprintf("from(bucket: \"%v\")\n", h.cfg.Bucket) +
|
|
fmt.Sprintf("|> range(start: -%v)\n", duration) +
|
|
"|> filter(fn: (r) => r[\"_measurement\"] == \"xfer\")\n" +
|
|
"|> filter(fn: (r) => r[\"_field\"] == \"rx\" or r[\"_field\"] == \"tx\")\n" +
|
|
"|> filter(fn: (r) => r[\"namespace\"] == \"backend\")\n" +
|
|
fmt.Sprintf("|> filter(fn: (r) => r[\"share\"] == \"%v\")\n", shr.Token) +
|
|
fmt.Sprintf("|> aggregateWindow(every: %v, fn: sum, createEmpty: true)", slice)
|
|
|
|
rx, tx, timestamps, err := runFluxForRxTxArray(query, h.queryApi)
|
|
if err != nil {
|
|
logrus.Errorf("error running account metrics query for '%v': %v", principal.Email, err)
|
|
return metadata.NewGetAccountMetricsInternalServerError()
|
|
}
|
|
|
|
response := &rest_model_zrok.Metrics{
|
|
Scope: "account",
|
|
ID: fmt.Sprintf("%d", principal.ID),
|
|
Period: duration.Seconds(),
|
|
}
|
|
for i := 0; i < len(rx) && i < len(tx) && i < len(timestamps); i++ {
|
|
response.Samples = append(response.Samples, &rest_model_zrok.MetricsSample{
|
|
Rx: rx[i],
|
|
Tx: tx[i],
|
|
Timestamp: timestamps[i],
|
|
})
|
|
}
|
|
|
|
return metadata.NewGetShareMetricsOK().WithPayload(response)
|
|
}
|
|
|
|
func runFluxForRxTxArray(query string, queryApi api.QueryAPI) (rx, tx, timestamps []float64, err error) {
|
|
result, err := queryApi.Query(context.Background(), query)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
for result.Next() {
|
|
switch result.Record().Field() {
|
|
case "rx":
|
|
rxV := int64(0)
|
|
if v, ok := result.Record().Value().(int64); ok {
|
|
rxV = v
|
|
}
|
|
rx = append(rx, float64(rxV))
|
|
timestamps = append(timestamps, float64(result.Record().Time().UnixMilli()))
|
|
|
|
case "tx":
|
|
txV := int64(0)
|
|
if v, ok := result.Record().Value().(int64); ok {
|
|
txV = v
|
|
}
|
|
tx = append(tx, float64(txV))
|
|
}
|
|
}
|
|
return rx, tx, timestamps, nil
|
|
}
|
|
|
|
func sliceSize(duration time.Duration) time.Duration {
|
|
switch duration {
|
|
case 30 * 24 * time.Hour:
|
|
return 24 * time.Hour
|
|
case 7 * 24 * time.Hour:
|
|
return 4 * time.Hour
|
|
case 24 * time.Hour:
|
|
return 30 * time.Minute
|
|
default:
|
|
return duration
|
|
}
|
|
}
|