forked from evergreen-ci/evergreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_newrelic.go
44 lines (36 loc) · 1.51 KB
/
config_newrelic.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
package evergreen
import (
"context"
"github.com/pkg/errors"
"go.mongodb.org/mongo-driver/bson"
)
type NewRelicConfig struct {
AccountID string `bson:"account_id" json:"account_id" yaml:"account_id"`
TrustKey string `bson:"trust_key" json:"trust_key" yaml:"trust_key"`
AgentID string `bson:"agent_id" json:"agent_id" yaml:"agent_id"`
LicenseKey string `bson:"license_key" json:"license_key" yaml:"license_key"`
ApplicationID string `bson:"application_id" json:"application_id" yaml:"application_id"`
}
func (c *NewRelicConfig) SectionId() string { return "newrelic" }
func (c *NewRelicConfig) Get(ctx context.Context) error {
return getConfigSection(ctx, c)
}
func (c *NewRelicConfig) Set(ctx context.Context) error {
return errors.Wrapf(setConfigSection(ctx, c.SectionId(), bson.M{
"$set": bson.M{
"account_id": c.AccountID,
"trust_key": c.TrustKey,
"agent_id": c.AgentID,
"license_key": c.LicenseKey,
"application_id": c.ApplicationID,
}}), "updating config section '%s'", c.SectionId(),
)
}
func (c *NewRelicConfig) ValidateAndDefault() error {
allFieldsAreEmpty := c.AccountID == "" && c.TrustKey == "" && c.AgentID == "" && c.LicenseKey == "" && c.ApplicationID == ""
allFieldsAreFilledOut := len(c.AccountID) > 0 && len(c.TrustKey) > 0 && len(c.AgentID) > 0 && len(c.LicenseKey) > 0 && len(c.ApplicationID) > 0
if !allFieldsAreEmpty && !allFieldsAreFilledOut {
return errors.New("must provide all fields or no fields for New Relic settings")
}
return nil
}