Indexes - Get Statistics
Restituisce le statistiche per l'indice specificato, incluso un conteggio dei documenti e l'utilizzo dell'archiviazione.
GET {endpoint}/indexes('{indexName}')/search.stats?api-version=2024-05-01-preview
Parametri dell'URI
Nome | In | Necessario | Tipo | Descrizione |
---|---|---|---|---|
endpoint
|
path | True |
string |
URL dell'endpoint del servizio di ricerca. |
index
|
path | True |
string |
Nome dell'indice per il quale recuperare le statistiche. |
api-version
|
query | True |
string |
Versione dell'API client. |
Intestazione della richiesta
Nome | Necessario | Tipo | Descrizione |
---|---|---|---|
x-ms-client-request-id |
string uuid |
ID di rilevamento inviato con la richiesta di assistenza per il debug. |
Risposte
Nome | Tipo | Descrizione |
---|---|---|
200 OK | ||
Other Status Codes |
Risposta di errore. |
Esempio
SearchServiceGetIndexStatistics
Esempio di richiesta
GET https://myservice.search.windows.net/indexes('hotels')/search.stats?api-version=2024-05-01-preview
Risposta di esempio
{
"documentCount": 239572,
"storageSize": 72375920,
"vectorIndexSize": 123456
}
Definizioni
Nome | Descrizione |
---|---|
Error |
Informazioni aggiuntive sulla gestione delle risorse. |
Error |
Dettagli dell'errore. |
Error |
Risposta di errore |
Get |
Statistiche per un determinato indice. Le statistiche vengono raccolte periodicamente e non sono sempre aggiornate. |
ErrorAdditionalInfo
Informazioni aggiuntive sulla gestione delle risorse.
Nome | Tipo | Descrizione |
---|---|---|
info |
object |
Informazioni aggiuntive. |
type |
string |
Tipo di informazioni aggiuntive. |
ErrorDetail
Dettagli dell'errore.
Nome | Tipo | Descrizione |
---|---|---|
additionalInfo |
Informazioni aggiuntive sull'errore. |
|
code |
string |
Codice di errore. |
details |
Dettagli dell'errore. |
|
message |
string |
Messaggio di errore. |
target |
string |
Destinazione dell'errore. |
ErrorResponse
Risposta di errore
Nome | Tipo | Descrizione |
---|---|---|
error |
Oggetto error. |
GetIndexStatisticsResult
Statistiche per un determinato indice. Le statistiche vengono raccolte periodicamente e non sono sempre aggiornate.
Nome | Tipo | Descrizione |
---|---|---|
documentCount |
integer |
Numero di documenti nell'indice. |
storageSize |
integer |
Quantità di archiviazione in byte utilizzati dall'indice. |
vectorIndexSize |
integer |
Quantità di memoria in byte utilizzati dai vettori nell'indice. |