如今Web庞大复杂应用场景广泛,再加上各种浏览器造成的环境差异,很难保证我们的页面呈现给每个用户时都是正常的。稳定和准确是每个产品的基础,对于用户直接交互的页面更加显得重要。我们不能等到用户投诉后才知道出现问题,而是应该主动监控尽快暴露出异常。
- 静态资源加载异常
- 网络环境恶劣
- 运营商劫持
- 文件丢失
weixin://dl/stickers | |
weixin://dl/games | |
weixin://dl/moments | |
weixin://dl/add | |
weixin://dl/shopping | |
weixin://dl/groupchat | |
weixin://dl/scan | |
weixin://dl/profile | |
weixin://dl/settings | |
weixin://dl/general |
#!/bin/sh | |
# | |
# chkconfig: 35 99 99 | |
# description: node.js /home/bodokaiser/tmp/<name> | |
# | |
. /etc/rc.d/init.d/functions | |
# application name |
// Support routines for automatically reporting user timing for common analytics platforms | |
// Currently supports Google Analytics, Boomerang and SOASTA mPulse | |
// In the case of boomerang, you will need to map the event names you want reported | |
// to timer names (for mPulse these need to be custom0, custom1, etc) using a global variable: | |
// rumMapping = {'aft': 'custom0'}; | |
(function() { | |
var wtt = function(n, t, b) { | |
t = Math.round(t); | |
if (t >= 0 && t < 3600000) { | |
// Google Analytics |
post.html.eco
used for displaying prev and next page links on your current page (static site friendly)posts.html.eco
used for displaying a content listing, that is split up onto multiple pages (requires dynamic site)/* | |
Some simple Github-like styles, with syntax highlighting CSS via Pygments. | |
*/ | |
body{ | |
font-family: helvetica, arial, freesans, clean, sans-serif; | |
color: #333; | |
background-color: #fff; | |
border: none; | |
line-height: 1.5; | |
margin: 2em 3em; |