サーバー構成情報
ホーム画面 > プロジェクト選択 > サーバーリスト > サーバー情報
WhaTapモニタリングサービスの初期画面でプロジェクトを選択した後、サーバーリストメニューの下にあるサーバー情報メニューを選択します。 サーバー情報は、サーバー運営に必要な構成情報を提供し、管理の利便性のために手動で管理項目を追加できます。
サーバー情報は、サーバーの物理的かつ仮想的特性、運用環境などを体系的に管理するためのメニューです。 この機能により、自動的に収集されたサーバーの構成要素と ユーザー定義項目を使用してサーバーの構成を詳細に把握し、管理できます。 サーバー情報は、サーバーの性能分析と問題解決に不可欠なデータを提供します。
ノート
サポートエージェントバージョン
サーバー情報メニューは、オペレーティングシステムごとに次のバージョン以降でのみ対応しています。
-
Linux:2.6.6以降
アップデートが必要な場合は、オペレーティング システムごとに次のコマンドを確認します。
- Debian/Ubuntu
- Amazon Linux/RHEL/Fedora/Oracle Linux/CentOS/Rocky Linux/SUSE
sudo apt-get update
sudo apt-get install whatap-infrasudo yum update whatap-infra
-
Unix:1.3.4以降
アップデートが必要な場合は、オペレーティング システムごとに次のコマンドを確認します。
- AIX
- Oracle Solaris
stopsrc -s whatap-infra
cp /usr/whatap/infra/conf/whatap.conf /tmp/whatap.conf
rpm -e whatap-infra
rpm -Uvh http://repo.whatap.io/aix/noarch/whatap-infra-latest.noarch.rpm
cp /tmp/whatap.conf /usr/whatap/infra/conf/whatap.confcp /usr/whatap/infra/conf/whatap.conf /tmp
/etc/init.d/whatap-infra stop
pkgrm whatap-infra
wget https://repo.whatap.io/sunos/11/whatap-infra.latest.SPARC.pkg.tar.gz
tar xzvf whatap-infra.latest.SPARC.pkg.tar.gz
pkgadd -d .
cp /tmp/whatap.conf /usr/whatap/infra/conf/whatap.conf -
Windows:2.6.6以降
次のリンクでインストールファイルをダウンロードして実行します。 エージェントアップデートの後、サービスが再起動します。
活性化オプション
サーバー情報メニューの照会機能を有効にするには、次の設定が必要です。
-
whatap.confファイル内の次のオプションを有効にします。
hostinfov2.enabled=true
-
環境ごとにオプションを追加設定した後、エージェントを再起動します。
-
Linux
- オプション追加命令
- エージェント再起動
grep -q '^hostinfov2.enabled' /usr/whatap/infra/conf/whatap.conf || echo 'hostinfov2.enabled=true' | sudo tee -a /usr/whatap/infra/conf/whatap.conf
sudo service whatap-infra restart
-
Unix
- オプション追加命令
- エージェント再起動
AIX/Oracle Solarisgrep -q '^hostinfov2.enabled' /usr/whatap/infra/conf/whatap.conf || echo 'hostinfov2.enabled=true' | tee -a /usr/whatap/infra/conf/whatap.conf
AIXstopsrc -s whatap-infra
startsrc -s whatap-infraOracle Solaris/etc/init.d/whatap-infra restart
-
Windows
- オプション追加命令
- エージェント再起動
if (-not (Select-String -Path "C:\Program Files\WhatapInfra\whatap.conf" -Pattern "^hostinfov2.enabled" -Quiet)) { Add-Content -Path "C:\Program Files\WhatapInfra\whatap.conf" -Value "hostinfov2.enabled=true" }
Restart-Service -Name "Whatap Infra"
-