-
Notifications
You must be signed in to change notification settings - Fork 20
/
dbaas_metrics.go
72 lines (55 loc) · 1.84 KB
/
dbaas_metrics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cmd
import (
"errors"
"fmt"
"net/http"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/exoscale/egoscale/v2/oapi"
)
type dbaasServiceMetricsCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"metrics"`
Name string `cli-arg:"#"`
Period string `cli-usage:"metrics time period to retrieve"`
Zone string `cli-short:"z" cli-usage:"Database Service zone"`
}
func (c *dbaasServiceMetricsCmd) cmdAliases() []string { return gShowAlias }
func (c *dbaasServiceMetricsCmd) cmdShort() string {
return "Query a Database Service metrics over time"
}
func (c *dbaasServiceMetricsCmd) cmdLong() string {
return `This command outputs a Database Service raw metrics for the specified time
period in JSON format.`
}
func (c *dbaasServiceMetricsCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *dbaasServiceMetricsCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
res, err := globalstate.EgoscaleClient.GetDbaasServiceMetricsWithResponse(
ctx,
c.Name,
oapi.GetDbaasServiceMetricsJSONRequestBody{Period: (*oapi.GetDbaasServiceMetricsJSONBodyPeriod)(&c.Period)},
)
if err != nil {
if errors.Is(err, exoapi.ErrNotFound) {
return fmt.Errorf("resource not found in zone %q", c.Zone)
}
return err
}
if res.StatusCode() != http.StatusOK {
return fmt.Errorf("API request error: unexpected status %s", res.Status())
}
fmt.Println(string(res.Body))
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(dbaasCmd, &dbaasServiceMetricsCmd{
cliCommandSettings: defaultCLICmdSettings(),
Period: "hour",
}))
}