Skip to content

Commit 639ac74

Browse files
authored
feat(logcli): Include common labels (#15611)
Adds a new `--include-common-labels` flag to logcli query, which causes the output to include all common labels. This is mostly useful with `--quiet` and `--output=jsonl` as it allows users to get structured information from Loki that has all the information that Loki can provide. --- Signed-off-by: Jonathan Lange <jml@mumak.net> Co-authored-by: Christian Haudum <christian.haudum@gmail.com>
1 parent 8ac0633 commit 639ac74

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

‎cmd/logcli/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ func newQuery(instant bool, cmd *kingpin.CmdClause) *query.Query {
597597
cmd.Flag("no-labels", "Do not print any labels").Default("false").BoolVar(&q.NoLabels)
598598
cmd.Flag("exclude-label", "Exclude labels given the provided key during output.").StringsVar(&q.IgnoreLabelsKey)
599599
cmd.Flag("include-label", "Include labels given the provided key during output.").StringsVar(&q.ShowLabelsKey)
600+
cmd.Flag("include-common-labels", "Include common labels in output for each log line.").Default("false").BoolVar(&q.IncludeCommonLabels)
600601
cmd.Flag("labels-length", "Set a fixed padding to labels").Default("0").IntVar(&q.FixedLabelsLen)
601602
cmd.Flag("store-config", "Execute the current query using a configured storage from a given Loki configuration file.").Default("").StringVar(&q.LocalConfig)
602603
cmd.Flag("remote-schema", "Execute the current query using a remote schema retrieved from the configured -schema-store.").Default("false").BoolVar(&q.FetchSchemaFromStorage)

‎pkg/logcli/index/volume.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func GetVolumeRange(q *volume.Query, c client.Client, out output.LogOutput, stat
2424
func do(q *volume.Query, rangeQuery bool, c client.Client, out output.LogOutput, statistics bool) {
2525
resp := getVolume(q, rangeQuery, c)
2626

27-
resultsPrinter := print.NewQueryResultPrinter(nil, nil, q.Quiet, 0, false)
27+
resultsPrinter := print.NewQueryResultPrinter(nil, nil, q.Quiet, 0, false, false)
2828

2929
if statistics {
3030
resultsPrinter.PrintStats(resp.Data.Statistics)

‎pkg/logcli/print/print.go

+17-12
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,22 @@ import (
1919
)
2020

2121
type QueryResultPrinter struct {
22-
ShowLabelsKey []string
23-
IgnoreLabelsKey []string
24-
Quiet bool
25-
FixedLabelsLen int
26-
Forward bool
22+
ShowLabelsKey []string
23+
IgnoreLabelsKey []string
24+
Quiet bool
25+
FixedLabelsLen int
26+
Forward bool
27+
IncludeCommonLabels bool
2728
}
2829

29-
func NewQueryResultPrinter(showLabelsKey []string, ignoreLabelsKey []string, quiet bool, fixedLabelsLen int, forward bool) *QueryResultPrinter {
30+
func NewQueryResultPrinter(showLabelsKey []string, ignoreLabelsKey []string, quiet bool, fixedLabelsLen int, forward bool, includeCommonLabels bool) *QueryResultPrinter {
3031
return &QueryResultPrinter{
31-
ShowLabelsKey: showLabelsKey,
32-
IgnoreLabelsKey: ignoreLabelsKey,
33-
Quiet: quiet,
34-
FixedLabelsLen: fixedLabelsLen,
35-
Forward: forward,
32+
ShowLabelsKey: showLabelsKey,
33+
IgnoreLabelsKey: ignoreLabelsKey,
34+
Quiet: quiet,
35+
FixedLabelsLen: fixedLabelsLen,
36+
Forward: forward,
37+
IncludeCommonLabels: includeCommonLabels,
3638
}
3739
}
3840

@@ -83,8 +85,11 @@ func (r *QueryResultPrinter) printStream(streams loghttp.Streams, out output.Log
8385
// calculate the max labels length
8486
maxLabelsLen := r.FixedLabelsLen
8587
for i, s := range streams {
88+
ls := s.Labels
8689
// Remove common labels
87-
ls := subtract(s.Labels, common)
90+
if !r.IncludeCommonLabels {
91+
ls = subtract(s.Labels, common)
92+
}
8893

8994
if len(r.ShowLabelsKey) > 0 {
9095
ls = matchLabels(true, ls, r.ShowLabelsKey)

‎pkg/logcli/query/query.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ type Query struct {
5050
NoLabels bool
5151
IgnoreLabelsKey []string
5252
ShowLabelsKey []string
53+
IncludeCommonLabels bool
5354
FixedLabelsLen int
5455
ColoredOutput bool
5556
LocalConfig string
@@ -118,7 +119,7 @@ func (q *Query) DoQuery(c client.Client, out output.LogOutput, statistics bool)
118119
out = out.WithWriter(partFile)
119120
}
120121

121-
result := print.NewQueryResultPrinter(q.ShowLabelsKey, q.IgnoreLabelsKey, q.Quiet, q.FixedLabelsLen, q.Forward)
122+
result := print.NewQueryResultPrinter(q.ShowLabelsKey, q.IgnoreLabelsKey, q.Quiet, q.FixedLabelsLen, q.Forward, q.IncludeCommonLabels)
122123

123124
if q.isInstant() {
124125
resp, err = c.Query(q.QueryString, q.Limit, q.Start, d, q.Quiet)
@@ -523,7 +524,7 @@ func (q *Query) DoLocalQuery(out output.LogOutput, statistics bool, orgID string
523524
return err
524525
}
525526

526-
resPrinter := print.NewQueryResultPrinter(q.ShowLabelsKey, q.IgnoreLabelsKey, q.Quiet, q.FixedLabelsLen, q.Forward)
527+
resPrinter := print.NewQueryResultPrinter(q.ShowLabelsKey, q.IgnoreLabelsKey, q.Quiet, q.FixedLabelsLen, q.Forward, q.IncludeCommonLabels)
527528
if statistics {
528529
resPrinter.PrintStats(result.Statistics)
529530
}

0 commit comments

Comments
 (0)