Packages

case class SearchMetrics(took: Duration, totalRows: Long, maxScore: Double, totalPartitionCount: Long, successPartitionCount: Long, errorPartitionCount: Long) extends Product with Serializable

Metrics and status of a given FTS request.

took

how long a request took executing on the server side

totalRows

number of rows returned

maxScore

the largest score amongst the rows.

totalPartitionCount

the total number of FTS pindexes that were queried.

successPartitionCount

the number of FTS pindexes queried that successfully answered.

errorPartitionCount

the number of FTS pindexes queried that gave an error. If > 0,

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SearchMetrics
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SearchMetrics(took: Duration, totalRows: Long, maxScore: Double, totalPartitionCount: Long, successPartitionCount: Long, errorPartitionCount: Long)

    took

    how long a request took executing on the server side

    totalRows

    number of rows returned

    maxScore

    the largest score amongst the rows.

    totalPartitionCount

    the total number of FTS pindexes that were queried.

    successPartitionCount

    the number of FTS pindexes queried that successfully answered.

    errorPartitionCount

    the number of FTS pindexes queried that gave an error. If > 0,

Value Members

  1. val errorPartitionCount: Long
  2. val maxScore: Double
  3. val successPartitionCount: Long
  4. val took: Duration
  5. val totalPartitionCount: Long
  6. val totalRows: Long