上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页
摘要: grafana取Prometheus的数据的时候,使用接口 grafana接口 ,后面加上Prometheus的接口路径 /api/datasources/proxy/1/api/v1/query_range 1是DataSourceID,有可能不为1Prometheus官网 API:https:/ 阅读全文
posted @ 2020-11-04 19:09 醒日是归时 阅读(2100) 评论(0) 推荐(0) 编辑
摘要: Prometheus API 使用了 JSON 格式的响应内容。 输入时间戳可以由 RFC3339 格式或者 Unix 时间戳提供,后面可选的小数位可以精确到亚秒级别。输出时间戳以 Unix 时间戳的方式呈现。所有的 API请求返回的格式均使用以下的 JSON 格式: { "status": "su 阅读全文
posted @ 2020-11-04 18:09 醒日是归时 阅读(2037) 评论(0) 推荐(0) 编辑
摘要: 在使用echarts柱状图时,如果数据过多,图的显示不会那么直观,有的横坐标会被隐藏,如下图所示: 想实现可以通过横向滚动条拖动展示数据,看了官方文档,实现的效果如下 具体代码:就是添加这个代码就可以了 dataZoom: [ { id: 'dataZoomX', type: 'slider', x 阅读全文
posted @ 2020-10-28 19:02 醒日是归时 阅读(9969) 评论(0) 推荐(1) 编辑
摘要: <template> <div id="zptime"> {{setDate}} </div> </template> <script> export default { name: 'zptime', data() { return { date: new Date(), } }, compute 阅读全文
posted @ 2020-10-28 10:09 醒日是归时 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_v1_5 as Cipher_pkcs1_v1_5 from Crypto.Signature import PKCS1_v1_5 as Signature_pkcs1_ 阅读全文
posted @ 2020-10-23 11:58 醒日是归时 阅读(5956) 评论(1) 推荐(0) 编辑
摘要: 主要就是增加数据约束的。在sqlite作为数据库时必须加上约束 Oracle中的约束简单介绍 约束 Including Constraints 在数据库中使用约束(constraints)是为了在该数据库中实施所谓的"业务规则"其实就是防止非法信息进入数据库,满足管理员和应用开发人员所定义的规则集. 阅读全文
posted @ 2020-10-19 16:55 醒日是归时 阅读(2709) 评论(0) 推荐(0) 编辑
摘要: 验证网页的正则表达式为: var regStr = "^((https|http|ftp|rtsp|mms)?://)?" //域名之前的协议字符串可以出现一次或不出现 + "(([0-9a-zA-Z_!~*'().&=+$%-]+: )?[0-9a-zA-Z_!~*'().&=+$%-]+@)?" 阅读全文
posted @ 2020-09-24 19:12 醒日是归时 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 用requests.put上传文件 files = {'file':open(filepath,'rb').read()} rs = requests.put(url=url, headers=headers,files=files) 上传成功后,打开上传成功的文件,发现请求头被写进了文件 --7d 阅读全文
posted @ 2020-09-23 11:38 醒日是归时 阅读(1598) 评论(0) 推荐(0) 编辑
摘要: Grafana集成进自己的监控项目 可能有需求是将grafana的dashboard集成到自己的监控系统里面,这样就避免了进grafana再查看 方案有是有,可能有点不安全,建议实在要这么干的话: 尽量是公司内部玩,也就是纯内网操作; 找IT设置网络访问权限,只有公司IP可以访问监控系统和grafa 阅读全文
posted @ 2020-09-17 10:27 醒日是归时 阅读(4220) 评论(0) 推荐(0) 编辑
摘要: 列表解析——用来动态地创建列表 [expr for iter_var in iterable if cond_expr] 生成1-100以内的偶数 a3 = [x for x in range(1,101) if x % 2==0] print (a3) 输出结果: [2, 4, 6, 8, 10, 阅读全文
posted @ 2020-09-16 20:07 醒日是归时 阅读(245) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页