Hitachi

JP1 Version 12 JP1/Integrated Management 2 - Manager コマンド・定義ファイル・APIリファレンス


IM管理ノードカテゴリ名称定義ファイル(imdd_category_name.conf)

〈このページの構成〉

形式

{
  "meta":{
    "version":"1"
  },
  "categoryData":[
    {"categoryId":"カテゴリId","categoryName":"カテゴリ名称"},
    ・・・
  ]
}

ファイル

imdd_category_name.conf

imdd_category_name.conf.model(IM管理ノードカテゴリ名称定義ファイルのモデルファイル)

格納先ディレクトリ

Windowsの場合
物理ホストのとき

Managerパス\conf\imdd\

論理ホストのとき

共有フォルダ\jp1imm\conf\imdd\

UNIXの場合
物理ホストのとき

/etc/opt/jp1imm/conf/imdd/

論理ホストのとき

共有ディレクトリ/jp1imm/conf/imdd/

説明

インテリジェント統合管理基盤が収集したデータをサンバースト形式,ツリー形式で表示する際の管理グループのIM管理ノードカテゴリの名称,および順番を定義するファイルです。順番は,IM管理ノードカテゴリが定義された順となります。

定義の反映時期

jddcreatetreeコマンドおよびjddupdatetreeコマンドが正常終了すると,IM管理ノードカテゴリ名称定義ファイルの情報がインテリジェント統合管理基盤に反映されます。

jddcreatetreeコマンドおよびjddupdatetreeコマンドについては,「jddcreatetree」(1. コマンド),「jddupdatetree」(1. コマンド)を参照してください。

記述内容

IM管理ノードカテゴリ名称定義ファイルは,UTF-8で,BOM(byte order mark)が付与されないように保存してください。

"version":"1"

IM管理ノードカテゴリ名称定義ファイルのバージョンです。「1」を指定します。

"categoryId":"カテゴリId"

デフォルトで設定された値です。編集しないでください。

"categoryName":"カテゴリ名称"

サンバースト形式,ツリー形式に表示される管理グループのカテゴリ名称を指定します。categoryNameは制御文字および機種依存文字を含まない255文字以内の文字列で指定します。

定義例

下線部分のカテゴリの順番を入れ替える定義例を次に示します。

変更前

{
  "meta":{
    "version":"1"
  },
  "categoryData":[
    {"categoryId":"job","categoryName":"Job"},
    {"categoryId":"serviceResponse","categoryName":"Service Response"},
    {"categoryId":"enterprise","categoryName":"Enterprise"},
    {"categoryId":"transactionProcessing","categoryName":"Transaction Processing"},
    {"categoryId":"applicationServer","categoryName":"Application Server"},
    {"categoryId":"database","categoryName":"Database"},
    {"categoryId":"platform","categoryName":"Platform"},
    {"categoryId":"virtualMachine","categoryName":"Virtual Machine"},
    {"categoryId":"managementApplications","categoryName":"Management Applications"},
    {"categoryId":"otherApplications","categoryName":"Other Applications"}
  ]
}

変更後

{
  "meta":{
    "version":"1"
  },
  "categoryData":[
    {"categoryId":"job","categoryName":"Job"},
    {"categoryId":"serviceResponse","categoryName":"Service Response"},
    {"categoryId":"enterprise","categoryName":"Enterprise"},
    {"categoryId":"platform","categoryName":"Platform"},
    {"categoryId":"database","categoryName":"Database"},
    {"categoryId":"virtualMachine","categoryName":"Virtual Machine"},
    {"categoryId":"managementApplications","categoryName":"Management Applications"},
    {"categoryId":"transactionProcessing","categoryName":"Transaction Processing"},
    {"categoryId":"applicationServer","categoryName":"Application Server"},
    {"categoryId":"otherApplications","categoryName":"Other Applications"}
  ]
}