roundabout,
created on Sunday, 7 April 2024, 04:50:35 (1712465435),
received on Sunday, 7 April 2024, 12:44:08 (1712493848)
Author identity: vlad <vlad.muntoiu@gmail.com>
82fa96f70c83217f55ef326a45fa0579f9a13d27
.idea/workspace.xml
@@ -4,12 +4,10 @@
<option name="autoReloadType" value="SELECTIVE" /> </component> <component name="ChangeListManager"> <list default="true" id="411335b4-e813-41ad-9046-18b77b97ee46" name="Changes" comment="Save ping results"><list default="true" id="411335b4-e813-41ad-9046-18b77b97ee46" name="Changes" comment="Do it"><change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" /> <change beforePath="$PROJECT_DIR$/static/style.css" beforeDir="false" afterPath="$PROJECT_DIR$/static/style.css" afterDir="false" /><change beforePath="$PROJECT_DIR$/templates/app-editor.html" beforeDir="false" afterPath="$PROJECT_DIR$/templates/app-editor.html" afterDir="false" /> <change beforePath="$PROJECT_DIR$/templates/app.html" beforeDir="false" afterPath="$PROJECT_DIR$/templates/app.html" afterDir="false" /></list> <option name="SHOW_DIALOG" value="false" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -99,7 +97,15 @@
<option name="project" value="LOCAL" /> <updated>1712420788013</updated> </task> <option name="localTasksCounter" value="5" /><task id="LOCAL-00005" summary="Do it"> <option name="closed" value="true" /> <created>1712464824601</created> <option name="number" value="00005" /> <option name="presentableId" value="LOCAL-00005" /> <option name="project" value="LOCAL" /> <updated>1712464824601</updated> </task> <option name="localTasksCounter" value="6" /><servers /> </component> <component name="Vcs.Log.Tabs.Properties">
@@ -118,6 +124,7 @@
<MESSAGE value="More" /> <MESSAGE value="Endpoint management" /> <MESSAGE value="Save ping results" /> <option name="LAST_COMMIT_MESSAGE" value="Save ping results" /><MESSAGE value="Do it" /> <option name="LAST_COMMIT_MESSAGE" value="Do it" /></component> </project>
app.py
@@ -104,17 +104,24 @@ with app.app_context():
buggy = db.Column(db.Boolean, default=False) endpoint = db.relationship("Endpoint", back_populates="statuses") def __init__(self, endpoint_id, status):def __init__(self, endpoint_id, status, buggy):self.endpoint_id = endpoint_id self.status = status self.buggy = buggy@celery.shared_task(name="ping") def ping(id, address, next_ping): if not db.session.get(Endpoint, id): return elif db.session.get(Endpoint, id).buggy: buggy = True else: buggy = Falseurl = address print(f"Pinging {url}") response = httpx.get(url, verify=False) reading = Status(id, response.status_code)reading = Status(id, response.status_code, buggy)db.session.add(reading) db.session.commit()
@@ -238,8 +245,8 @@ def utc_filter(timestamp):
def app_info(app_id): app_ = db.session.get(Application, app_id) time_slices = [(datetime.datetime.utcnow() - datetime.timedelta(seconds=int(flask.request.args.get("bar_duration", 30)) * 60 * (i+1)),datetime.datetime.utcnow() - datetime.timedelta(seconds=int(flask.request.args.get("bar_duration", 30)) * i))time_slices = [(datetime.datetime.utcnow() - datetime.timedelta(minutes=int(flask.request.args.get("bar_duration", 30)) * (i+1)), datetime.datetime.utcnow() - datetime.timedelta(minutes=int(flask.request.args.get("bar_duration", 30)) * i))for i in range(int(flask.request.args.get("time_period", 30)) // int(flask.request.args.get("bar_duration", 1)))] slice_results = []
templates/app-editor.html
@@ -3,6 +3,7 @@
{% block content %} <main> <h1>Editing {{ app.name }}</h1> <div id="endpoint-editor"> {% for endpoint in app.endpoints %} <form class="stacked-form" method="post" action="/app/{{ app.id }}/edit/{{ endpoint.id }}">