We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6099d6 commit 35d6f32Copy full SHA for 35d6f32
cmd/server/main.go
@@ -30,6 +30,14 @@ func main() {
30
lokiQueryTool := handlers.NewLokiQueryTool()
31
s.AddTool(lokiQueryTool, handlers.HandleLokiQuery)
32
33
+ // Add Loki label names tool
34
+ lokiLabelNamesTool := handlers.NewLokiLabelNamesTool()
35
+ s.AddTool(lokiLabelNamesTool, handlers.HandleLokiLabelNames)
36
+
37
+ // Add Loki label values tool
38
+ lokiLabelValuesTool := handlers.NewLokiLabelValuesTool()
39
+ s.AddTool(lokiLabelValuesTool, handlers.HandleLokiLabelValues)
40
41
// Get port from environment variable or use default
42
port := os.Getenv("PORT")
43
if port == "" {
0 commit comments