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
d8eeaee4
Commit
d8eeaee4
authored
Dec 09, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
bbd74f2f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
5 deletions
+22
-5
es_status.py
celery_stats/es_status.py
+22
-5
No files found.
celery_stats/es_status.py
View file @
d8eeaee4
...
@@ -29,6 +29,7 @@ data_dict = {}
...
@@ -29,6 +29,7 @@ data_dict = {}
memory_used_rate_top
=
0.01
memory_used_rate_top
=
0.01
fs_free_rate_top
=
0.01
fs_free_rate_top
=
0.01
cpu_top
=
0.1
cpu_top
=
0.1
search_queue_max
=
0
secret
=
'SECbbfd6b7403869cf8a31e63e2d623378bd8a55b5a31083fad6421ee817794f485'
secret
=
'SECbbfd6b7403869cf8a31e63e2d623378bd8a55b5a31083fad6421ee817794f485'
access_token
=
'6eb687358606347cef617237cddab6a80e2f5981b46fe04950a96152e387f35c'
access_token
=
'6eb687358606347cef617237cddab6a80e2f5981b46fe04950a96152e387f35c'
...
@@ -45,7 +46,7 @@ def get_cluster_stats(ip):
...
@@ -45,7 +46,7 @@ def get_cluster_stats(ip):
memory_used_rate
=
round
(
memory_used
/
memory_total
,
4
)
memory_used_rate
=
round
(
memory_used
/
memory_total
,
4
)
fs_available
=
res_json
[
"nodes"
][
"fs"
]
.
get
(
"available_in_bytes"
)
fs_available
=
res_json
[
"nodes"
][
"fs"
]
.
get
(
"available_in_bytes"
)
fs_total
=
res_json
[
"nodes"
][
"fs"
]
.
get
(
"total_in_bytes"
)
fs_total
=
res_json
[
"nodes"
][
"fs"
]
.
get
(
"total_in_bytes"
)
fs_free_rate
=
round
(
fs_available
/
fs_total
,
4
)
fs_free_rate
=
round
(
1
-
fs_available
/
fs_total
,
4
)
return
stats
,
timestamp
,
memory_used_rate
,
fs_free_rate
return
stats
,
timestamp
,
memory_used_rate
,
fs_free_rate
...
@@ -76,10 +77,11 @@ def get_node_status(ip):
...
@@ -76,10 +77,11 @@ def get_node_status(ip):
young_gc_ms
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_time_in_millis'
]
young_gc_ms
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_time_in_millis'
]
old_gc
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_count'
]
old_gc
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_count'
]
old_gc_ms
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_time_in_millis'
]
old_gc_ms
=
data
[
"jvm"
][
"gc"
][
"collectors"
][
'young'
][
'collection_time_in_millis'
]
search_thread_pool
=
data
[
"thread_pool"
][
"search"
]
young_gc_per_ms
=
int
(
young_gc_ms
/
young_gc
)
young_gc_per_ms
=
int
(
young_gc_ms
/
young_gc
)
old_gc_ms
=
int
(
old_gc_ms
/
old_gc
)
old_gc_ms
=
int
(
old_gc_ms
/
old_gc
)
yield
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
\
yield
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
\
young_gc_per_ms
,
old_gc
,
old_gc_ms
young_gc_per_ms
,
old_gc
,
old_gc_ms
,
search_thread_pool
def
parse_cluster_stats
(
data
):
def
parse_cluster_stats
(
data
):
...
@@ -95,9 +97,20 @@ def parse_cluster_stats(data):
...
@@ -95,9 +97,20 @@ def parse_cluster_stats(data):
def
parse_node_stats
(
data
):
def
parse_node_stats
(
data
):
res_str
=
""
res_str
=
""
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
young_gc
,
\
node_name
,
ip
,
query_time
,
query_current
,
fetch_current
,
cpu_percent
,
cpu_1m
,
cpu_5m
,
cpu_15m
,
young_gc
,
\
old_gc
,
old_gc_ms
=
data
old_gc
,
old_gc_ms
,
search_thread_pool
=
data
old_gc_last
=
data_dict
.
get
(
'old_gc'
,
old_gc
)
if
not
data_dict
.
get
(
node_name
):
old_gc_ms_last
=
data_dict
.
get
(
'old_gc_ms'
,
old_gc_ms
)
data_dict
[
node_name
]
=
{}
old_gc_last
=
data_dict
[
node_name
]
.
get
(
'old_gc'
,
old_gc
)
old_gc_ms_last
=
data_dict
[
node_name
]
.
get
(
'old_gc_ms'
,
old_gc_ms
)
queue_last
=
data_dict
[
node_name
]
.
get
(
'queue'
,
0
)
rejected_last
=
data_dict
[
node_name
]
.
get
(
'queue'
,
0
)
if
search_thread_pool
[
'queue'
]
>=
search_queue_max
:
res_str
+=
'{name}节点 search queue 目前为
%
s
\n
'
%
str
(
search_thread_pool
[
'queue'
])
if
search_thread_pool
[
'rejected'
]
-
rejected_last
>=
0
:
res_str
+=
'{name}节点 search rejected 目前为
%
s
\n
'
%
str
(
search_thread_pool
[
'queue'
])
if
old_gc
-
old_gc_last
>
0
:
if
old_gc
-
old_gc_last
>
0
:
res_str
+=
"{name}节点 old_gc增长中 old_gc为{old_gc} 平均{old_gc_ms}ms
\n
"
.
format
(
name
=
node_name
,
old_gc
=
str
(
old_gc
),
res_str
+=
"{name}节点 old_gc增长中 old_gc为{old_gc} 平均{old_gc_ms}ms
\n
"
.
format
(
name
=
node_name
,
old_gc
=
str
(
old_gc
),
old_gc_ms
=
str
(
old_gc_ms
))
old_gc_ms
=
str
(
old_gc_ms
))
...
@@ -108,6 +121,10 @@ def parse_node_stats(data):
...
@@ -108,6 +121,10 @@ def parse_node_stats(data):
cpu_5m
=
str
(
int
(
cpu_5m
*
100
))
+
"
%
"
,
cpu_5m
=
str
(
int
(
cpu_5m
*
100
))
+
"
%
"
,
cpu_15m
=
str
(
int
(
cpu_15m
*
100
))
+
"
%
"
,
cpu_15m
=
str
(
int
(
cpu_15m
*
100
))
+
"
%
"
,
query_current
=
str
(
query_current
),
fetch_current
=
str
(
fetch_current
),
young_gc
=
str
(
young_gc
))
query_current
=
str
(
query_current
),
fetch_current
=
str
(
fetch_current
),
young_gc
=
str
(
young_gc
))
data_dict
[
node_name
][
'old_gc'
]
=
old_gc
data_dict
[
node_name
][
'old_gc_ms_last'
]
=
old_gc_ms_last
data_dict
[
node_name
]
.
update
(
search_thread_pool
)
return
res_str
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