MeiliSearch/meilisearch-http/src/routes/stats.rs

109 lines
3.0 KiB
Rust
Raw Normal View History

2021-04-01 16:44:42 +02:00
use std::collections::HashMap;
2020-12-12 13:32:06 +01:00
2021-03-15 18:11:10 +01:00
use actix_web::get;
2020-12-12 13:32:06 +01:00
use actix_web::web;
use actix_web::HttpResponse;
use chrono::{DateTime, Utc};
2021-04-01 16:44:42 +02:00
use milli::FieldsDistribution;
2020-12-12 13:32:06 +01:00
use serde::Serialize;
2020-12-22 14:02:41 +01:00
use crate::error::ResponseError;
2020-12-12 13:32:06 +01:00
use crate::helpers::Authentication;
2021-04-01 16:44:42 +02:00
use crate::index_controller::IndexStats;
2020-12-12 13:32:06 +01:00
use crate::routes::IndexParam;
use crate::Data;
pub fn services(cfg: &mut web::ServiceConfig) {
2021-04-01 16:44:42 +02:00
cfg.service(get_index_stats)
2020-12-12 13:32:06 +01:00
.service(get_stats)
.service(get_version);
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct IndexStatsResponse {
number_of_documents: u64,
is_indexing: bool,
2021-04-01 16:44:42 +02:00
fields_distribution: FieldsDistribution,
}
impl From<IndexStats> for IndexStatsResponse {
fn from(stats: IndexStats) -> Self {
Self {
number_of_documents: stats.number_of_documents,
is_indexing: stats.is_indexing,
fields_distribution: stats.fields_distribution,
}
}
2020-12-12 13:32:06 +01:00
}
#[get("/indexes/{index_uid}/stats", wrap = "Authentication::Private")]
2021-04-01 16:44:42 +02:00
async fn get_index_stats(
data: web::Data<Data>,
path: web::Path<IndexParam>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-04-01 16:44:42 +02:00
let response: IndexStatsResponse = data
.index_controller
.get_stats(path.index_uid.clone())
.await?
.into();
Ok(HttpResponse::Ok().json(response))
2020-12-12 13:32:06 +01:00
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
2021-04-01 16:44:42 +02:00
struct StatsResponse {
2020-12-12 13:32:06 +01:00
database_size: u64,
last_update: Option<DateTime<Utc>>,
indexes: HashMap<String, IndexStatsResponse>,
}
#[get("/stats", wrap = "Authentication::Private")]
2021-04-01 16:44:42 +02:00
async fn get_stats(data: web::Data<Data>) -> Result<HttpResponse, ResponseError> {
let mut response = StatsResponse {
database_size: 0,
last_update: None,
indexes: HashMap::new(),
};
for index in data.index_controller.list_indexes().await? {
let stats = data.index_controller.get_stats(index.uid.clone()).await?;
response.database_size += stats.size;
response.last_update = Some(match response.last_update {
Some(last_update) => last_update.max(index.meta.updated_at),
None => index.meta.updated_at,
});
response.indexes.insert(index.uid, stats.into());
}
Ok(HttpResponse::Ok().json(response))
2020-12-12 13:32:06 +01:00
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct VersionResponse {
commit_sha: String,
build_date: String,
pkg_version: String,
}
#[get("/version", wrap = "Authentication::Private")]
async fn get_version() -> HttpResponse {
let commit_sha = match option_env!("COMMIT_SHA") {
Some("") | None => env!("VERGEN_SHA"),
2021-04-01 16:44:42 +02:00
Some(commit_sha) => commit_sha,
};
let commit_date = match option_env!("COMMIT_DATE") {
Some("") | None => env!("VERGEN_COMMIT_DATE"),
2021-04-01 16:44:42 +02:00
Some(commit_date) => commit_date,
};
HttpResponse::Ok().json(VersionResponse {
commit_sha: commit_sha.to_string(),
build_date: commit_date.to_string(),
2021-03-15 19:08:19 +01:00
pkg_version: env!("CARGO_PKG_VERSION").to_string(),
})
2020-12-12 13:32:06 +01:00
}