ja:documentation:pandorafms:monitoring:02_operations

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
ja:documentation:pandorafms:monitoring:02_operations [2026/05/30 22:53] – [画像の監視と表示] junichija:documentation:pandorafms:monitoring:02_operations [2026/05/30 23:04] (現在) – [エンドポイントを使った監視] junichi
行 4: 行 4:
  
  
-[[:ja:documentation:start|Pandora FMS ドキュメント一覧に戻る]]+[[:ja:documentation:pandorafms:start|Pandora FMS ドキュメント一覧に戻る]]
  
 <wrap #ks1 /> <wrap #ks1 />
行 1432: 行 1432:
 <WRAP center round info 90%> <WRAP center round info 90%>
  
-   * If the process name contains white spaces **do not use ** **''“ ”'' **. +  * If the process name contains blank spaces**do not use** **''“ ”''**. 
-   * The process name must be the same as the one displayed in the Windows Task Manager ( ''taskmngr'' ), including the extension ''.exe''+  * The process name must be the same as shown in the MS Windows® Task Manager (''taskmngr''), including the ''.exe'' extension
-   * It is important to **respect upper and lower case letters**.+  * It is important to **respect upper and lower case**.
  
 </WRAP> </WRAP>
行 1454: 行 1454:
 === プロセスモニタリング === === プロセスモニタリング ===
  
