Skip to content

Commit 8ce321e

Browse files
fix: legacy label endpoint route (#14933)
1 parent 52c8b5c commit 8ce321e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

‎pkg/lokifrontend/frontend/v1/frontend_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
const (
4343
query = "/loki/api/v1/query_range?end=1536716898&query=sum%28container_memory_rss%29+by+%28namespace%29&start=1536673680&step=120"
4444
responseBody = `{"status":"success","data":{"resultType":"Matrix","result":[{"metric":{"foo":"bar"},"values":[[1536673680,"137"],[1536673780,"137"]]}]}}`
45-
labelQuery = `/prom/label/foo/values`
45+
labelQuery = `/api/prom/label/foo/values`
4646
)
4747

4848
func TestFrontend(t *testing.T) {

‎pkg/querier/queryrange/roundtrip.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ func getOperation(path string) string {
523523
case path == "/loki/api/v1/detected_fields":
524524
return DetectedFieldsOp
525525
case strings.HasSuffix(path, "/values"):
526-
if strings.HasPrefix(path, "/loki/api/v1/label") || strings.HasPrefix(path, "/prom/label") {
526+
if strings.HasPrefix(path, "/loki/api/v1/label") || strings.HasPrefix(path, "/api/prom/label") {
527527
return LabelNamesOp
528528
}
529529

‎pkg/querier/queryrange/roundtrip_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ func Test_getOperation(t *testing.T) {
12131213
},
12141214
{
12151215
name: "range_query_prom",
1216-
path: "/prom/query",
1216+
path: "/api/prom/query",
12171217
expectedOp: QueryRangeOp,
12181218
},
12191219
{
@@ -1228,7 +1228,7 @@ func Test_getOperation(t *testing.T) {
12281228
},
12291229
{
12301230
name: "series_query_prom",
1231-
path: "/prom/series",
1231+
path: "/api/prom/series",
12321232
expectedOp: SeriesOp,
12331233
},
12341234
{
@@ -1238,7 +1238,7 @@ func Test_getOperation(t *testing.T) {
12381238
},
12391239
{
12401240
name: "labels_query_prom",
1241-
path: "/prom/labels",
1241+
path: "/api/prom/labels",
12421242
expectedOp: LabelNamesOp,
12431243
},
12441244
{
@@ -1248,7 +1248,7 @@ func Test_getOperation(t *testing.T) {
12481248
},
12491249
{
12501250
name: "labels_query_prom",
1251-
path: "/prom/label",
1251+
path: "/api/prom/label",
12521252
expectedOp: LabelNamesOp,
12531253
},
12541254
{
@@ -1258,7 +1258,7 @@ func Test_getOperation(t *testing.T) {
12581258
},
12591259
{
12601260
name: "label_values_query_prom",
1261-
path: "/prom/label/__name__/values",
1261+
path: "/api/prom/label/__name__/values",
12621262
expectedOp: LabelNamesOp,
12631263
},
12641264
{

0 commit comments

Comments
 (0)