Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
M
meta_base_code
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黎涛
meta_base_code
Commits
8f6c159a
Commit
8f6c159a
authored
Dec 09, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
f14045ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
es_status.py
celery_stats/es_status.py
+3
-3
No files found.
celery_stats/es_status.py
View file @
8f6c159a
...
...
@@ -88,13 +88,13 @@ def parse_cluster_stats(data):
def
parse_node_stats
(
data
):
res_str
=
""
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
young
=
data
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
young
_gc
=
data
if
cpu_1m
>=
cpu_top
or
cpu_5m
>=
cpu_top
or
cpu_15m
>=
cpu_top
:
res_str
+=
"{name}节点CPU使用率预警 1m {cpu_1m} 5m {cpu_5m} 15m {cpu_15m}
\n
"
\
"目前 query_current为{query_current} fetch_current为{fetch_current} yo
ng_gc为{yo
ng_gc}"
.
format
(
cpu_1m
=
str
(
int
(
cpu_1m
*
100
))
+
"
%
"
,
name
=
node_name
,
"目前 query_current为{query_current} fetch_current为{fetch_current} yo
ung_gc为{you
ng_gc}"
.
format
(
cpu_1m
=
str
(
int
(
cpu_1m
*
100
))
+
"
%
"
,
name
=
node_name
,
cpu_5m
=
str
(
int
(
cpu_5m
*
100
))
+
"
%
"
,
cpu_15m
=
str
(
int
(
cpu_15m
*
100
))
+
"
%
"
,
query_current
=
str
(
query_current
),
fetch_current
=
str
(
fetch_current
),
young_gc
=
str
(
young
))
query_current
=
str
(
query_current
),
fetch_current
=
str
(
fetch_current
),
young_gc
=
str
(
young
_gc
))
return
res_str
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment