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
782cfe67
Commit
782cfe67
authored
Nov 17, 2021
by
宋柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
监控新的美购同步队列
parent
abccff50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
celery_stats_monitor.py
celery_stats/celery_stats_monitor.py
+7
-3
send_msg.py
send_msg_to_dingding/send_msg.py
+2
-2
No files found.
celery_stats/celery_stats_monitor.py
View file @
782cfe67
...
...
@@ -8,6 +8,7 @@ import redis
from
send_msg_to_dingding.send_msg
import
send_msg_to_dingtalk
import
datetime
,
time
token_dict
=
{
'gaia-dbmw'
:
{
'secret'
:
"SECba5212dadad3794b3da51c903c828f60ab8342897af2675f1f48fceb8858eb5c"
,
'access_token'
:
"df546521ce46bfb35025ca266efc2d7e8d708d1c8ada9b15ae487786ad06ad12"
},
...
...
@@ -23,6 +24,8 @@ token_dict = {
'access_token'
:
"ca4ca402653c7fe6011c18ff5ac385b2b0f4ab6cab61c545f09f4d8830db6870"
},
"graces-es6-tapir-doctor"
:
{
'secret'
:
"SEC65d8ac5f9c92677cf0c98624810abc407cf433fd4f2713649dc41310b4658fb5"
,
'access_token'
:
"ca4ca402653c7fe6011c18ff5ac385b2b0f4ab6cab61c545f09f4d8830db6870"
},
"graces-es6-tapir-merchant"
:
{
'secret'
:
"SEC62645fa89b9a7b910624be1e84bd8fc1a4d59ac79c45f258ab4cee3114fe40ca"
,
'access_token'
:
"55e2076c095f67939cda6c4e568dddf17fc07977195014696f225e4f66639715"
},
"mentha-tapir-answer"
:
{
'secret'
:
"SECba5212dadad3794b3da51c903c828f60ab8342897af2675f1f48fceb8858eb5c"
,
'access_token'
:
"df546521ce46bfb35025ca266efc2d7e8d708d1c8ada9b15ae487786ad06ad12"
},
"graces-tapir-card"
:
{
'secret'
:
"SECa54a42411200fd7c642921c35b7d0fe5a71c93e7305091413292bb6cc6cb318c"
,
...
...
@@ -78,10 +81,10 @@ def len_list_and_send_msg(redis_clint, key_name, rules, per_sec=10):
if
str_res
:
if
key_name
in
[
"graces-tapir-card"
,
"graces-es6-tapir-lbs"
]:
send_msg_to_dingtalk
(
str_res
,
mobiles
=
[
"19566173658"
],
secret
=
token_dict
[
key_name
][
'secret'
],
access_token
=
token_dict
[
key_name
][
'access_token'
])
access_token
=
token_dict
[
key_name
][
'access_token'
]
,
isAtAll
=
True
)
else
:
send_msg_to_dingtalk
(
str_res
,
mobiles
=
[
"13552564745"
,
"17813268931"
],
secret
=
token_dict
[
key_name
][
'secret'
],
access_token
=
token_dict
[
key_name
][
'access_token'
])
access_token
=
token_dict
[
key_name
][
'access_token'
]
,
isAtAll
=
True
)
if
__name__
==
"__main__"
:
...
...
@@ -95,12 +98,13 @@ if __name__ == "__main__":
"graces-es6-tapir-service"
:
redis_new_gaia
,
"graces-es6-tapir-service_pre"
:
redis_new_gaia
,
"graces-es6-tapir-doctor"
:
redis_new_gaia
,
"graces-es6-tapir-merchant"
:
redis_new_gaia
,
"mentha-tapir-answer"
:
redis_new_mimas
,
"graces-tapir-card"
:
redis_new_gaia
,
"graces-es6-tapir-lbs"
:
redis_new_gaia
,
"mentha-tapir-tractate"
:
redis_new_mimas
,
}
per_sec
=
60
*
5
per_sec
=
60
last_time
=
time
.
time
()
while
True
:
now
=
time
.
time
()
...
...
send_msg_to_dingding/send_msg.py
View file @
782cfe67
...
...
@@ -12,7 +12,7 @@ import json
import
requests
def
send_msg_to_dingtalk
(
msg
,
mobiles
=
[],
access_token
=
""
,
secret
=
""
):
def
send_msg_to_dingtalk
(
msg
,
mobiles
=
[],
access_token
=
""
,
secret
=
""
,
isAtAll
=
False
):
try
:
# secret = "SECba5212dadad3794b3da51c903c828f60ab8342897af2675f1f48fceb8858eb5c"
timestamp
=
str
(
round
(
time
.
time
()
*
1000
))
...
...
@@ -25,7 +25,7 @@ def send_msg_to_dingtalk(msg, mobiles=[],access_token="",secret=""):
headers
=
{
"Content-Type"
:
"application/json"
}
data
=
{
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
msg
}}
if
mobiles
:
data
=
{
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
msg
},
"at"
:
{
"atMobiles"
:
mobiles
,
"isAtAll"
:
False
}}
data
=
{
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
msg
},
"at"
:
{
"atMobiles"
:
mobiles
,
"isAtAll"
:
isAtAll
}}
json_data
=
json
.
dumps
(
data
)
# "https://oapi.dingtalk.com/robot/send?access_token=df546521ce46bfb35025ca266efc2d7e8d708d1c8ada9b15ae487786ad06ad12&sign={}×tamp={}"
url
=
"https://oapi.dingtalk.com/robot/send?access_token={}&sign={}×tamp={}"
.
format
(
access_token
,
...
...
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