@@ -872,7 +872,7 @@ func (i *Ingester) Push(ctx context.Context, req *logproto.PushRequest) (*logpro
872
872
873
873
// Set profiling tags
874
874
defer pprof .SetGoroutineLabels (ctx )
875
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "write" , "tenant" , instanceID ))
875
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "write" ))
876
876
pprof .SetGoroutineLabels (ctx )
877
877
878
878
instance , err := i .GetOrCreateInstance (instanceID )
@@ -947,7 +947,7 @@ func (i *Ingester) Query(req *logproto.QueryRequest, queryServer logproto.Querie
947
947
948
948
// Set profiling tags
949
949
defer pprof .SetGoroutineLabels (ctx )
950
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "log" , "tenant" , instanceID ))
950
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "log" ))
951
951
pprof .SetGoroutineLabels (ctx )
952
952
953
953
instance , err := i .GetOrCreateInstance (instanceID )
@@ -1014,7 +1014,7 @@ func (i *Ingester) QuerySample(req *logproto.SampleQueryRequest, queryServer log
1014
1014
1015
1015
// Set profiling tags
1016
1016
defer pprof .SetGoroutineLabels (ctx )
1017
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "metric" , "tenant" , instanceID ))
1017
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "metric" ))
1018
1018
pprof .SetGoroutineLabels (ctx )
1019
1019
1020
1020
instance , err := i .GetOrCreateInstance (instanceID )
@@ -1090,7 +1090,7 @@ func (i *Ingester) getChunkIDs(ctx context.Context, req *logproto.GetChunkIDsReq
1090
1090
1091
1091
// Set profiling tags
1092
1092
defer pprof .SetGoroutineLabels (ctx )
1093
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "chunkIDs" , "tenant" , orgID ))
1093
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "chunkIDs" ))
1094
1094
pprof .SetGoroutineLabels (ctx )
1095
1095
1096
1096
asyncStoreMaxLookBack := i .asyncStoreMaxLookBack ()
@@ -1139,7 +1139,7 @@ func (i *Ingester) Label(ctx context.Context, req *logproto.LabelRequest) (*logp
1139
1139
1140
1140
// Set profiling tags
1141
1141
defer pprof .SetGoroutineLabels (ctx )
1142
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "labels" , "tenant" , userID ))
1142
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "labels" ))
1143
1143
pprof .SetGoroutineLabels (ctx )
1144
1144
1145
1145
instance , err := i .GetOrCreateInstance (userID )
@@ -1220,7 +1220,7 @@ func (i *Ingester) series(ctx context.Context, req *logproto.SeriesRequest) (*lo
1220
1220
1221
1221
// Set profiling tags
1222
1222
defer pprof .SetGoroutineLabels (ctx )
1223
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "series" , "tenant" , instanceID ))
1223
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "series" ))
1224
1224
pprof .SetGoroutineLabels (ctx )
1225
1225
1226
1226
instance , err := i .GetOrCreateInstance (instanceID )
@@ -1240,7 +1240,7 @@ func (i *Ingester) GetStats(ctx context.Context, req *logproto.IndexStatsRequest
1240
1240
1241
1241
// Set profiling tags
1242
1242
defer pprof .SetGoroutineLabels (ctx )
1243
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "stats" , "tenant" , user ))
1243
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "stats" ))
1244
1244
pprof .SetGoroutineLabels (ctx )
1245
1245
1246
1246
instance , err := i .GetOrCreateInstance (user )
@@ -1302,7 +1302,7 @@ func (i *Ingester) GetVolume(ctx context.Context, req *logproto.VolumeRequest) (
1302
1302
1303
1303
// Set profiling tags
1304
1304
defer pprof .SetGoroutineLabels (ctx )
1305
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "volume" , "tenant" , user ))
1305
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "volume" ))
1306
1306
pprof .SetGoroutineLabels (ctx )
1307
1307
1308
1308
instance , err := i .GetOrCreateInstance (user )
@@ -1503,7 +1503,7 @@ func (i *Ingester) getDetectedLabels(ctx context.Context, req *logproto.Detected
1503
1503
1504
1504
// Set profiling tags
1505
1505
defer pprof .SetGoroutineLabels (ctx )
1506
- ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "detectedLabels" , "tenant" , userID ))
1506
+ ctx = pprof .WithLabels (ctx , pprof .Labels ("path" , "read" , "type" , "detectedLabels" ))
1507
1507
pprof .SetGoroutineLabels (ctx )
1508
1508
1509
1509
instance , err := i .GetOrCreateInstance (userID )
0 commit comments