Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ops
/
monitor-ui
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
qinchao
7 years ago
Commit
27f85cfa67f86261d076e735541ad8f728628e46
1 parent
47ac2c66
添加方法
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
monitor-ui-ctrl/src/main/java/com/ui/ctrl/RabbitMonitorCtrl.java
monitor-ui-ctrl/src/main/java/com/ui/ctrl/RabbitMonitorCtrl.java
View file @
27f85cf
...
...
@@ -64,6 +64,12 @@ public class RabbitMonitorCtrl {
return
response
;
}
@RequestMapping
(
value
=
"/allRabbitMqInMap"
)
public
BaseResponse
allRabbitMqInMap
(
RabbitInfoReq
request
)
{
BaseResponse
response
=
httpRestClient
.
defaultPost
(
"/middleware/rabbitmq/allRabbitMqInMap"
,
request
,
BaseResponse
.
class
);
return
response
;
}
@RequestMapping
(
value
=
"/fixAlertHigh"
)
public
BaseResponse
fixAlertHigh
(
RabbitAlertReq
request
)
{
BaseResponse
response
=
httpRestClient
.
defaultPost
(
"/middleware/rabbitmq/fixAlertHigh"
,
request
,
BaseResponse
.
class
);
...
...
Please
register
or
login
to post a comment