このドメイン・ランタイムの表示

get

/management/weblogic/{version}/domainRuntime

このドメイン・ランタイムを表示します。

注意: このリソース・ツリーは、WebLogic Serverドメイン全体のモニターに使用されます。

リクエスト

パス・パラメータ
問合せパラメータ
  • 'excludeFields'問合せパラメータは、レスポンスで返されるフィールドを制限するために使用します。カンマ区切りのフィールド名のリストです。存在する場合は、リストに名前がないフィールドのみが返されます。存在しない場合は、すべてのフィールドが返されます('fields'問合せパラメータを指定していない場合)。注意: 'excludeFields'が指定されている場合、'fields'は指定できません。
  • 'fields'問合せパラメータは、レスポンスで返されるフィールドを制限するために使用します。カンマ区切りのフィールド名のリストです。存在する場合は、名前が一致するフィールドのみが返されます。存在しない場合は、すべてのフィールドが返されます('excludeFields'問合せパラメータを指定していない場合)。注意: 'fields'が指定されている場合、'excludeFields'は指定できません。
セキュリティ
トップに戻る

レスポンス

サポートされているメディア・タイプ

200レスポンス

このドメイン・ランタイムを返します。

このメソッドは次のリンクを返すことができます。

  • rel=SNMPAgentRuntime uri=/management/weblogic/{version}/domainRuntime/SNMPAgentRuntime

    このリソースのSNMPAgentRuntimeシングルトン・リソース。

  • rel=action title=restartSystemResource uri=/management/weblogic/{version}/domainRuntime/restartSystemResource

    このリソースのrestartSystemResourceアクション・リソース。

  • rel=appRuntimeStateRuntime uri=/management/weblogic/{version}/domainRuntime/appRuntimeStateRuntime

    このリソースのappRuntimeStateRuntimeシングルトン・リソース。

  • rel=batchJobRepositoryRuntime uri=/management/weblogic/{version}/domainRuntime/batchJobRepositoryRuntime

    このリソースのbatchJobRepositoryRuntimeシングルトン・リソース。

  • rel=consoleRuntime uri=/management/weblogic/{version}/domainRuntime/consoleRuntime

    このリソースのconsoleRuntimeシングルトン・リソース。

  • rel=deploymentManager uri=/management/weblogic/{version}/domainRuntime/deploymentManager

    このリソースのdeploymentManagerシングルトン・リソース。

  • rel=editSessionConfigurationManager uri=/management/weblogic/{version}/domainRuntime/editSessionConfigurationManager

    このリソースのeditSessionConfigurationManagerシングルトン・リソース。

  • rel=elasticServiceManagerRuntime uri=/management/weblogic/{version}/domainRuntime/elasticServiceManagerRuntime

    このリソースのelasticServiceManagerRuntimeシングルトン・リソース。

  • rel=logRuntime uri=/management/weblogic/{version}/domainRuntime/logRuntime

    このリソースのlogRuntimeシングルトン・リソース。

  • rel=messageDrivenControlEJBRuntime uri=/management/weblogic/{version}/domainRuntime/messageDrivenControlEJBRuntime

    このリソースのmessageDrivenControlEJBRuntimeシングルトン・リソース。

  • rel=migratableServiceCoordinatorRuntime uri=/management/weblogic/{version}/domainRuntime/migratableServiceCoordinatorRuntime

    このリソースのmigratableServiceCoordinatorRuntimeシングルトン・リソース。

  • rel=migrationDataRuntimes uri=/management/weblogic/{version}/domainRuntime/migrationDataRuntimes

    このリソースのmigrationDataRuntimesコレクション・リソース。

  • rel=nodeManagerRuntimes uri=/management/weblogic/{version}/domainRuntime/nodeManagerRuntimes

    このリソースのnodeManagerRuntimesコレクション・リソース。

  • rel=policySubjectManagerRuntime uri=/management/weblogic/{version}/domainRuntime/policySubjectManagerRuntime

    このリソースのpolicySubjectManagerRuntimeシングルトン・リソース。

  • rel=rolloutService uri=/management/weblogic/{version}/domainRuntime/rolloutService

    このリソースのrolloutServiceシングルトン・リソース。

  • rel=search uri=/management/weblogic/{version}/domainRuntime/search

    このリソースのsearchリソース。

  • rel=serverLifeCycleRuntimes uri=/management/weblogic/{version}/domainRuntime/serverLifeCycleRuntimes

    このリソースのserverLifeCycleRuntimesコレクション・リソース。

  • rel=serverRuntimes uri=/management/weblogic/{version}/domainRuntime/serverRuntimes

    このリソースのserverRuntimesリソース。

  • rel=serviceMigrationDataRuntimes uri=/management/weblogic/{version}/domainRuntime/serviceMigrationDataRuntimes

    このリソースのserviceMigrationDataRuntimesコレクション・リソース。

  • rel=systemComponentLifeCycleRuntimes uri=/management/weblogic/{version}/domainRuntime/systemComponentLifeCycleRuntimes

    このリソースのsystemComponentLifeCycleRuntimesコレクション・リソース。

本文 ()
ルート・スキーマ: Domain Runtime
型: object
ソースを表示
  • 読取り専用: true

    ドメインがアクティブになった時間。

    この値は、ISO 8601の文字列形式(yyyy - MM - dd 'T' HH: mm: ss.SSSXXX)で日付を表します
  • 読取り専用: true

    このMBeanインスタンスのユーザー定義の名前。

    この名前は、MBeanのjavax.management.ObjectNameに、主要なプロパティとして含まれています

    Name=user-specified-name

  • 読取り専用: true

    MBeanのタイプを戻します。

    制約

    • 収集不可
トップに戻る

このドメイン・ランタイムを表示します。

この例では、GETメソッドを使用して、このドメイン・ランタイムを表示しています。

リクエストの例
curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/domainRuntime?fields=activationTime&links=self
レスポンスの例
HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "self",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime"
    }],
    "activationTime": "2020-01-08T08:59:56.412-05:00"
}
トップに戻る