mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-25 00:50:30 +00:00
update logs
This commit is contained in:
parent
a67ebff0f4
commit
d75bb0b1c2
5 changed files with 19 additions and 7 deletions
|
@ -6,4 +6,5 @@ requests
|
||||||
GitPython
|
GitPython
|
||||||
PyJWT
|
PyJWT
|
||||||
click
|
click
|
||||||
python-dotenv
|
python-dotenv
|
||||||
|
PyYAML
|
|
@ -1,7 +1,7 @@
|
||||||
[nginx_proxy_manager]
|
[nginx_proxy_manager]
|
||||||
base_url = http://websoft9-proxy:81/api
|
base_url = http://websoft9-proxy:81/api
|
||||||
user_name = admin@mydomain.com
|
user_name = admin@mydomain.com
|
||||||
user_pwd = Csj18AHvtBWzuIFA
|
user_pwd = cPCB9bSsX91ljxCQ
|
||||||
nike_name = admin
|
nike_name = admin
|
||||||
listen_port = 80
|
listen_port = 80
|
||||||
|
|
||||||
|
@ -9,15 +9,15 @@ listen_port = 80
|
||||||
base_url = http://websoft9-git:3000/api/v1
|
base_url = http://websoft9-git:3000/api/v1
|
||||||
user_name = websoft9
|
user_name = websoft9
|
||||||
user_email = admin@mydomain.com
|
user_email = admin@mydomain.com
|
||||||
user_pwd = vcwIB64zPslu
|
user_pwd = KhuXTC7idguL
|
||||||
|
|
||||||
[portainer]
|
[portainer]
|
||||||
base_url = http://websoft9-deployment:9000/api
|
base_url = http://websoft9-deployment:9000/api
|
||||||
user_name = admin
|
user_name = admin
|
||||||
user_pwd = L@BI75LJ7Shi7oLA
|
user_pwd = yzJZ938iOoDG
|
||||||
|
|
||||||
[api_key]
|
[api_key]
|
||||||
key = bd3d92e0f52e299d014c38f8aac7f730602a8a7a41adbee77eddf07b391b9d31
|
key = cc9223b3055471a6f4f9654e08371816a9637ba1c57383617b0684b92ac7b2f4
|
||||||
|
|
||||||
[domain]
|
[domain]
|
||||||
wildcard_domain =
|
wildcard_domain =
|
||||||
|
@ -29,4 +29,5 @@ port = 9000
|
||||||
keys =
|
keys =
|
||||||
|
|
||||||
[favorite_apps]
|
[favorite_apps]
|
||||||
keys =
|
keys =
|
||||||
|
|
||||||
|
|
|
@ -69,6 +69,8 @@ class Logger(metaclass=SingletonMeta):
|
||||||
file_handler.setFormatter(formatter)
|
file_handler.setFormatter(formatter)
|
||||||
file_handler.setLevel(logging.DEBUG)
|
file_handler.setLevel(logging.DEBUG)
|
||||||
|
|
||||||
|
#logger.propagate = False
|
||||||
|
|
||||||
logger.addHandler(file_handler)
|
logger.addHandler(file_handler)
|
||||||
return logger
|
return logger
|
||||||
|
|
||||||
|
|
|
@ -152,7 +152,6 @@ def check_apps_number(endpointId:int):
|
||||||
# Get the official and status is 1(Active) or 3(Installing) apps
|
# Get the official and status is 1(Active) or 3(Installing) apps
|
||||||
app_official = [app for app in appInstallApps if app.app_official == True and (app.status == 1 or app.status == 3)]
|
app_official = [app for app in appInstallApps if app.app_official == True and (app.status == 1 or app.status == 3)]
|
||||||
|
|
||||||
logger.access(f"app_official:{len(app_official)}")
|
|
||||||
if len(app_official) >= int(max_apps):
|
if len(app_official) >= int(max_apps):
|
||||||
logger.error(f"Exceed the maximum number of apps")
|
logger.error(f"Exceed the maximum number of apps")
|
||||||
raise CustomException(
|
raise CustomException(
|
||||||
|
|
9
apphub/src/utils/log_filters.py
Normal file
9
apphub/src/utils/log_filters.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
import logging
|
||||||
|
import re
|
||||||
|
|
||||||
|
class IgnoreSpecificRequestsFilter(logging.Filter):
|
||||||
|
def filter(self, record):
|
||||||
|
message = record.getMessage()
|
||||||
|
if re.search(r"GET\s+/api/apps\s", message):
|
||||||
|
return False
|
||||||
|
return True
|
Loading…
Reference in a new issue