[#195] Add tags support #195
No reviewers
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No project
No assignees
4 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-http-gw#195
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "KurlesHS/frostfs-http-gw:feat/add_tags_support"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
[#XX] Add tags supportto [#195] Add tags support09a2574155
to425ba2ef62
425ba2ef62
to2ab44ad555
2ab44ad555
to35e736257b
@ -23,0 +23,4 @@
tags:
- name: "app"
- name: "config"
- name: "datapath"
tags
block should be underlogger
oops...
35e736257b
to7705035e8b
We also should add config example in
config.env
(same way asHTTP_GW_SERVER_...
does)@ -582,4 +641,3 @@
return
}
if lvl, err := getLogLevel(a.cfg); err != nil {
Why do we drop this?
tagsConfig.update
doesn't reload this paramWe no longer need the "app.logLevel" variable, so there is no point in reading the "logger.level" parameter in this place. However, in "fetchLogTagsConfig", the "logger.level" parameter is used to set the logging level for tags for which a level has not been explicitly set.
Well, we still have some untagged logs e.g.
prm.SetLogger(a.log)
prmTree.SetLogger(a.log)
c.logger.Log(level, msg, fields...)
So I would expect we still can affect their appearance by SIGHUP
I decided to rename the
tagsConfig
structure tologLevelConfig
and extend it with a newlogLevel zap.AtomicLevel
variable that will be responsible for the global logging level. I also updated the code in `tagsConfig.update' to reflect this change.Probably we should do the same for other repositories to keep this logic consistent
If something goes wrong with global log level we don't update tags config
ll, err := getLogLevel(cfg)
if err != nil {
return err
}
I suppose we can use something like that:
@ -52,3 +53,3 @@
ctx context.Context
log *zap.Logger
logLevel zap.AtomicLevel
tagsConfig *tagsConfig
Can we move this filed to
appSettings
?@ -30,2 +30,4 @@
thereafter: 100
interval: 1s
tags:
- name: "app"
Can we add the same examples to
config.env
also?@ -3,1 +16,4 @@
return zap.String(TagFieldName, tag)
}
const (
Let's group logs by their tags. See https://git.frostfs.info/TrueCloudLab/frostfs-s3-lifecycler/src/branch/master/internal/logs/logs.go
7705035e8b
toa51358bb16
a51358bb16
to22d7962039
@ -983,2 +1049,3 @@
zap.Int64("new_value", softMemoryLimit),
zap.Int64("old_value", previous))
zap.Int64("old_value", previous),
logs.TagField(logs.TagApp))
Probably this should have
config
tag@ -563,3 +489,3 @@
}
l.Info(logs.SetCustomIndexPageTemplate)
l.Info(logs.SetCustomIndexPageTemplate, logs.TagField(logs.TagApp))
Maybe
config
tag is more appropriate to these three logs?@ -274,3 +274,3 @@
if err != nil {
wg.Done()
log.Warn(logs.FailedToSumbitTaskToPool, zap.Error(err))
log.Warn(logs.FailedToSumbitTaskToPool, zap.Error(err), logs.TagField(logs.TagDatapath))
Probably this can have
app
tag. Anyway we should be consistent across other componentsIn the frostfs-s3-lifecycler service, such logic has been marked with the
runtime
tag. Maybe, in order to be consistent with other components, we should add this tag here despite the fact that there are no other messages for this tag? I've tagged this message as anapp
for now.@ -387,3 +390,3 @@
unescapedKey, err := url.QueryUnescape(oidURLParam)
if err != nil {
logAndSendBucketError(c, log, err)
logAndSendBucketError(c, log, err, logs.TagExternalStorage)
Why not
datapath
?@ -60,3 +60,3 @@
bktInfo, err := h.getBucketInfo(ctx, scid, log)
if err != nil {
logAndSendBucketError(c, log, err)
logAndSendBucketError(c, log, err, logs.TagExternalStorageTree)
Why not
external_storage
ordatapath
?@ -79,3 +80,2 @@
func logAndSendBucketError(c *fasthttp.RequestCtx, log *zap.Logger, err error) {
log.Error(logs.CouldntGetBucket, zap.Error(err))
func logAndSendBucketError(c *fasthttp.RequestCtx, log *zap.Logger, err error, tag string) {
As alternative we could invoke this function like:
@ -97,0 +17,4 @@
}
const (
ServiceIsRunning = "service is running" // Info in ../../metrics/service.go
Let's drop all comments
Probably we can add other comments (just to mention for which tag every group of logs belong)
@ -97,0 +118,4 @@
)
const (
WrongObjectID = "wrong object id" // Error in ../../downloader/download.go
If this messages are unused we should drop it
@ -21,2 +22,3 @@
} else {
l.logger.Debug(logs.MultinetDialFail, zap.String("source", sourceIPString), zap.String("destination", address), zap.Error(err))
l.logger.Debug(logs.MultinetDialFail, zap.String("source", sourceIPString),
zap.String("destination", address), zap.Error(err), logs.TagField(logs.TagDatapath))
These logs should have
app
tag@ -96,6 +96,7 @@ type (
workerPoolSize int
mu sync.RWMutex
logLevelConfig *logLevelConfig
It seem we don't use
mu
to protectlogLevelConfig
so this field should be placed abovemu
22d7962039
to83d14a6b38
83d14a6b38
to1679da60b3
1679da60b3
tod97dd52939
LGTM
d97dd52939
toeb5d1b40d6
New commits pushed, approval review dismissed automatically according to repository settings
eb5d1b40d6
toec629ffb65
ec629ffb65
to436004ae0b
@ -331,2 +335,4 @@
cnrID, err := h.resolveContainer(ctx, containerName)
if err != nil {
log.Error(logs.CouldNotResolveContainerID, zap.Error(err), zap.String("cnrName", containerName),
logs.TagField(logs.TagDatapath))
The
datapath
tag is used because bothDNS
andNNS
resolvers can be used here.436004ae0b
to57886d562f
@ -31,1 +31,4 @@
interval: 1s
tags:
- name: app
- name: config
We don't have this section anymore
57886d562f
to6ca273e3ee
New commits pushed, approval review dismissed automatically according to repository settings
@ -187,0 +212,4 @@
* `app` - common application logs (enabled by default).
* `datapath` - main logic of application (enabled by default).
* `external_storage` - external interaction with storage node.
* `external_storage_tree` - external interaction with tree service in storage node.
We should also mention the default tags here
6613a9f06c
to6f94727ab6
New commits pushed, approval review dismissed automatically according to repository settings