摘要:Windows下的监控解决方案所有工具栈(Grafana,InfluxDB和Telegraf)全部支持在Windows实例上运行 监控架构一套监控系统,一般情况下都由三部分组成,指标收集器、数据存储和可视化工具(UI界面): 指标收集器,用来获取系统或者Agent的监控项目数据,一般有监控Agent
阅读全文
摘要:#npm install -g cnpm --registry=https://registry.npm.taobao.org#cnpm install -g fis3 npm install fis3 -g --registry=http://registry.npm.taobao.org/ --
阅读全文
摘要:现在碰到了请求跨域的问题,结合前面讲的一些概念,我们大致可以猜到解决跨域请求的两种方式: 在服务端启用CORS。让无服务端拥有处理JSONP的能力。这两种跨域解决方案的区别是什么呢? JSONP只支持GET请求;CORS则支持GET、POST、PUT、DELETE等标准的HTTP方法使用JSONP时
阅读全文
摘要:https://www.w3cplus.com/vue/vue-two-way-binding-object-defineproperty.html var a = {}; Object.defineProperty(a, 'b', { set: function(newValue) { conso
阅读全文
摘要:WASM: https://github.com/Hanks10100/wasm-examples/tree/master/simple mkdir hello cd hello echo '#include <stdio.h>' > hello.c echo 'int main(int argc,
阅读全文
摘要:流量拷贝工具试用 https://github.com/buger/goreplaynginx mirror openresty 通过lua tcpcopy 支持 HTTP 请求的录制和重放,可以在线上录制请求,在测试环境进行重放。支持 HTTP 层面的流量过滤,可以只挑选我们感兴趣的流量。支持请求
阅读全文
摘要:nginx rate limithttps://www.topjishu.com/12139.htmlhttps://blog.csdn.net/hellow__world/article/details/78658041 Nginx配置之负载均衡、限流、缓存、黑名单和灰度发布https://www
阅读全文
摘要:cordova build/ cordova run android -list cordova run android -target="TWGDU16926023795" cordova emulate android 在H5发展很不错,reactjs、vuejs等SPA单页应用框架非常强大,在
阅读全文
摘要:Firefox: firefox: about:cache?device=diskfirefox sqliteAbout:configAbout:robotsAbout:memoryAbout:cacheAbout:pluginAbout:buildconfigAbout:support
阅读全文
摘要:https://www.jb51.net/web/499127.html http://www.atool.org/useragent.php query for type 用Curl测试POST POST请求 http://172.16.102.208:8089/wiapi/score?leade
阅读全文
摘要:gzip压缩JavaScripthttp://www.cnblogs.com/ranzige/p/3851065.html
阅读全文
摘要:http://www.w3school.com.cn/cssref/css_selectors.asp http://www.w3school.com.cn/jquery/jquery_selectors.asp
阅读全文
摘要:前端开发组件化设计vue,react,angular原则漫谈 https://www.toutiao.com/a6346443500179505410/?tt_from=weixin&utm_campaign=client_share×tamp=1514779019&app=news_ar
阅读全文
摘要:++++++++++++++++++++++++ sudo docker pull tutum/influxdb sudo docker run -d -p 8083:8083 -p8086:8086 --expose 8090 --expose 8099 --name influxsrv tutu
阅读全文
摘要:SELECT "value" FROM "online_user_counter" curl -POST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" 三、InfluxDB通过HTTP API添加数据 In
阅读全文
摘要:一: 语法: $(selector).hide(speed,callback); $(selector).show(speed,callback); 实例 //点击隐藏 $("#hide").click(function(){ $("p").hide(); }); //点击显示 $("#show")
阅读全文
摘要:正则表达式,一个十分古老而又强大的文本处理工具,仅仅用一段非常简短的表达式语句,便能够快速实现一个非常复杂的业务逻辑。熟练地掌握正则表达式的话,能够使你的开发效率得到极大的提升。 正则表达式经常被用于字段或任意字符串的校验,如下面这段校验基本日期格式的JavaScript代码: var reg =
阅读全文
摘要:jq = document.createElement('script'); jq.src = "file:///home/liulqiang/jquery.js"; document.getElementsByTagName('head')[0].appendChild(jq); jQuery.n
阅读全文
摘要:charles --usage http://www.cnblogs.com/chenlogin/p/5849471.html 按照Charles的提示,PC打开 chls.pro/ssl下载得到一个 charles-proxy-ssl-proxying-certificate.pem 证书传送到手
阅读全文