-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathadd_mongodb.go
212 lines (184 loc) · 8.39 KB
/
add_mongodb.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
// Copyright (C) 2023 Percona LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package management
import (
"fmt"
"github.com/percona/pmm/admin/agentlocal"
"github.com/percona/pmm/admin/commands"
"github.com/percona/pmm/admin/pkg/flags"
"github.com/percona/pmm/api/management/v1/json/client"
mservice "github.com/percona/pmm/api/management/v1/json/client/management_service"
)
const (
// MongodbQuerySourceProfiler defines available source name for profiler.
MongodbQuerySourceProfiler = "profiler"
// MongodbQuerySourceMongolog defines available source name for profiler.
MongodbQuerySourceMongolog = "mongolog"
// MongodbQuerySourceNone defines available source name for profiler.
MongodbQuerySourceNone = "none"
)
var addMongoDBResultT = commands.ParseTemplate(`
MongoDB Service added.
Service ID : {{ .Service.ServiceID }}
Service name: {{ .Service.ServiceName }}
`)
type addMongoDBResult struct {
Service *mservice.AddServiceOKBodyMongodbService `json:"service"`
}
func (res *addMongoDBResult) Result() {}
func (res *addMongoDBResult) String() string {
return commands.RenderTemplate(addMongoDBResultT, res)
}
// AddMongoDBCommand is used by Kong for CLI flags and commands.
//
//nolint:lll
type AddMongoDBCommand struct {
ServiceName string `name:"name" arg:"" default:"${hostname}-mongodb" help:"Service name (autodetected default: ${hostname}-mongodb)"`
Address string `arg:"" optional:"" help:"MongoDB address and port (default: 127.0.0.1:27017)"`
Socket string `help:"Path to socket"`
NodeID string `help:"Node ID (default is autodetected)"`
PMMAgentID string `help:"The pmm-agent identifier which runs this instance (default is autodetected)"`
Username string `help:"MongoDB username"`
Password string `help:"MongoDB password"`
AgentPassword string `help:"Custom password for /metrics endpoint"`
CredentialsSource string `type:"existingfile" help:"Credentials provider"`
// TODO add "auto"
QuerySource string `default:"${mongoDbQuerySourceDefault}" enum:"${mongoDbQuerySourcesEnum}" help:"Source of queries, one of: ${mongoDbQuerySourcesEnum} (default: ${mongoDbQuerySourceDefault})"`
Environment string `help:"Environment name"`
Cluster string `help:"Cluster name"`
ReplicationSet string `help:"Replication set name"`
CustomLabels map[string]string `mapsep:"," help:"Custom user-assigned labels"`
SkipConnectionCheck bool `help:"Skip connection check"`
MaxQueryLength int32 `placeholder:"NUMBER" help:"Limit query length in QAN (default: server-defined; -1: no limit)"`
TLS bool `help:"Use TLS to connect to the database"`
TLSSkipVerify bool `help:"Skip TLS certificates validation"`
TLSCertificateKeyFile string `help:"Path to TLS certificate PEM file"`
TLSCertificateKeyFilePassword string `help:"Password for certificate"`
TLSCaFile string `help:"Path to certificate authority file"`
AuthenticationMechanism string `help:"Authentication mechanism. Default is empty. Use MONGODB-X509 for ssl certificates"`
AuthenticationDatabase string `help:"Authentication database. Default is empty. Use $external for ssl certificates"`
EnableAllCollectors bool `help:"Enable all collectors"`
DisableCollectors []string `help:"Comma-separated list of collector names to exclude from exporter"`
StatsCollections []string `help:"Collections for collstats & indexstats"`
CollectionsLimit int32 `name:"max-collections-limit" default:"-1" help:"Disable collstats, dbstats, topmetrics and indexstats if there are more than <n> collections. 0: No limit. Default is -1, which let PMM automatically set this value"`
ExposeExporter bool `name:"expose-exporter" help:"Optionally expose the address of the exporter publicly on 0.0.0.0"`
AddCommonFlags
flags.MetricsModeFlags
flags.LogLevelFatalFlags
}
// GetServiceName returns the service name for AddMongoDBCommand.
func (cmd *AddMongoDBCommand) GetServiceName() string {
return cmd.ServiceName
}
// GetAddress returns the address for AddMongoDBCommand.
func (cmd *AddMongoDBCommand) GetAddress() string {
return cmd.Address
}
// GetDefaultAddress returns the default address for AddMongoDBCommand.
func (cmd *AddMongoDBCommand) GetDefaultAddress() string {
return "127.0.0.1:27017"
}
// GetSocket returns the socket for AddMongoDBCommand.
func (cmd *AddMongoDBCommand) GetSocket() string {
return cmd.Socket
}
// GetCredentials returns the credentials for AddMongoDBCommand.
func (cmd *AddMongoDBCommand) GetCredentials() error {
creds, err := commands.ReadFromSource(cmd.CredentialsSource)
if err != nil {
return fmt.Errorf("%w", err)
}
cmd.AgentPassword = creds.AgentPassword
cmd.Password = creds.Password
cmd.Username = creds.Username
return nil
}
// RunCmd runs the command for AddMongoDBCommand.
func (cmd *AddMongoDBCommand) RunCmd() (commands.Result, error) {
customLabels := commands.ParseCustomLabels(cmd.CustomLabels)
tlsCertificateKey, err := commands.ReadFile(cmd.TLSCertificateKeyFile)
if err != nil {
return nil, err
}
tlsCa, err := commands.ReadFile(cmd.TLSCaFile)
if err != nil {
return nil, err
}
if cmd.PMMAgentID == "" || cmd.NodeID == "" {
status, err := agentlocal.GetStatus(agentlocal.DoNotRequestNetworkInfo)
if err != nil {
return nil, err
}
if cmd.PMMAgentID == "" {
cmd.PMMAgentID = status.AgentID
}
if cmd.NodeID == "" {
cmd.NodeID = status.NodeID
}
}
serviceName, socket, host, port, err := processGlobalAddFlagsWithSocket(cmd, cmd.AddCommonFlags)
if err != nil {
return nil, err
}
if cmd.CredentialsSource != "" {
if err := cmd.GetCredentials(); err != nil {
return nil, fmt.Errorf("failed to retrieve credentials from %s: %w", cmd.CredentialsSource, err)
}
}
params := &mservice.AddServiceParams{
Body: mservice.AddServiceBody{
Mongodb: &mservice.AddServiceParamsBodyMongodb{
NodeID: cmd.NodeID,
ServiceName: serviceName,
Address: host,
Socket: socket,
Port: int64(port),
ExposeExporter: cmd.ExposeExporter,
PMMAgentID: cmd.PMMAgentID,
Environment: cmd.Environment,
Cluster: cmd.Cluster,
ReplicationSet: cmd.ReplicationSet,
Username: cmd.Username,
Password: cmd.Password,
AgentPassword: cmd.AgentPassword,
QANMongodbProfiler: cmd.QuerySource == MongodbQuerySourceProfiler,
QANMongodbMongolog: cmd.QuerySource == MongodbQuerySourceMongolog,
CustomLabels: customLabels,
SkipConnectionCheck: cmd.SkipConnectionCheck,
MaxQueryLength: cmd.MaxQueryLength,
TLS: cmd.TLS,
TLSSkipVerify: cmd.TLSSkipVerify,
TLSCertificateKey: tlsCertificateKey,
TLSCertificateKeyFilePassword: cmd.TLSCertificateKeyFilePassword,
TLSCa: tlsCa,
AuthenticationMechanism: cmd.AuthenticationMechanism,
AuthenticationDatabase: cmd.AuthenticationDatabase,
MetricsMode: cmd.MetricsModeFlags.MetricsMode.EnumValue(),
EnableAllCollectors: cmd.EnableAllCollectors,
DisableCollectors: commands.ParseDisableCollectors(cmd.DisableCollectors),
StatsCollections: commands.ParseDisableCollectors(cmd.StatsCollections),
CollectionsLimit: cmd.CollectionsLimit,
LogLevel: cmd.LogLevelFatalFlags.LogLevel.EnumValue(),
},
},
Context: commands.Ctx,
}
resp, err := client.Default.ManagementService.AddService(params)
if err != nil {
return nil, err
}
return &addMongoDBResult{
Service: resp.Payload.Mongodb.Service,
}, nil
}