-
Notifications
You must be signed in to change notification settings - Fork 400
/
Copy pathpilot.go
860 lines (737 loc) · 20.6 KB
/
pilot.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
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
package pilot
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"sort"
"strings"
"sync"
"text/template"
"time"
log "github.com/Sirupsen/logrus"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/events"
"github.com/docker/docker/api/types/filters"
"github.com/docker/docker/api/types/mount"
k8s "github.com/docker/docker/client"
"golang.org/x/net/context"
)
/**
Label:
aliyun.log: /var/log/hello.log[:json][;/var/log/abc/def.log[:txt]]
*/
// Global variables
const (
ENV_PILOT_LOG_PREFIX = "PILOT_LOG_PREFIX"
ENV_PILOT_CREATE_SYMLINK = "PILOT_CREATE_SYMLINK"
ENV_LOGGING_OUTPUT = "LOGGING_OUTPUT"
ENV_SERVICE_LOGS_TEMPL = "%s_logs_"
ENV_SERVICE_LOGS_CUSTOME_CONFIG_TEMPL = "%s_logs_custom_config"
LABEL_SERVICE_LOGS_TEMPL = "%s.logs."
LABEL_SERVICE_LOGS_CUSTOME_CONFIG_TEMPL = "%s.logs.custom.config"
LABEL_PROJECT_SWARM_MODE = "com.docker.stack.namespace"
LABEL_PROJECT = "com.docker.compose.project"
LABEL_SERVICE = "com.docker.compose.service"
LABEL_SERVICE_SWARM_MODE = "com.docker.swarm.service.name"
LABEL_K8S_POD_NAMESPACE = "io.kubernetes.pod.namespace"
LABEL_K8S_CONTAINER_NAME = "io.kubernetes.container.name"
LABEL_POD = "io.kubernetes.pod.name"
SYMLINK_LOGS_BASE = "/acs/log/"
ERR_ALREADY_STARTED = "already started"
)
// Pilot entry point
type Pilot struct {
piloter Piloter
mutex sync.Mutex
templ *template.Template
client *k8s.Client
lastReload time.Time
reloadChan chan bool
stopChan chan bool
baseDir string
logPrefix []string
createSymlink bool
}
// Run start log pilot
func Run(templ string, baseDir string) error {
p, err := New(templ, baseDir)
if err != nil {
panic(err)
}
return p.watch()
}
// New returns a log pilot instance
func New(tplStr string, baseDir string) (*Pilot, error) {
templ, err := template.New("pilot").Parse(tplStr)
if err != nil {
return nil, err
}
if os.Getenv("DOCKER_API_VERSION") == "" {
os.Setenv("DOCKER_API_VERSION", "1.23")
}
client, err := k8s.NewEnvClient()
if err != nil {
return nil, err
}
piloter, err := NewPiloter(baseDir)
if err != nil {
return nil, err
}
logPrefix := []string{"aliyun"}
if os.Getenv(ENV_PILOT_LOG_PREFIX) != "" {
envLogPrefix := os.Getenv(ENV_PILOT_LOG_PREFIX)
logPrefix = strings.Split(envLogPrefix, ",")
}
createSymlink := os.Getenv(ENV_PILOT_CREATE_SYMLINK) == "true"
return &Pilot{
client: client,
templ: templ,
baseDir: baseDir,
reloadChan: make(chan bool),
stopChan: make(chan bool),
piloter: piloter,
logPrefix: logPrefix,
createSymlink: createSymlink,
}, nil
}
func (p *Pilot) watch() error {
if err := p.cleanConfigs(); err != nil {
return err
}
err := p.piloter.Start()
if err != nil && ERR_ALREADY_STARTED != err.Error() {
return err
}
p.lastReload = time.Now()
go p.doReload()
ctx := context.Background()
filter := filters.NewArgs()
filter.Add("type", "container")
options := types.EventsOptions{
Filters: filter,
}
msgs, errs := p.client.Events(ctx, options)
go func() {
defer func() {
log.Warn("finish to watch event")
p.stopChan <- true
}()
log.Info("begin to watch event")
for {
select {
case msg := <-msgs:
if err := p.processEvent(msg); err != nil {
log.Errorf("fail to process event: %v, %v", msg, err)
}
case err := <-errs:
log.Warnf("error: %v", err)
if err == io.EOF || err == io.ErrUnexpectedEOF {
return
}
msgs, errs = p.client.Events(ctx, options)
}
}
}()
time.Sleep(time.Second * 1)
if err := p.processAllContainers(); err != nil {
return err
}
<-p.stopChan
close(p.reloadChan)
close(p.stopChan)
return nil
}
// LogConfig log configuration
type LogConfig struct {
Name string
HostDir string
ContainerDir string
Format string
FormatConfig map[string]string
File string
Tags map[string]string
Target string
EstimateTime bool
Stdout bool
CustomFields map[string]string
CustomConfigs map[string]string
}
func (p *Pilot) cleanConfigs() error {
p.mutex.Lock()
defer p.mutex.Unlock()
confDir := fmt.Sprintf(p.piloter.GetConfHome())
d, err := os.Open(confDir)
if err != nil {
return err
}
defer d.Close()
names, err := d.Readdirnames(-1)
if err != nil {
return err
}
for _, name := range names {
conf := filepath.Join(confDir, name)
stat, err := os.Stat(filepath.Join(confDir, name))
if err != nil {
return err
}
if stat.Mode().IsRegular() {
if err := os.Remove(conf); err != nil {
return err
}
}
}
return nil
}
func (p *Pilot) processAllContainers() error {
p.mutex.Lock()
defer p.mutex.Unlock()
log.Debug("process all container log config")
opts := types.ContainerListOptions{}
containers, err := p.client.ContainerList(context.Background(), opts)
if err != nil {
log.Errorf("fail to list container: %v", err)
return nil
}
containerIDs := make(map[string]string, 0)
for _, c := range containers {
if _, ok := containerIDs[c.ID]; !ok {
containerIDs[c.ID] = c.ID
}
if c.State == "removing" {
continue
}
if p.exists(c.ID) {
log.Debugf("%s is already exists", c.ID)
continue
}
containerJSON, err := p.client.ContainerInspect(context.Background(), c.ID)
if err != nil {
log.Errorf("fail to inspect container %s: %v", c.ID, err)
continue
}
if err = p.newContainer(&containerJSON); err != nil {
log.Errorf("fail to process container %s: %v", containerJSON.Name, err)
}
}
return p.processSymlink(containerIDs)
}
func (p *Pilot) processSymlink(existingContainerIDs map[string]string) error {
symlinkContainerIDs := p.listAllSymlinkContainer()
for containerID := range symlinkContainerIDs {
if _, ok := existingContainerIDs[containerID]; !ok {
p.removeVolumeSymlink(containerID)
}
}
return nil
}
func (p *Pilot) listAllSymlinkContainer() map[string]string {
containerIDs := make(map[string]string, 0)
linkBaseDir := path.Join(p.baseDir, SYMLINK_LOGS_BASE)
if _, err := os.Stat(linkBaseDir); err != nil && os.IsNotExist(err) {
return containerIDs
}
projects := listSubDirectory(linkBaseDir)
for _, project := range projects {
projectPath := path.Join(linkBaseDir, project)
services := listSubDirectory(projectPath)
for _, service := range services {
servicePath := path.Join(projectPath, service)
containers := listSubDirectory(servicePath)
for _, containerID := range containers {
if _, ok := containerIDs[containerID]; !ok {
containerIDs[containerID] = containerID
}
}
}
}
return containerIDs
}
func listSubDirectory(path string) []string {
subdirs := make([]string, 0)
if _, err := os.Stat(path); os.IsNotExist(err) {
return subdirs
}
files, err := ioutil.ReadDir(path)
if err != nil {
log.Warnf("read %s error: %v", path, err)
return subdirs
}
for _, file := range files {
if file.IsDir() {
subdirs = append(subdirs, file.Name())
}
}
return subdirs
}
func putIfNotEmpty(store map[string]string, key, value string) {
if key == "" || value == "" {
return
}
store[key] = value
}
func container(containerJSON *types.ContainerJSON) map[string]string {
labels := containerJSON.Config.Labels
c := make(map[string]string)
putIfNotEmpty(c, "docker_app", labels[LABEL_PROJECT])
putIfNotEmpty(c, "docker_app", labels[LABEL_PROJECT_SWARM_MODE])
putIfNotEmpty(c, "docker_service", labels[LABEL_SERVICE])
putIfNotEmpty(c, "docker_service", labels[LABEL_SERVICE_SWARM_MODE])
putIfNotEmpty(c, "k8s_pod", labels[LABEL_POD])
putIfNotEmpty(c, "k8s_pod_namespace", labels[LABEL_K8S_POD_NAMESPACE])
putIfNotEmpty(c, "k8s_container_name", labels[LABEL_K8S_CONTAINER_NAME])
putIfNotEmpty(c, "k8s_node_name", os.Getenv("NODE_NAME"))
putIfNotEmpty(c, "docker_container", strings.TrimPrefix(containerJSON.Name, "/"))
extension(c, containerJSON)
return c
}
func (p *Pilot) newContainer(containerJSON *types.ContainerJSON) error {
id := containerJSON.ID
env := containerJSON.Config.Env
mounts := containerJSON.Mounts
labels := containerJSON.Config.Labels
jsonLogPath := containerJSON.LogPath
//logConfig.containerDir match types.mountPoint
/**
场景:
1. 容器一个路径,中间有多级目录对应宿主机不同的目录
2. containerdir对应的目录不是直接挂载的,挂载的是它上级的目录
查找:从containerdir开始查找最近的一层挂载
*/
container := container(containerJSON)
for _, e := range env {
for _, prefix := range p.logPrefix {
customConfig := fmt.Sprintf(ENV_SERVICE_LOGS_CUSTOME_CONFIG_TEMPL, prefix)
if strings.HasPrefix(e, customConfig) {
labels[customConfig] = e[len(customConfig)+1:]
log.Infof("Get customConfig key = %s, value = %s", customConfig, labels[customConfig])
continue
}
serviceLogs := fmt.Sprintf(ENV_SERVICE_LOGS_TEMPL, prefix)
if !strings.HasPrefix(e, serviceLogs) {
continue
}
envLabel := strings.SplitN(e, "=", 2)
if len(envLabel) == 2 {
labelKey := strings.Replace(envLabel[0], "_", ".", -1)
labels[labelKey] = envLabel[1]
}
}
}
logConfigs, err := p.getLogConfigs(jsonLogPath, mounts, labels)
if err != nil {
return err
}
if len(logConfigs) == 0 {
log.Debugf("%s has not log config, skip", id)
return nil
}
// create symlink
p.createVolumeSymlink(containerJSON)
//pilot.findMounts(logConfigs, jsonLogPath, mounts)
//生成配置
logConfig, err := p.render(id, container, logConfigs)
if err != nil {
return err
}
//TODO validate config before save
//log.Debugf("container %s log config: %s", id, logConfig)
if err = ioutil.WriteFile(p.piloter.GetConfPath(id), []byte(logConfig), os.FileMode(0644)); err != nil {
return err
}
p.tryReload()
return nil
}
func (p *Pilot) tryReload() {
select {
case p.reloadChan <- true:
default:
log.Info("Another load is pending")
}
}
func (p *Pilot) doReload() {
log.Info("Reload goroutine is ready")
for {
<-p.reloadChan
p.reload()
}
}
func (p *Pilot) delContainer(id string) error {
p.removeVolumeSymlink(id)
//fixme refactor in the future
if p.piloter.Name() == PILOT_FLUENTD {
clean := func() {
log.Infof("Try removing log config %s", id)
if err := os.Remove(p.piloter.GetConfPath(id)); err != nil {
log.Warnf("removing %s log config failure", id)
return
}
p.tryReload()
}
time.AfterFunc(15*time.Minute, clean)
return nil
}
return p.piloter.OnDestroyEvent(id)
}
func (p *Pilot) processEvent(msg events.Message) error {
containerId := msg.Actor.ID
ctx := context.Background()
switch msg.Action {
case "start", "restart":
log.Debugf("Process container start event: %s", containerId)
if p.exists(containerId) {
log.Debugf("%s is already exists", containerId)
return nil
}
containerJSON, err := p.client.ContainerInspect(ctx, containerId)
if err != nil {
return err
}
return p.newContainer(&containerJSON)
//Increase the monitoring of container Exit events and repair the log duplicate collection caused by the failure to delete the exited container in time
case "destroy", "die":
log.Debugf("Process container destroy event: %s", containerId)
err := p.delContainer(containerId)
if err != nil {
log.Warnf("Process container destroy event error: %s, %s",
containerId, err.Error())
}
}
return nil
}
func (p *Pilot) hostDirOf(path string, mounts map[string]types.MountPoint) string {
confPath := path
for {
if point, ok := mounts[path]; ok {
if confPath == path {
return point.Source
}
relPath, err := filepath.Rel(path, confPath)
if err != nil {
panic(err)
}
return fmt.Sprintf("%s/%s", point.Source, relPath)
}
path = filepath.Dir(path)
if path == "/" || path == "." {
break
}
}
return ""
}
func (p *Pilot) parseTags(tags string) (map[string]string, error) {
tagMap := make(map[string]string)
if tags == "" {
return tagMap, nil
}
kvArray := strings.Split(tags, ",")
for _, kv := range kvArray {
arr := strings.Split(kv, "=")
if len(arr) != 2 {
return nil, fmt.Errorf("%s is not a valid k=v format", kv)
}
key := strings.TrimSpace(arr[0])
value := strings.TrimSpace(arr[1])
if key == "" || value == "" {
return nil, fmt.Errorf("%s is not a valid k=v format", kv)
}
tagMap[key] = value
}
return tagMap, nil
}
func (p *Pilot) tryCheckKafkaTopic(topic string) error {
output := os.Getenv(ENV_LOGGING_OUTPUT)
if output != "kafka" {
return nil
}
topicPath := filepath.Join(p.piloter.GetBaseConf(), "config", "kafka_topics")
if _, err := os.Stat(topicPath); os.IsNotExist(err) {
log.Info("ignore checking the validity of kafka topic")
return nil
}
topics, err := ReadFile(topicPath, ",")
if err != nil {
return err
}
for _, t := range topics {
if t == topic {
return nil
}
}
return fmt.Errorf("invalid topic: %s, supported topics: %v", topic, topics)
}
func (p *Pilot) parseLogConfig(name string, info *LogInfoNode, jsonLogPath string, mounts map[string]types.MountPoint) (*LogConfig, error) {
path := strings.TrimSpace(info.value)
if path == "" {
return nil, fmt.Errorf("path for %s is empty", name)
}
tags := info.get("tags")
tagMap, err := p.parseTags(tags)
if err != nil {
return nil, fmt.Errorf("parse tags for %s error: %v", name, err)
}
target := info.get("target")
// add default index or topic
if _, ok := tagMap["index"]; !ok {
if target != "" {
tagMap["index"] = target
} else {
tagMap["index"] = name
}
}
if _, ok := tagMap["topic"]; !ok {
if target != "" {
tagMap["topic"] = target
} else {
tagMap["topic"] = name
}
}
// try to check the validity of the target topic for kafka
if err := p.tryCheckKafkaTopic(tagMap["topic"]); err != nil {
return nil, err
}
format := info.children["format"]
if format == nil || format.value == "none" {
format = newLogInfoNode("nonex")
}
formatConfig, err := Convert(format)
if err != nil {
return nil, fmt.Errorf("in log %s: format error: %v", name, err)
}
//特殊处理regex
if format.value == "regexp" {
format.value = fmt.Sprintf("/%s/", formatConfig["pattern"])
delete(formatConfig, "pattern")
}
if path == "stdout" {
logFile := filepath.Base(jsonLogPath)
if p.piloter.Name() == PILOT_FILEBEAT {
logFile = logFile + "*"
}
return &LogConfig{
Name: name,
HostDir: filepath.Join(p.baseDir, filepath.Dir(jsonLogPath)),
File: logFile,
Format: format.value,
Tags: tagMap,
FormatConfig: map[string]string{"time_format": "%Y-%m-%dT%H:%M:%S.%NZ"},
Target: target,
EstimateTime: false,
Stdout: true,
}, nil
}
if !filepath.IsAbs(path) {
return nil, fmt.Errorf("%s must be absolute path, for %s", path, name)
}
containerDir := filepath.Dir(path)
file := filepath.Base(path)
if file == "" {
return nil, fmt.Errorf("%s must be a file path, not directory, for %s", path, name)
}
hostDir := p.hostDirOf(containerDir, mounts)
if hostDir == "" {
return nil, fmt.Errorf("in log %s: %s is not mount on host", name, path)
}
cfg := &LogConfig{
Name: name,
ContainerDir: containerDir,
Format: format.value,
File: file,
Tags: tagMap,
HostDir: filepath.Join(p.baseDir, hostDir),
FormatConfig: formatConfig,
Target: target,
}
if formatConfig["time_key"] == "" {
cfg.EstimateTime = true
cfg.FormatConfig["time_key"] = "time"
}
return cfg, nil
}
// LogInfoNode node info
type LogInfoNode struct {
value string
children map[string]*LogInfoNode
}
func newLogInfoNode(value string) *LogInfoNode {
return &LogInfoNode{
value: value,
children: make(map[string]*LogInfoNode),
}
}
func (node *LogInfoNode) insert(keys []string, value string) error {
if len(keys) == 0 {
return nil
}
key := keys[0]
if len(keys) > 1 {
if child, ok := node.children[key]; ok {
child.insert(keys[1:], value)
} else {
return fmt.Errorf("%s has no parent node", key)
}
} else {
child := newLogInfoNode(value)
node.children[key] = child
}
return nil
}
func (node *LogInfoNode) get(key string) string {
if child, ok := node.children[key]; ok {
return child.value
}
return ""
}
func (p *Pilot) getLogConfigs(jsonLogPath string, mounts []types.MountPoint, labels map[string]string) ([]*LogConfig, error) {
var ret []*LogConfig
mountsMap := make(map[string]types.MountPoint)
for _, mount := range mounts {
mountsMap[mount.Destination] = mount
}
var labelNames []string
//sort keys
for k := range labels {
labelNames = append(labelNames, k)
}
customConfigs := make(map[string]string)
sort.Strings(labelNames)
root := newLogInfoNode("")
for _, k := range labelNames {
for _, prefix := range p.logPrefix {
customConfig := fmt.Sprintf(ENV_SERVICE_LOGS_CUSTOME_CONFIG_TEMPL, prefix)
if customConfig == k {
configs := strings.Split(labels[k], "\n")
for _, c := range configs {
if c == "" {
continue
}
customLabel := strings.SplitN(c, "=", 2)
customConfigs[customLabel[0]] = customLabel[1]
}
continue
}
serviceLogs := fmt.Sprintf(LABEL_SERVICE_LOGS_TEMPL, prefix)
if !strings.HasPrefix(k, serviceLogs) || strings.Count(k, ".") == 1 {
continue
}
logLabel := strings.TrimPrefix(k, serviceLogs)
if err := root.insert(strings.Split(logLabel, "."), labels[k]); err != nil {
return nil, err
}
}
}
for name, node := range root.children {
logConfig, err := p.parseLogConfig(name, node, jsonLogPath, mountsMap)
if err != nil {
return nil, err
}
CustomConfig(name, customConfigs, logConfig)
ret = append(ret, logConfig)
}
return ret, nil
}
func (p *Pilot) exists(containId string) bool {
if _, err := os.Stat(p.piloter.GetConfPath(containId)); os.IsNotExist(err) {
return false
}
return true
}
func (p *Pilot) render(containerId string, container map[string]string, configList []*LogConfig) (string, error) {
for _, config := range configList {
log.Infof("logs: %s = %v", containerId, config)
}
output := os.Getenv(ENV_FLUENTD_OUTPUT)
if p.piloter.Name() == PILOT_FILEBEAT {
output = os.Getenv(ENV_FILEBEAT_OUTPUT)
}
if output == "" {
output = os.Getenv(ENV_LOGGING_OUTPUT)
}
var buf bytes.Buffer
context := map[string]interface{}{
"containerId": containerId,
"configList": configList,
"container": container,
"output": output,
}
if err := p.templ.Execute(&buf, context); err != nil {
return "", err
}
return buf.String(), nil
}
func (p *Pilot) reload() error {
p.mutex.Lock()
defer p.mutex.Unlock()
log.Infof("Reload %s", p.piloter.Name())
interval := time.Now().Sub(p.lastReload)
time.Sleep(30*time.Second - interval)
log.Info("Start reloading")
err := p.piloter.Reload()
p.lastReload = time.Now()
return err
}
func (p *Pilot) createVolumeSymlink(containerJSON *types.ContainerJSON) error {
if !p.createSymlink {
return nil
}
linkBaseDir := path.Join(p.baseDir, SYMLINK_LOGS_BASE)
if _, err := os.Stat(linkBaseDir); err != nil && os.IsNotExist(err) {
if err := os.MkdirAll(linkBaseDir, 0777); err != nil {
log.Errorf("create %s error: %v", linkBaseDir, err)
}
}
applicationInfo := container(containerJSON)
containerLinkBaseDir := path.Join(linkBaseDir, applicationInfo["docker_app"],
applicationInfo["docker_service"], containerJSON.ID)
symlinks := make(map[string]string, 0)
for _, mountPoint := range containerJSON.Mounts {
if mountPoint.Type != mount.TypeVolume {
continue
}
volume, err := p.client.VolumeInspect(context.Background(), mountPoint.Name)
if err != nil {
log.Errorf("inspect volume %s error: %v", mountPoint.Name, err)
continue
}
symlink := path.Join(containerLinkBaseDir, volume.Name)
if _, ok := symlinks[volume.Mountpoint]; !ok {
symlinks[volume.Mountpoint] = symlink
}
}
if len(symlinks) == 0 {
return nil
}
if _, err := os.Stat(containerLinkBaseDir); err != nil && os.IsNotExist(err) {
if err := os.MkdirAll(containerLinkBaseDir, 0777); err != nil {
log.Errorf("create %s error: %v", containerLinkBaseDir, err)
return err
}
}
for mountPoint, symlink := range symlinks {
err := os.Symlink(mountPoint, symlink)
if err != nil && !os.IsExist(err) {
log.Errorf("create symlink %s error: %v", symlink, err)
}
}
return nil
}
func (p *Pilot) removeVolumeSymlink(containerId string) error {
if !p.createSymlink {
return nil
}
linkBaseDir := path.Join(p.baseDir, SYMLINK_LOGS_BASE)
containerLinkDirs, _ := filepath.Glob(path.Join(linkBaseDir, "*", "*", containerId))
if containerLinkDirs == nil {
return nil
}
for _, containerLinkDir := range containerLinkDirs {
if err := os.RemoveAll(containerLinkDir); err != nil {
log.Warnf("remove error: %v", err)
}
}
return nil
}