Alert.png The wiki is deprecated and due to be decommissioned by the end of September 2022.
The content is being migrated to other supports, new updates will be ignored and lost.
If needed you can get in touch with EGI SDIS team using operations @ egi.eu.

Difference between revisions of "GOCDB/PI/get service endpoint method"

From EGIWiki
< GOCDB‎ | PI
Jump to navigation Jump to search
Line 2: Line 2:
{{Template:Tools menubar}}
{{Template:Tools menubar}}
{{TOC_right}}
{{TOC_right}}
[[Category:GOCDB]]
== Method: get_service_endpoint ==
== Method: get_service_endpoint ==



Revision as of 14:08, 15 October 2012

Main EGI.eu operations services Support Documentation Tools Activities Performance Technology Catch-all Services Resource Allocation Security


Tools menu: Main page Instructions for developers AAI Proxy Accounting Portal Accounting Repository AppDB ARGO GGUS GOCDB
Message brokers Licenses OTAGs Operations Portal Perun EGI Collaboration tools LToS EGI Workload Manager


Method: get_service_endpoint

Description Returns a list of service endpoints (single node x single service) and associated information
Protection Level Public (level 1)

Entry point

https://goc.egi.eu/gocdbpi/public/?method=get_service_endpoint

parameters

parameter effect format/value(s) default example
hostname Limit results to services hosted on node with given hostname any host name all ?method=get_service_endpoint&hostname=dcache-tape.gridpp.rl.ac.uk
sitename Limit results to services provided at site with given sitename any site name all ?method=get_service_endpoint&sitename=IN2P3-CC
roc (ngi) Limit results to services provided by given NGI any NGI name all ?method=get_service_endpoint&roc=AsiaPacific
country Limit results to services provided by given country any country name all ?method=get_service_endpoint&country=Australia
service_type Limit results to services of given type any valid service type all ?method=get_service_endpoint&service_type=CE
monitored Limit results to services hosted on nodes that have monitoring turned on Y or N all ?method=get_service_endpoint&monitored=Y
scope(=Local) Show only service endpoints in the passed scope (Local is currently the only scope available) "Local" all ?method=get_service_endpoint&scope=Local

XML schema

https://goc.egi.eu/gocdbpi/public/?method=get_service_endpoint&output=xmlschema

Output Example

 <?xml version="1.0"?>
 <results>
  <SERVICE_ENDPOINT PRIMARY_KEY="651G0">
   <PRIMARY_KEY>651G0</PRIMARY_KEY>
   <HOSTNAME>foo.bar.ral</HOSTNAME>
   <GOCDB_PORTAL_URL>
    https://next.gocdb.eu/portal/index.php?Page_Type=View_Object&object_id=1133&grid_id=0
   </GOCDB_PORTAL_URL>
   <HOSTDN>/C=UK/O=test/OU=demo/CN=foo.bar.ral</HOSTDN>
   <HOST_OS>SL5</HOST_OS>
   <HOST_ARCH>x64<HOST_ARCH>
   <BETA>Y<BETA/>
   <SERVICE_TYPE>CE</SERVICE_TYPE>
   <IP>4.4.4.4</IP>
   <CORE/>
   <IN_PRODUCTION>N</IN_PRODUCTION>
   <NODE_MONITORED>N</NODE_MONITORED>
   <SITENAME>RAL-LCG2</SITENAME>
   <COUNTRY_NAME>United Kingdom</COUNTRY_NAME>
   <COUNTRY_CODE>GB</COUNTRY_CODE>
   <ROC_NAME>UKI</ROC_NAME>
   <URL>https://some.serviceurl.eu:8443/services/se<URL/> <!-- note, URL value can be empty e.g: <URL/> -->
  </SERVICE_ENDPOINT>
 </results>

Back to GOCDB technical Documentation main page