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 aaa379b commit 820b271Copy full SHA for 820b271
src/app/core/services/metric.service.ts
@@ -60,7 +60,7 @@ class MetricService {
60
}
61
62
getInfo(agent) {
63
- let url = API + (agent ? "/node/info" : "server");
+ let url = API + (agent ? "node/info" : "server");
64
return this.http
65
.get(url, this.getOptions())
66
.toPromise()
@@ -79,7 +79,7 @@ class MetricService {
79
});
80
81
threadDumps() {
82
- let url = API + `/node/threadDump`;
+ let url = API + "node/threadDump";
83
84
85
0 commit comments