File size: 6,795 Bytes
b80fc11 |
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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
package containers
import (
"encoding/json"
"fmt"
"log"
"os/exec"
"strconv"
"strings"
"sync"
"time"
"github.com/mauriciogm/dokploy/apps/monitoring/config"
"github.com/mauriciogm/dokploy/apps/monitoring/database"
)
type ContainerMonitor struct {
db *database.DB
isRunning bool
mu sync.Mutex
stopChan chan struct{}
}
func NewContainerMonitor(db *database.DB) (*ContainerMonitor, error) {
if err := db.InitContainerMetricsTable(); err != nil {
return nil, fmt.Errorf("failed to initialize container metrics table: %v", err)
}
return &ContainerMonitor{
db: db,
stopChan: make(chan struct{}),
}, nil
}
func (cm *ContainerMonitor) Start() error {
if err := LoadConfig(); err != nil {
return fmt.Errorf("error loading config: %v", err)
}
// Check if there are services to monitor
if len(monitorConfig.IncludeServices) == 0 {
log.Printf("No services to monitor. Skipping container metrics collection")
return nil
}
metricsConfig := config.GetMetricsConfig()
refreshRate := metricsConfig.Containers.RefreshRate
if refreshRate == 0 {
refreshRate = 60 // default refresh rate
}
duration := time.Duration(refreshRate) * time.Second
// log.Printf("Container metrics collection will run every %d seconds for services: %v", refreshRate, monitorConfig.IncludeServices)
ticker := time.NewTicker(duration)
go func() {
for {
select {
case <-ticker.C:
// Check again in case the configuration has changed
if len(monitorConfig.IncludeServices) == 0 {
log.Printf("No services to monitor. Stopping metrics collection")
ticker.Stop()
return
}
cm.collectMetrics()
case <-cm.stopChan:
ticker.Stop()
return
}
}
}()
return nil
}
func (cm *ContainerMonitor) Stop() {
close(cm.stopChan)
}
func (cm *ContainerMonitor) collectMetrics() {
cm.mu.Lock()
if cm.isRunning {
cm.mu.Unlock()
log.Println("Previous collection still running, skipping...")
return
}
cm.isRunning = true
cm.mu.Unlock()
defer func() {
cm.mu.Lock()
cm.isRunning = false
cm.mu.Unlock()
}()
cmd := exec.Command("docker", "stats", "--no-stream", "--format",
`{"BlockIO":"{{.BlockIO}}","CPUPerc":"{{.CPUPerc}}","ID":"{{.ID}}","MemPerc":"{{.MemPerc}}","MemUsage":"{{.MemUsage}}","Name":"{{.Name}}","NetIO":"{{.NetIO}}"}`)
output, err := cmd.CombinedOutput()
// log.Printf("Output: %s", string(output))
if err != nil {
log.Printf("Error getting docker stats: %v", err)
return
}
lines := string(output)
if lines == "" {
return
}
seenServices := make(map[string]bool)
for _, line := range strings.Split(lines, "\n") {
if line == "" {
continue
}
var container Container
if err := json.Unmarshal([]byte(line), &container); err != nil {
log.Printf("Error parsing container data: %v", err)
continue
}
if !ShouldMonitorContainer(container.Name) {
continue
}
serviceName := GetServiceName(container.Name)
if seenServices[serviceName] {
continue
}
seenServices[serviceName] = true
// log.Printf("Container: %+v", container)
// Process metrics
metric := processContainerMetrics(container)
// log.Printf("Saving metrics for %s: %+v", serviceName, metric)
if err := cm.db.SaveContainerMetric(metric); err != nil {
log.Printf("Error saving metrics for %s: %v", serviceName, err)
}
}
}
func processContainerMetrics(container Container) *database.ContainerMetric {
// Process CPU
cpu, _ := strconv.ParseFloat(strings.TrimSuffix(container.CPUPerc, "%"), 64)
// Process Memory
memPerc, _ := strconv.ParseFloat(strings.TrimSuffix(container.MemPerc, "%"), 64)
memParts := strings.Split(container.MemUsage, " / ")
var usedValue, totalValue float64
var usedUnit, totalUnit string
if len(memParts) == 2 {
// Process used memory
usedParts := strings.Fields(memParts[0])
if len(usedParts) > 0 {
usedValue, _ = strconv.ParseFloat(strings.TrimRight(usedParts[0], "MiBGiB"), 64)
usedUnit = strings.TrimLeft(usedParts[0], "0123456789.")
// Convert MiB to MB and GiB to GB
if usedUnit == "MiB" {
usedUnit = "MB"
} else if usedUnit == "GiB" {
usedUnit = "GB"
}
}
// Process total memory
totalParts := strings.Fields(memParts[1])
if len(totalParts) > 0 {
totalValue, _ = strconv.ParseFloat(strings.TrimRight(totalParts[0], "MiBGiB"), 64)
totalUnit = strings.TrimLeft(totalParts[0], "0123456789.")
// Convert MiB to MB and GiB to GB
if totalUnit == "MiB" {
totalUnit = "MB"
} else if totalUnit == "GiB" {
totalUnit = "GB"
}
}
}
// Process Network I/O
netParts := strings.Split(container.NetIO, " / ")
var netInValue, netOutValue float64
var netInUnit, netOutUnit string
if len(netParts) == 2 {
// Process input
inParts := strings.Fields(netParts[0])
if len(inParts) > 0 {
netInValue, _ = strconv.ParseFloat(strings.TrimRight(inParts[0], "kMGTB"), 64)
netInUnit = strings.TrimLeft(inParts[0], "0123456789.")
}
// Process output
outParts := strings.Fields(netParts[1])
if len(outParts) > 0 {
netOutValue, _ = strconv.ParseFloat(strings.TrimRight(outParts[0], "kMGTB"), 64)
netOutUnit = strings.TrimLeft(outParts[0], "0123456789.")
}
}
// Process Block I/O
blockParts := strings.Split(container.BlockIO, " / ")
var blockReadValue, blockWriteValue float64
var blockReadUnit, blockWriteUnit string
if len(blockParts) == 2 {
// Process read
readParts := strings.Fields(blockParts[0])
if len(readParts) > 0 {
blockReadValue, _ = strconv.ParseFloat(strings.TrimRight(readParts[0], "kMGTB"), 64)
blockReadUnit = strings.TrimLeft(readParts[0], "0123456789.")
}
// Process write
writeParts := strings.Fields(blockParts[1])
if len(writeParts) > 0 {
blockWriteValue, _ = strconv.ParseFloat(strings.TrimRight(writeParts[0], "kMGTB"), 64)
blockWriteUnit = strings.TrimLeft(writeParts[0], "0123456789.")
}
}
return &database.ContainerMetric{
Timestamp: time.Now().UTC().Format(time.RFC3339Nano),
CPU: cpu,
Memory: database.MemoryMetric{
Percentage: memPerc,
Used: usedValue,
Total: totalValue,
UsedUnit: usedUnit,
TotalUnit: totalUnit,
},
Network: database.NetworkMetric{
Input: netInValue,
Output: netOutValue,
InputUnit: netInUnit,
OutputUnit: netOutUnit,
},
BlockIO: database.BlockIOMetric{
Read: blockReadValue,
Write: blockWriteValue,
ReadUnit: blockReadUnit,
WriteUnit: blockWriteUnit,
},
Container: container.ID,
ID: container.ID,
Name: container.Name,
}
}
func parseValue(value string) (float64, string) {
parts := strings.Fields(value)
if len(parts) < 1 {
return 0, "B"
}
v, _ := strconv.ParseFloat(parts[0], 64)
unit := strings.TrimLeft(value, "0123456789.")
return v, unit
}
|