Skip to content

Commit cf1c997

Browse files
authored
Merge pull request #172 from sdslabs/container-metrics
Container Metrics
2 parents 6fb893d + 189fd20 commit cf1c997

21 files changed

+688
-89
lines changed

config.sample.toml

+3
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ private_key = "/home/user/privkey.pem" # Private Key Location
160160
[services.mizu]
161161
deploy = true # Deploy Mizu?
162162
port = 4000
163+
# Time Interval (in seconds) in which metrics of all application containers
164+
# running in the current node are collected and stored in the central mongoDB database
165+
metrics_interval = 600
163166

164167

165168
##########################

configs/project_configs.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ var (
4242
Deploy: ServiceConfig.Kaze.Deploy,
4343
Port: ServiceConfig.Kaze.Port,
4444
},
45-
types.Mizu: &ServiceConfig.Mizu,
45+
types.Mizu: &GenericService{
46+
Deploy: ServiceConfig.Mizu.Deploy,
47+
Port: ServiceConfig.Mizu.Port,
48+
},
4649
types.Iwa: &GenericService{
4750
Deploy: ServiceConfig.Iwa.Deploy,
4851
Port: ServiceConfig.Iwa.Port,

configs/types.go

+13-7
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ type GenericService struct {
4545
Port int `toml:"port"`
4646
}
4747

48+
// MizuService is the default configuration for mizu microservice
49+
type MizuService struct {
50+
GenericService
51+
MetricsInterval time.Duration `toml:"metrics_interval"`
52+
}
53+
4854
// KazeService is the default configuration for Kaze microservice
4955
type KazeService struct {
5056
GenericService
@@ -110,13 +116,13 @@ type Images struct {
110116

111117
// Services is the configuration for all Services
112118
type Services struct {
113-
ExposureInterval time.Duration `toml:"exposure_interval"`
114-
Kaze KazeService `toml:"kaze"`
115-
Mizu GenericService `toml:"mizu"`
116-
Iwa IwaService `toml:"iwa"`
117-
Enrai EnraiService `toml:"enrai"`
118-
Hikari HikariService `toml:"hikari"`
119-
Kaen KaenService `toml:"kaen"`
119+
ExposureInterval time.Duration `toml:"exposure_interval"`
120+
Kaze KazeService `toml:"kaze"`
121+
Mizu MizuService `toml:"mizu"`
122+
Iwa IwaService `toml:"iwa"`
123+
Enrai EnraiService `toml:"enrai"`
124+
Hikari HikariService `toml:"hikari"`
125+
Kaen KaenService `toml:"kaen"`
120126
}
121127

122128
// GasperCfg is the configuration for the entire project

0 commit comments

Comments
 (0)