导致连接到Nginx服务器和等待时间的延迟是由pipe理员控制的吗?
我已经设置GTMetrix来运行每日网页加载速度testing,有时我得到惊人的高取值静态文件。 这里有一个报告 :

GTMetrix分析发生在20分钟前。 我们的1GB Linodenetworking服务器远没有加载。 Load average: 0.17 0.06 0.06 ,分析过程中5分钟间隔内CPU利用率低于1%,nginx连接低于1 /秒。
nginx的configuration文件没有什么特别之处,几周之内没有改变:
server { listen 80; listen [::]:80; listen 443 ssl; listen [::]:443 ssl; server_name analytics.idorecall.com; ssl_certificate ...; ssl_certificate_key ...; root /var/www/piwik; location / { index index.php; } location ~* \.(ico|css|js|gif|png|jpe?g)$ { add_header Access-Control-Allow-Origin idorecall.com; access_log off; expires max; break; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php5-fpm.sock; } }
另一方面,Google的标签pipe理器.js也花了2秒钟的时间下载,所以问题出现在GTMetrix方面呢? 这些随机缓慢的加载时间是值得调查的,还是我应该把它们作为连接变幻莫测?