WPプラグインによるサーバーリソース(CPU)使用率を測定する方法はありますか?
4 回答
- 投票
-
- 2010-08-24
アプリケーションのどの部分がCPUとメモリリソースを利用しているかを測定するには、いわゆるプロファイラーが必要です.たとえば、 XDebug はそのようなプロファイラーです.これを使用すると、アプリケーションのどの部分がCPUとメモリをどれだけ使用しているかが正確にわかります.
You need a so called profiler to measure which part of your application does make use of CPU and Memory Resources. XDebug is such a profiler for example. Using it will show you exactly which part of your application uses how much of CPU and memory.
-
ハクレありがとうございます.これを次の質問の基礎として使用します.Thank you Hakre, I will use this as a basis for a following question.
- 0
- 2010-08-24
- Tal Galili
-
ここにあります:http://wordpress.stackexchange.com/questions/828/profiling-a-wp-website-for-deployment-on-shared-hostingHere it is: http://wordpress.stackexchange.com/questions/828/profiling-a-wp-website-for-deployment-on-shared-hosting
- 0
- 2010-08-24
- Tal Galili
-
- 2019-07-09
私はあなたのためにこの答えを持っています.:apache-statusという名前のApacheモジュールを構成する必要があります. このApache機能に基づいて構築されたpimpedapache statusというプロジェクトもあります.情報は次のとおりです:https://github.com/axelhahn/pimped-apache-status
I have this answer for you. you need to configure an apache module called : apache-status. there is also a project called pimped apache status wich is build on this apache feature: here is the info : https://github.com/axelhahn/pimped-apache-status
-
- 2010-08-20
さまざまなプラグインのCPU使用率に関するデータを取得することは非常に困難/不可能です.結局のところ、これらは単なるphp関数です.ただし、ページが生成されると関数がいたるところに呼び出されるため、何がどれだけ使用されているかを確認するのは困難です.
できることは、すべてのphpを測定することです.プラグインを無効/有効にすることができます.これはあなたに指標を与えるでしょう.ただし、CPU使用率は、コンテンツやユーザーなどによって大きく異なります.
It is extremely difficult / impossible to get the data on CPU usage on different plugins. They are after all just php functions. But because functions get called all over the place when a page is generated it's hard to see what's using how much.
What you could do is to measure all of php. You could try to disable/ enable plugins. This will give you an indication. But CPU usage can very much depending on content, users etc.
-
GTに感謝します.これを自動的に行うプラグインを知っていますか?Thanks GT. Do you know of a plugin that might do this automatically ?
- 0
- 2010-08-20
- Tal Galili
-
プラグインではなく、PHP拡張機能です.私の答えを参照してください.つまり、ええ、それは可能です.Not a plugin, but a PHP extension, see my answer. So to say, yeah, it's possible.
- 0
- 2010-08-24
- hakre
-
- 2010-08-20
これを自動的に行う方法はわかりませんが、SSHを使用している場合は、topコマンドを実行し、プラグインがスパイクするかどうかを確認するために、Webサイトにいる間にそれを監視できます.
Cpanelでもこれを行うことができますが、ページを継続的に更新する必要があります.
I don't know of a way to do this automatically but if you use SSH you can run the top command and watch it while you were on the website using whatever the plugin does to see if it spikes.
You can also do this in Cpanel but you would have to continually refresh the page.
CPU使用率が高いWebサイトがあります.私がそれを知る唯一の方法は、ホスティング会社のサポート担当者から得た情報です.
自分のウェブサイトで行われているリソースの使用状況を知る方法は他にありますか?(具体的にはプラグインですが、プラグインだけではありません)
ありがとうございます.