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
384d27ea
Commit
384d27ea
authored
May 11, 2021
by
宋柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
降配
parent
dc8cd111
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
celery_stats_monitor.py
celery_stats/celery_stats_monitor.py
+6
-4
No files found.
celery_stats/celery_stats_monitor.py
View file @
384d27ea
...
...
@@ -54,7 +54,7 @@ class Parse_data:
rate
=
len_data_diff
/
per_sec
self
.
offset_dict
[
key_name
]
=
len_data
if
len_data_diff
>
0
:
use_time
=
round
(
len_data
/
rate
/
(
60
/
per_sec
)
/
6
0
,
1
)
use_time
=
round
(
len_data
/
rate
/
360
0
,
1
)
return
"{} 目前{}队列中有{}条数据,预计{}小时后处理完成"
.
format
(
time_ts
,
key_name
,
str
(
len_data
),
str
(
use_time
))
else
:
if
abs
(
rate
)
>
0
:
...
...
@@ -87,10 +87,12 @@ if __name__ == "__main__":
"mentha-tapir-answer"
:
redis_new_mimas
,
"mentha-tapir-tractate"
:
redis_new_mimas
,
}
per_sec
=
60
*
10
per_sec
=
60
*
5
last_time
=
time
.
time
()
while
True
:
now
=
datetime
.
datetime
.
now
()
if
now
.
second
%
per_sec
==
0
:
now
=
time
.
time
()
if
now
-
last_time
>=
per_sec
:
for
redis_clint_key
in
redis_clicnt_dct
:
len_list_and_send_msg
(
redis_clicnt_dct
[
redis_clint_key
],
redis_clint_key
,
rules
,
per_sec
)
last_time
=
now
time
.
sleep
(
1
)
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