Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
common_scripy
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
吴升宇
common_scripy
Commits
0b39a44d
Commit
0b39a44d
authored
Mar 18, 2021
by
臧远慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加zhengxing_table_list
parent
05ed68fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
data_sync_alert.py
scripies/data_sync_alert.py
+6
-6
No files found.
scripies/data_sync_alert.py
View file @
0b39a44d
...
@@ -3,7 +3,6 @@ import psycopg2
...
@@ -3,7 +3,6 @@ import psycopg2
import
pymysql
import
pymysql
from
dingtalkchatbot.chatbot
import
DingtalkChatbot
from
dingtalkchatbot.chatbot
import
DingtalkChatbot
DATABASES
=
{
DATABASES
=
{
'slave'
:
{
# mysql
'slave'
:
{
# mysql
'ENGINE'
:
'django.db.backends.mysql'
,
'ENGINE'
:
'django.db.backends.mysql'
,
...
@@ -29,11 +28,11 @@ def main():
...
@@ -29,11 +28,11 @@ def main():
pg_cursor
=
pg_db
.
cursor
()
pg_cursor
=
pg_db
.
cursor
()
zhengxing_table_list
=
[
"api_city"
,
"api_province"
,
"auth_user"
,
"api_userextra"
,
"api_userblacklist"
,
zhengxing_table_list
=
[
"api_city"
,
"api_province"
,
"auth_user"
,
"api_userextra"
,
"api_userblacklist"
,
"api_userextratocollege"
,
"api_userextratocollege"
,
"api_area"
,
"doctor_doctorstafflogin"
,
"hippo_merchant"
,
"api_doctor"
,
"api_person"
,
"social_userfollow"
,
"api_userinnerinfo"
,
"api_hospital"
,
"api_doctor"
,
"api_person"
,
"social_userfollow"
,
"api_userinnerinfo"
,
"api_hospital"
,
"statistic_device"
,
"statistic_device"
,
"hippo_chain_merchant_master"
,
"hippo_merchantrelevance"
,
"
statistic_device_user"
,
"statistic_shequdevice"
,
"statistic_device_package_info"
]
"
hippo_merchantrelevance"
,
"statistic_device_user"
,
"statistic_shequdevice"
,
"statistic_device_package_info"
]
msg
=
"数据同步监控, 有{}张表在同步
\n
"
.
format
(
len
(
zhengxing_table_list
))
msg
=
"数据同步监控, 有{}张表在同步
\n
"
.
format
(
len
(
zhengxing_table_list
))
...
@@ -57,7 +56,8 @@ def main():
...
@@ -57,7 +56,8 @@ def main():
print
(
table
,
my_num
,
pg_num
)
print
(
table
,
my_num
,
pg_num
)
if
my_num
>
pg_num
:
if
my_num
>
pg_num
:
delay_table_num
+=
1
delay_table_num
+=
1
msg
+=
"zhengxing.{}延迟的数据量为{}条记录,
\n
mysql: {},
\n
pgsql: {};
\n
"
.
format
(
table
,
my_num
-
pg_num
,
my_num
,
str
(
pg_num
))
msg
+=
"zhengxing.{}延迟的数据量为{}条记录,
\n
mysql: {},
\n
pgsql: {};
\n
"
.
format
(
table
,
my_num
-
pg_num
,
my_num
,
str
(
pg_num
))
if
delay_table_num
>
0
:
if
delay_table_num
>
0
:
msg
+=
"有{}张表存在延迟"
.
format
(
delay_table_num
)
msg
+=
"有{}张表存在延迟"
.
format
(
delay_table_num
)
...
...
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