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
linlong
8 years ago
Commit
4bb44d648fb642274451da975baff172fd980737
1 parent
14fbefc3
memcached页面增加更新时间
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletions
monitor-ui-ctrl/src/main/java/com/ui/ctrl/MemcachedMonitorCtrl.java
monitor-ui-web/src/main/webapp/jsp/memcached/memcachedMonitor.jsp
monitor-ui-ctrl/src/main/java/com/ui/ctrl/MemcachedMonitorCtrl.java
View file @
4bb44d6
...
...
@@ -5,6 +5,7 @@ import com.ui.model.BaseResponse;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.servlet.ModelAndView
;
...
...
@@ -37,4 +38,16 @@ public class MemcachedMonitorCtrl {
return
baseResponse
;
}
/**
* 查询所有的twemproxy 与 独立 redis的信息
*
* @return
*/
@RequestMapping
(
value
=
"/updateTime"
)
// @ResponseBody
public
String
queryUpdateTime
()
{
String
updateTime
=
httpRestClient
.
defaultGet
(
"/memcachedMonitor/updateTime"
,
String
.
class
);
updateTime
=
updateTime
.
substring
(
10
,
updateTime
.
length
()-
4
);
return
updateTime
;
}
}
...
...
monitor-ui-web/src/main/webapp/jsp/memcached/memcachedMonitor.jsp
View file @
4bb44d6
...
...
@@ -73,7 +73,7 @@
<div
class=
"container-fluid"
>
<div
class=
"widget-box"
>
<div
class=
"widget-title"
>
<h5>
Memcached状态
预览
<font
color=
"red"
>
(最近2分钟)
</font>
</h5>
<h5>
Memcached状态
(
<span
id=
"updateTime"
></span>
更新)
</h5>
</div>
</div>
...
...
@@ -96,6 +96,15 @@
<script
type=
"text/javascript"
>
$
(
function
()
{
$
.
ajax
({
url
:
contextPath
+
"memcachedMonitor/updateTime"
,
type
:
'POST'
,
//请求成功后触发
success
:
function
(
data
)
{
$
(
"#updateTime"
).
text
(
data
);
}
});
$
(
"#tMemTable"
).
table
({
url
:
contextPath
+
"memcachedMonitor/allMemcached"
,
striped
:
true
,
...
...
Please
register
or
login
to post a comment