| | package containers |
| |
|
| | import ( |
| | "strings" |
| |
|
| | "github.com/mauriciogm/dokploy/apps/monitoring/config" |
| | ) |
| |
|
| | var monitorConfig *MonitoringConfig |
| |
|
| | func LoadConfig() error { |
| | cfg := config.GetMetricsConfig() |
| | monitorConfig = &MonitoringConfig{ |
| | IncludeServices: make([]string, len(cfg.Containers.Services.Include)), |
| | ExcludeServices: make([]string, len(cfg.Containers.Services.Exclude)), |
| | } |
| |
|
| | |
| | for i, svc := range cfg.Containers.Services.Include { |
| | monitorConfig.IncludeServices[i] = svc |
| | } |
| |
|
| | |
| | for i, appName := range cfg.Containers.Services.Exclude { |
| | monitorConfig.ExcludeServices[i] = appName |
| | } |
| |
|
| | return nil |
| | } |
| |
|
| | func ShouldMonitorContainer(containerName string) bool { |
| | if monitorConfig == nil { |
| | return false |
| | } |
| |
|
| | for _, excluded := range monitorConfig.ExcludeServices { |
| | if strings.Contains(containerName, excluded) { |
| | return false |
| | } |
| | } |
| |
|
| | if len(monitorConfig.IncludeServices) > 0 { |
| | for _, included := range monitorConfig.IncludeServices { |
| | if strings.Contains(containerName, included) { |
| | return true |
| | } |
| | } |
| | return false |
| | } |
| |
|
| | return true |
| | } |
| |
|
| | func GetServiceName(containerName string) string { |
| | name := strings.TrimPrefix(containerName, "/") |
| | parts := strings.Split(name, "-") |
| | if len(parts) > 1 { |
| | return strings.Join(parts[:len(parts)-1], "-") |
| | } |
| | return name |
| | } |
| |
|