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
cfbedf4c
Commit
cfbedf4c
authored
Dec 09, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
8f6c159a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
es_status.py
celery_stats/es_status.py
+4
-2
No files found.
celery_stats/es_status.py
View file @
cfbedf4c
...
...
@@ -73,7 +73,9 @@ def get_node_status(ip):
cpu_5m
=
data
[
"os"
][
"cpu"
][
"load_average"
][
'5m'
]
cpu_15m
=
data
[
"os"
][
"cpu"
][
"load_average"
][
'15m'
]
young_gc
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_count'
]
yield
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
young_gc
young_gc_ms
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_time_in_millis'
]
young_gc_per_ms
=
int
(
young_gc_ms
/
young_gc
)
yield
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
young_gc_per_ms
def
parse_cluster_stats
(
data
):
...
...
@@ -91,7 +93,7 @@ def parse_node_stats(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} young_gc为{young_gc}"
.
format
(
cpu_1m
=
str
(
int
(
cpu_1m
*
100
))
+
"
%
"
,
name
=
node_name
,
"目前 query_current为{query_current} fetch_current为{fetch_current} young_gc为{young_gc}
ms
"
.
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_gc
))
...
...
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