Skip to content

Commit 71d4d6a

Browse files
fix: Keep the service_name label after discovery in push.ParseLokiRequest before calculating retention and passing to the usage tracker (#14960)
Signed-off-by: Jordan Rushing <rushing.jordan@gmail.com>
1 parent e55fb14 commit 71d4d6a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

‎pkg/loghttp/push/push.go

-3
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,6 @@ func ParseLokiRequest(userID string, r *http.Request, tenantsRetention TenantsRe
264264
lb := labels.NewBuilder(lbs)
265265
lbs = lb.Set(LabelServiceName, serviceName).Labels()
266266
s.Labels = lbs.String()
267-
268-
// Remove the added label after it's added to the stream so it's not consumed by subsequent steps
269-
lbs = lb.Del(LabelServiceName).Labels()
270267
}
271268

272269
if logPushRequestStreams {

‎pkg/loghttp/push/push_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ func TestParseRequest(t *testing.T) {
221221
enableServiceDiscovery: true,
222222
expectedBytes: len("fizzbuzz"),
223223
expectedLines: 1,
224-
expectedBytesUsageTracker: map[string]float64{`{foo="bar2", job="stuff"}`: float64(len("fizzbuss"))},
224+
expectedBytesUsageTracker: map[string]float64{`{foo="bar2", job="stuff", service_name="stuff"}`: float64(len("fizzbuss"))},
225225
expectedLabels: labels.FromStrings("foo", "bar2", "job", "stuff", LabelServiceName, "stuff"),
226226
},
227227
{
@@ -232,7 +232,7 @@ func TestParseRequest(t *testing.T) {
232232
enableServiceDiscovery: true,
233233
expectedBytes: len("fizzbuzz"),
234234
expectedLines: 1,
235-
expectedBytesUsageTracker: map[string]float64{`{foo="bar2"}`: float64(len("fizzbuss"))},
235+
expectedBytesUsageTracker: map[string]float64{`{foo="bar2", service_name="unknown_service"}`: float64(len("fizzbuss"))},
236236
expectedLabels: labels.FromStrings("foo", "bar2", LabelServiceName, ServiceUnknown),
237237
},
238238
{

0 commit comments

Comments
 (0)