Merge pull request 'metric' (#74) from metric into dev
Reviewed-on: https://gitea.chocomarsh.com/self/botalka/pulls/74
This commit is contained in:
commit
8bd6dc2701
@ -22,6 +22,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- configurator
|
- configurator
|
||||||
- queues-development
|
- queues-development
|
||||||
|
- monitoring
|
||||||
environment:
|
environment:
|
||||||
STAGE: "development"
|
STAGE: "development"
|
||||||
command: mailbox
|
command: mailbox
|
||||||
@ -38,3 +39,5 @@ networks:
|
|||||||
external: true
|
external: true
|
||||||
queues-development:
|
queues-development:
|
||||||
external: true
|
external: true
|
||||||
|
monitoring:
|
||||||
|
external: true
|
||||||
|
@ -22,6 +22,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- configurator
|
- configurator
|
||||||
- queues
|
- queues
|
||||||
|
- monitoring
|
||||||
environment:
|
environment:
|
||||||
STAGE: "production"
|
STAGE: "production"
|
||||||
command: mailbox
|
command: mailbox
|
||||||
@ -38,3 +39,5 @@ networks:
|
|||||||
external: true
|
external: true
|
||||||
queues:
|
queues:
|
||||||
external: true
|
external: true
|
||||||
|
monitoring:
|
||||||
|
external: true
|
||||||
|
@ -5,4 +5,6 @@ COPY requirements.txt requirements.txt
|
|||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
COPY . .
|
COPY . .
|
||||||
ENV PYTHONUNBUFFERED 1
|
ENV PYTHONUNBUFFERED 1
|
||||||
ENTRYPOINT ["python", "main.py"]
|
RUN mkdir /usr/src/metrics
|
||||||
|
RUN chmod 777 run.sh
|
||||||
|
ENTRYPOINT ["./run.sh"]
|
||||||
|
22
daemons/metrics.py
Normal file
22
daemons/metrics.py
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from requests import post
|
||||||
|
import json
|
||||||
|
|
||||||
|
from daemons import base
|
||||||
|
|
||||||
|
|
||||||
|
class Daemon(base.Daemon):
|
||||||
|
|
||||||
|
def execute(self):
|
||||||
|
while True:
|
||||||
|
for file in os.listdir('/usr/src/metrics'):
|
||||||
|
data = open(f'/usr/src/metrics/{file}', 'r').read()
|
||||||
|
payload = json.loads(data)
|
||||||
|
resp = post('http://monitoring:1237/api/v1/metrics/task', json=payload)
|
||||||
|
if resp.status_code == 202:
|
||||||
|
print("Metric ok")
|
||||||
|
else:
|
||||||
|
print(f'metric not ok: {resp.status_code}')
|
||||||
|
os.remove(f'/usr/src/metrics/{file}')
|
||||||
|
break
|
3
main.py
3
main.py
@ -11,6 +11,9 @@ if __name__ == '__main__':
|
|||||||
elif arg == 'mailbox':
|
elif arg == 'mailbox':
|
||||||
print("mailbox is starting")
|
print("mailbox is starting")
|
||||||
from daemons.mailbox import Daemon
|
from daemons.mailbox import Daemon
|
||||||
|
elif arg == 'metrics':
|
||||||
|
print("metrics is starting")
|
||||||
|
from daemons.metrics import Daemon
|
||||||
else:
|
else:
|
||||||
raise ValueError(f"Unknown param {arg}")
|
raise ValueError(f"Unknown param {arg}")
|
||||||
|
|
||||||
|
13
run.sh
Normal file
13
run.sh
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Start the first process
|
||||||
|
python3 main.py $1 &
|
||||||
|
|
||||||
|
# Start the second process
|
||||||
|
python3 main.py metrics &
|
||||||
|
|
||||||
|
# Wait for any process to exit
|
||||||
|
wait -n
|
||||||
|
|
||||||
|
# Exit with status of process that exited first
|
||||||
|
exit $?
|
@ -1,4 +1,8 @@
|
|||||||
|
import datetime
|
||||||
|
import json
|
||||||
import os
|
import os
|
||||||
|
import uuid
|
||||||
|
import zoneinfo
|
||||||
import requests
|
import requests
|
||||||
import time
|
import time
|
||||||
|
|
||||||
@ -15,6 +19,18 @@ class QueuesException(Exception):
|
|||||||
|
|
||||||
|
|
||||||
class TasksHandlerMixin:
|
class TasksHandlerMixin:
|
||||||
|
def _send_metric(self, start: datetime.datetime, end: datetime.datetime, success: bool):
|
||||||
|
with open(f'/usr/src/{uuid.uuid4()}.json', 'w') as fp:
|
||||||
|
fp.write(json.dumps({
|
||||||
|
'service': 'botalka',
|
||||||
|
'queue': self.queue_name,
|
||||||
|
'success': success,
|
||||||
|
'timestamp': start.strftime("%Y-%m-%dT%H:%M:%S") + "Z",
|
||||||
|
"success": success,
|
||||||
|
"execution_time_ms": (end - start).microseconds // 1000,
|
||||||
|
"environment": stage,
|
||||||
|
}))
|
||||||
|
|
||||||
def poll(self):
|
def poll(self):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
@ -27,17 +43,24 @@ class TasksHandlerMixin:
|
|||||||
if not task:
|
if not task:
|
||||||
time.sleep(0.2)
|
time.sleep(0.2)
|
||||||
continue
|
continue
|
||||||
|
start = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
|
||||||
try:
|
try:
|
||||||
|
print(f'process task with id {task["id"]}, attempt {task["attempt"]}')
|
||||||
self.process(task['payload'])
|
self.process(task['payload'])
|
||||||
|
success = True
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
print(f'Error processing message id={task["id"]}, payload={task["payload"]}, exc={exc}')
|
print(f'Error processing message id={task["id"]}, payload={task["payload"]}, exc={exc}')
|
||||||
continue
|
success = False
|
||||||
|
end = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
|
||||||
|
if success:
|
||||||
try:
|
try:
|
||||||
resp = requests.post(f'{QUEUES_URL}/api/v1/finish', json={'id': task['id']})
|
resp = requests.post(f'{QUEUES_URL}/api/v1/finish', json={'id': task['id']})
|
||||||
if resp.status_code != 202:
|
if resp.status_code != 202:
|
||||||
raise QueuesException
|
raise QueuesException
|
||||||
|
print(f'finish task with id {task["id"]}')
|
||||||
except:
|
except:
|
||||||
print(f'Failed to finish task id={task["id"]}')
|
print(f'Failed to finish task id={task["id"]}')
|
||||||
|
self._send_metric(start, end, success)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def queue_name(self):
|
def queue_name(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user