1 Star 0 Fork 0

orgcollector/pypi-mirrors

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
ibigbug 提交于 2017-09-24 07:22 . use apscheduler
import time
from flask import g, request
from flask import Flask, render_template, Response
from utils import get_page_data, get_json_data
from prometheus_client import make_wsgi_app
from services.metrics import req_counter, rt_histogram
import cron
cron.start()
app = Flask(__name__)
@app.route('/')
def index():
context = get_page_data()
return render_template('index.html', **context)
@app.route('/data.json')
def json_data():
return Response(get_json_data(), mimetype='application/json')
@app.route('/metrics')
def metrics():
return make_wsgi_app()
@app.route('/status')
def healthcheck():
return 'ok'
@app.before_request
def before_request():
g.start_time = time.time()
@app.after_request
def after_request(res):
meth = request.method
endpoint = request.path
status = res.status_code
req_counter.labels(meth, endpoint, status).inc()
delta = time.time() - g.start_time
rt_histogram.labels(meth, endpoint, status).observe(delta)
return res
if __name__ == '__main__':
params = {"debug": True,
"host": "0.0.0.0", }
app.run(**params)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/orgcollector/pypi-mirrors.git
git@gitee.com:orgcollector/pypi-mirrors.git
orgcollector
pypi-mirrors
pypi-mirrors
master

搜索帮助