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, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SearchMetrics
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. val successPartitionCount: Long
  5. val took: Duration
  6. val totalPartitionCount: Long
  7. val totalRows: Long