0

UCMDB から一連のデータをクエリする TQL クエリを作成する必要があります。
私は2つの問題を抱えています:

1)CI間に存在する関係を見つけるにはどうすればよいですか(管理者権限がないため、何らかの方法でコードで行う必要があります)必要なデータを取得するにはこれが必要です。

2) 次のクエリを作成しました: しかし、IP プロパティ値を null として取得し続けます。IP に という属性があることを確認しましたip_address
コード:

import com.hp.ucmdb.api.types.TopologyRelation;

public class Main {

    public static void main(String[] args)throws Exception {
     final String HOST_NAME = "192.168.159.132";
     final int PORT = 8080; 

     UcmdbServiceProvider provider = UcmdbServiceFactory.getServiceProvider(HOST_NAME, PORT);

     final String USERNAME = "username";

     final String PASSWORD = "password";

     Credentials credentials = provider.createCredentials(USERNAME, PASSWORD);

     ClientContext clientContext = provider.createClientContext("Test");
     UcmdbService ucmdbService = provider.connect(credentials, clientContext);

     TopologyQueryService queryService = ucmdbService.getTopologyQueryService();

     Topology topology = queryService.executeNamedQuery("Host IP");

     Collection<TopologyCI> hosts = topology.getAllCIs(); 

     for (TopologyCI host : hosts) { 


      for (TopologyRelation relation : host.getOutgoingRelations()) { 
       System.out.print("Host " + host.getPropertyValue("display_label")); 
       System.out.println (" has IP " + relation.getEnd2CI().getPropertyValue("ip_address")); 

      } 
     }

}

上記のクエリ出力では、次のようにホスト名を取得しますIP = null

私は理解できないJYthonにサンプルクエリを持っています:それは上記のコード専用です。

ご理解いただける方に添付します。

import sys

UCMDB_API="c:/ucmdb/api/ucmdb-api.jar"

sys.path.append(UCMDB_API)

from com.hp.ucmdb.api import *

# 0) Connection settings
HOST_NAME="192.168.159.132"
PORT=8080

USERNAME="username"
PASSWORD="password"

# 1) Get a Service Provider from the UcmdbServiceFactory
provider = UcmdbServiceFactory.getServiceProvider(HOST_NAME, PORT)

# 2) Setup credentials to log in
credentials = provider.createCredentials(USERNAME, PASSWORD)

# 3) Create a client context
clientContext = provider.createClientContext("TESTING")

# 4) Connect and retrieve a UcmdbService object
ucmdbService = provider.connect(credentials, clientContext)

# 5) Get the TopologyQueryService from the UcmdbService
queryService = ucmdbService.getTopologyQueryService()

# ======= Everything After this is specific to the query =======

# 6) Execute a Named Query and get the Topology
topology = queryService.executeNamedQuery('Host IP')

# 7) Get the hosts
hosts = topology.getAllCIs()

# 8) Print the hosts and IPs
host_ip = {}

for host in hosts:
    host_name = host.getPropertyValue("display_label")
    if host_name in host_ip.keys():
        ips = host_ip[host_name]
    else:
        ips = {} 
        host_ip[host_name] = ips
    for relation in host.getOutgoingRelations():
        ip_address = relation.getEnd2CI().getPropertyValue("display_label")
        if ip_address in ips.keys():
            pass
        else:
            ips[ip_address] = ''
            print "%s , %s" % (host_name, ip_address)

助けてください。

これをさらに進める方法を理解できません。

ありがとうございました。

4

1 に答える 1

1

最も簡単な修正は、ip_address プロパティの代わりに IP アドレス CI のdisplay_labelプロパティを使用することです。Jython 参照コードは、そのロジックに display_label を使用します。

I'd be a little concerned about using display_label since the display_label formatting logic could be changed to no display the IP address for IP CIs. Getting data directly from the ip_address property is a better choice and should work if the TQL is defined to return that data. Check the Host IP TQL and ensure that it's configured to return ip_address for IP CIs.

于 2011-12-24T19:20:53.780 に答える