> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /show/resource/objects

```
URL: http://<db.host>:<db.port>/show/resource/objects
```

Returns information about the internal sub-components (tiered objects) which
use resources of the system. The request can either return results from
actively used objects (default) or it can be used to query the status of the
objects of a given list of tables. Returns detailed information about the
requested resource objects.

## Input Parameter Description

<ParamField body="options" type="map of string to strings">
  Optional parameters.

  The default value is an empty map ( \{} ).

  <Expandable title="options">
    <ParamField body="tiers">
      Comma-separated list of tiers to query, leave blank for all tiers.
    </ParamField>

    <ParamField body="expression">
      An expression to filter the returned objects. Expression is limited to the following operators: =,!=,\<,\<=,>,>=,+,-,\*,AND,OR,LIKE. For details see [Expressions](../../concepts/expressions/). To use a more complex expression, query the ki\_catalog.ki\_tiered\_objects table directly.
    </ParamField>

    <ParamField body="order_by">
      Single column to be sorted by as well as the sort direction, e.g., 'size asc'.

      The supported values are:

      * size
      * id
      * priority
      * tier
      * evictable
      * locked
      * pin\_count
      * ram\_evictions
      * persist\_evictions
      * owner\_resource\_group
    </ParamField>

    <ParamField body="limit">
      An integer indicating the maximum number of results to be returned, per rank, or (-1) to indicate that the maximum number of results allowed by the server should be returned.  The number of records returned will never exceed the server's own limit, defined by the [max\_get\_records\_size](../../config/#config-main-general) parameter in the server configuration.

      The default value is `100`.
    </ParamField>

    <ParamField body="table_names">
      Comma-separated list of tables to restrict the results to. Use '\*' to show all tables.
    </ParamField>
  </Expandable>
</ParamField>

## Output Parameter Description

The Kinetica server embeds the endpoint response inside a standard response structure which contains status information and the actual response to the query.  Here is a description of the various fields of the wrapper:

<ResponseField name="status" type="String">
  'OK' or 'ERROR'
</ResponseField>

<ResponseField name="message" type="String">
  Empty if success or an error message
</ResponseField>

<ResponseField name="data_type" type="String">
  'show\_resource\_objects\_response' or 'none' in case of an error
</ResponseField>

<ResponseField name="data" type="String">
  Empty string
</ResponseField>

<ResponseField name="data_str" type="JSON or String">
  This embedded JSON represents the result of the /show/resource/objects endpoint:

  <Expandable title="data_str">
    <ResponseField name="rank_objects" type="map of string to strings">
      Tier usage across ranks. Layout is: response.rank\_usage\[rank\_number]\[resource\_group\_name] = group\_usage (as stringified JSON).
    </ResponseField>

    <ResponseField name="info" type="map of string to strings">
      Additional information.
    </ResponseField>
  </Expandable>

  Empty string in case of an error.
</ResponseField>
