File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
grafana/provisioning/datasources
mc-o11y-manager/src/main/java/com/mcmp/o11ymanager/manager/controller Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ apiVersion : 1
2+
3+ datasources :
4+ - name : Tempo
5+ type : tempo
6+ access : proxy
7+ url : http://mc-observability-tempo:3200
8+ version : 1
9+ basicAuth : false
Original file line number Diff line number Diff line change @@ -99,17 +99,17 @@ public Object getLLMSessionHistory(@PathVariable String sessionId) {
9999 return insightPort .getLLMSessionHistory (sessionId );
100100 }
101101
102- @ GetMapping ("/llm/apikeys " )
102+ @ GetMapping ("/llm/api-keys " )
103103 public Object getLLMApiKeys (String provider ) {
104104 return insightPort .getLLMApiKeys (provider );
105105 }
106106
107- @ PostMapping ("/llm/apikeys " )
107+ @ PostMapping ("/llm/api-keys " )
108108 public Object postLLMApiKeys (@ RequestBody Object body ) {
109109 return insightPort .postLLMApiKeys (body );
110110 }
111111
112- @ DeleteMapping ("/llm/apiKeys " )
112+ @ DeleteMapping ("/llm/api-Keys " )
113113 public Object deleteLLMApiKeys (@ RequestParam String provider ) {
114114 return insightPort .deleteLLMApiKeys (provider );
115115 }
You can’t perform that action at this time.
0 commit comments