getState spaceCalculator

Returns the current state of the space calculator as an XML document.

Syntax

getState spaceCalculator [--OUTPUT_FILE=output_file] [--PROPERTY_LIST=state_properties]

or

getState spaceCalculator [-o output_file] [-l state_properties]

Parameters

output_file

Name of a file in which the exported XML document is stored. You can specify a simple file name, a relative path, or a fully qualified path. When executing on multiple instances, the getState command creates a separate file for each one and appends the host name and port number to the base name.

state_properties

List of one or more state properties: endTime, error, startTime, or status. Separate multiple properties with commas. All state properties are returned by default.

Example

This example returns only the endTime state for the space calculator:

SES>getState spaceCalculator --PROPERTY_LIST=endTime
 
<?xml version="1.0" encoding="UTF-8"?>
<search:state productVersion="11.1.2.0.0" xmlns:search="http://xmlns.oracle.com/search">
   <search:objectStates>
      <search:objectState>
         <search:objectType>spaceCalculator</search:objectType>
         <search:stateProperties>
            <search:stateProperty>
               <search:propertyName>endTime</search:propertyName>
               <search:propertyValues>
                  <search:propertyValue>
                     <search:value>Mon, 12 Oct 2009 18:35:19 GMT</search:value>
                  </search:propertyValue>
               </search:propertyValues>
            </search:stateProperty>
         </search:stateProperties>
      </search:objectState>
   </search:objectStates>
</search:state>