-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
extension.go
95 lines (82 loc) · 2.84 KB
/
extension.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
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package filestorage // import "github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage/filestorage"
import (
"context"
"fmt"
"path/filepath"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/extension"
"go.opentelemetry.io/collector/extension/experimental/storage"
"go.uber.org/zap"
)
type localFileStorage struct {
cfg *Config
logger *zap.Logger
}
// Ensure this storage extension implements the appropriate interface
var _ storage.Extension = (*localFileStorage)(nil)
func newLocalFileStorage(logger *zap.Logger, config *Config) (extension.Extension, error) {
return &localFileStorage{
cfg: config,
logger: logger,
}, nil
}
// Start does nothing
func (lfs *localFileStorage) Start(context.Context, component.Host) error {
return nil
}
// Shutdown will close any open databases
func (lfs *localFileStorage) Shutdown(context.Context) error {
// TODO clean up data files that did not have a client
// and are older than a threshold (possibly configurable)
return nil
}
// GetClient returns a storage client for an individual component
func (lfs *localFileStorage) GetClient(ctx context.Context, kind component.Kind, ent component.ID, name string) (storage.Client, error) {
var rawName string
if name == "" {
rawName = fmt.Sprintf("%s_%s_%s", kindString(kind), ent.Type(), ent.Name())
} else {
rawName = fmt.Sprintf("%s_%s_%s_%s", kindString(kind), ent.Type(), ent.Name(), name)
}
// TODO sanitize rawName
absoluteName := filepath.Join(lfs.cfg.Directory, rawName)
client, err := newClient(lfs.logger, absoluteName, lfs.cfg.Timeout, lfs.cfg.Compaction)
if err != nil {
return nil, err
}
// return if compaction is not required
if lfs.cfg.Compaction.OnStart {
compactionErr := client.Compact(lfs.cfg.Compaction.Directory, lfs.cfg.Timeout, lfs.cfg.Compaction.MaxTransactionSize)
if compactionErr != nil {
lfs.logger.Error("compaction on start failed", zap.Error(compactionErr))
}
}
return client, nil
}
func kindString(k component.Kind) string {
switch k {
case component.KindReceiver:
return "receiver"
case component.KindProcessor:
return "processor"
case component.KindExporter:
return "exporter"
case component.KindExtension:
return "extension"
default:
return "other" // not expected
}
}