mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
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)),
|
|
}
|
|
|
|
// Convert Include services
|
|
for i, svc := range cfg.Containers.Services.Include {
|
|
monitorConfig.IncludeServices[i] = svc
|
|
}
|
|
|
|
// Convert Exclude services
|
|
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
|
|
}
|