-The **module_proc** parameter checks if a certain process name is running on this machine. Example:+The ''[[:en:documentation:pandorafms:installation:05_configuration_agents#module_proc|module_proc]]'' parameter checks if a certain process name is operating on this machine. It should be configured similarly:
  
-**module_proc**  パラメータは、した名前のプロセスがのマシンで動ているかどうかをチェックします。例:+''[[:ja:documentation:pandorafms:installation:05_configuration_agents#module_proc|module_proc]]'' パラメータは、定のプロセスのマシンで動作しているかどうかを確認します。以下のように設定する必要があります。
  
 <code> <code>
行 1465: 行 1465:
 module_description Process Command line module_description Process Command line
 module_end module_end
- 
 </code> </code>
  
-The parameter **[[:en:documentation:03_monitoring:02_operations#monitorizacion_de_servicios_y_watchdog_de_servicios|module_async yes]]** must be added:+The ''[[#ks12_1_2|module_async yes]]'' parameter must be added:
  
-**module_async yes**  のパラメータを指定する必要があります。+''[[#ks12_1_2|module_async yes]]'' パラメータを指定する必要があります。
  
 <code> <code>
- module_begin +module_begin 
- module_name CMDProcess +module_name CMDProcess 
- module_type generic_proc +module_type generic_proc 
- module_proc cmd.exe +module_proc cmd.exe 
- module_async yes +module_async yes 
- module_description Process Command line +module_description Process Command line 
- module_end +module_end
 </code> </code>
  
行 1487: 行 1485:
 === プロセスウォッチドック === === プロセスウォッチドック ===
  
-Windows のソフトウエアエージェントのウォッチドック機能は、プロセスがダウンしたときに再起動することができます。ウォッチドックは、モジュールが非同期の場合にのみ動作します。+he Watchdog functionality for MS Windows® allows restarting an interrupted process.
  
-ウォッチドックモジュールの設定例以下に示します。+MS Windows® のウォッチドッグ機能を使用すると、中断されたプロセス再起動できます。
  
-<code+In the following code, it is configured so that the **Notepad** program runs //persistently// through the installed EndPoint:
- module_begin +
- module_name Notepad +
- module_type generic_data +
- module_proc notepad.exe +
- module_description Notepad +
- module_async yes +
- module_watchdog yes +
- module_user_session yes +
- module_start_command "%SystemRoot%\notepad.exe" +
- module_startdelay 3000 +
- module_retrydelay 2000 +
- module_retries 5 +
- module_end +
- +
-</code>+
  
-Each time the notepad.exe process is deactivated and the command: +以下のコードでは、**メモ帳**プログラムインストールされエンドポイントを介して//永続的//実行されるように設定されています。
- +
-notepad.exe プロセスいなくなる+
  
 <code> <code>
-%SystemRoot%\notepad.exe +module_begin 
 +module_name Notepad 
 +module_type generic_data 
 +module_proc notepad.exe 
 +module_description Notepad 
 +module_async yes 
 +module_watchdog yes 
 +module_user_session yes 
 +module_start_command "%SystemRoot%\notepad.exe
 +module_startdelay 3000 
 +module_retrydelay 2000 
 +module_retries 5 
 +module_end
 </code> </code>
  
-will be executed (see common rules at the beginning of the Windows section). The process reactivation will be attempted 5 times with an initial waiting time of 3 seconds and a waiting time between retries of 2 seconds in the user's active session. +<wrap #ks12_2 />
- +
-が実行されます(Windows の章の冒頭にある一般的なルールを参照してください)。   また、再起動のリトライは 3秒間隔で 5回まで実施し、1回のタイムアウトは 2秒という設定です。この例では、notepad.exe プロセスはユーザのセッションで起動します。 +
  
 ==== サービスモニタリングと、サービスウォッチドック ==== ==== サービスモニタリングと、サービスウォッチドック ====
行 1526: 行 1515:
 === サービスモニタリング === === サービスモニタリング ===
  
-**module_service**  パラメータは、指定したサービスがマシンで動作しているかどうかをチェックします。モジュールの設定例を以下に示します。+The ''module_service'' parameter checks if a certain service is running on the machine. The definition of a module using this parameter would be:
  
-<code> +''module_service''  パラメータは、指定したサービスがマシンで動作しているかどうかをチェックします。モジュールの設定例を以下に示します。
- module_begin +
- module_name Service_Dhcp +
- module_type generic_proc +
- module_service Dhcp +
- module_description Service DHCP Client +
- module_end+
  
 +<code>
 +module_begin
 +module_name Service_Dhcp
 +module_type generic_proc
 +module_service Dhcp
 +module_description Service DHCP Client
 +module_end
 </code> </code>
  
-サービス名にスペースが含まれる場合、«" "» は使わないようにしてください。サービス名を見つけるには、Windows サービスマネージャのサービス名フィールドを見てください。**大文字、小文字の確認が重要です** +The ''[[:en:documentation:pandorafms:installation:05_configuration_agents#module_proc|module_async yes]]'' parameter should be added to notify **immediately** when a process stops working:
  
-サービスがダウンしたときにソフトウエアエージェントがすぐに通知して欲しい場合は**module_async yes**  を追加する必要があります。モジュールの設定例を以下に示します。+プロセスが動作を停止したときに**即座**通知するために''[[:ja:documentation:pandorafms:installation:05_configuration_agents#module_proc|module_async yes]]'' パラメータを追加する必要があります。
  
 <code> <code>
- module_begin +module_begin 
- module_name Service_Dhcp +module_name Service_Dhcp 
- module_type generic_proc +module_type generic_proc 
- module_service Dhcp +module_service Dhcp 
- module_description Service DHCP Client +module_description Service DHCP Client 
- module_async yes +module_async yes 
- module_end +module_end
 </code> </code>
 +
 +<wrap #ks12_2_2 />
  
 === サービスウォッチドック === === サービスウォッチドック ===
  
-プロセスと同様に、ダウンしたサービスを再起動できるウォッチドックモードがあります。ウォッチドックを使ったモジュール定義例は次の通りです。+It works similarly to the [[#ks12_1_2|Process Watchdog]]:
  
-<code> +これは、[[#ks12_1_2|プロセスウォッチドッグ]]と似たような働きをします。
- module_begin +
- module_name ServiceSched +
- module_type generic_proc +
- module_service Schedule +
- module_description Service Task scheduler +
- module_async yes +
- module_watchdog yes +
- module_end+
  
 +<code>
 +module_begin
 +module_name ServiceSched
 +module_type generic_proc
 +module_service Schedule
 +module_description Service Task scheduler
 +module_async yes
 +module_watchdog yes
 +module_end
 </code> </code>
  
-ウォッチドックの定義は、特別なパラメータは必要ありません。サービス定義内にためです。+<WRAP center round tip 90%> 
 + 
 +The Watchdog definition for services does not require any additional parameters like the one for processes //because that information is already within the service definition//
 + 
 +</WRAP> 
 + 
 +<WRAP center round tip 90%> 
 + 
 +サービスに対するウォッチドッ定義は、プロセスに対するもののよう追加のパラメータは必要ありません。//なぜなら、その情報は既にサービス定義内に含まれていからです// 
 + 
 +</WRAP>
  
 <wrap #ks12_3 /> <wrap #ks12_3 />
行 1575: 行 1577:
 ==== 基本リソースのモニタリング ==== ==== 基本リソースのモニタリング ====
  
-When installing the PFMS EndPoint for MS Windows® the necessary basic modules are included, some of them come active and others must be activated by **Remote Configuration**  (or locally editing the EndPoint's ''.conf''  file).+<WRAP center round info 90%> 
 + 
 +When installing the PFMS EndPoint for MS Windows®the basic necessary modules are included
 + 
 +</WRAP> 
 + 
 +<WRAP center round info 90%> 
 + 
 +MS Windows® 用の PFMS エンドポイントをインストールする際に、必要な基本モジュールはすべて含まれています。 
 + 
 +</WRAP> 
 + 
 +Some modules come active and others must be activated via <wrap :en>**Remote Configuration**</wrap> (or by locally editing the EndPoint's ''.conf'' file). 
 + 
 +一部のモジュールは最初から有効になっていますが、その他のモジュールは<wrap :ja>**リモート設定**</wrap>(またはエンドポイントの ''.conf'' ファイルをローカルで編集する)によって有効にする必要があります。
  
-MS Windows® 用 Pandora FMS エンドポイントをインストールすると、必要な基本モジュールが含まれています。その一部は有効になっていますが、その他は **リモート設定** (またはエンドポイントの ''.conf'' ファイルをローカルで編集) によって有効化する必要があります。 
  
 === CPU のモニタリング === === CPU のモニタリング ===
行 1690: 行 1705:
 </code> </code>
  
-[[:ja:documentation:start|Pandora FMS ドキュメント一覧に戻る]]+[[:ja:documentation:pandorafms:start|Pandora FMS ドキュメント一覧に戻る]]
  
 ===== (OBSOLETE) バージョン 7 NG 以前 ===== ===== (OBSOLETE) バージョン 7 NG 以前 =====
  • ja/documentation/pandorafms/monitoring/02_operations.1780181580.txt.gz
  • 最終更新: 2026/05/30 22:53
  • by junichi