Getting data grid information

Use the Grid management API to get data grid information.

Procedure

  1. Open a command prompt and run a REST call via cURL.
    Example
    
    curl -k -u "xsadmin:xsadmin4Me!" 
    https://jsmith.abc.com:9445/wxsadmin/v1/grid/{gridname} 
    -X GET
    where
    • "xsadmin:xsadmin4Me!" specifies the administrator user ID and password for XSLD.
    • https://jsmith.abc.com:9445/wxsadmin/v1/grid/{gridname} is the URL that represents the fully qualified host name and port number of the cache member group. It also contains the context root for the Operational REST server and the REST call to get data grid information.
      • {gridname} is part of the REST call that specifies the name of the data grid you want to get information for.
    A complete example of this command, where {gridname} is testgrid1:
    curl -k -u "xsadmin:xsadmin4Me!" 
    https://jsmith.abc.com:9445/wxsadmin/v1/grid/testgrid1
    -X GET
  2. A successful response code is returned as 200.