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

104 lines
2.8 KiB
Rust
Raw Normal View History

use std::collections::BTreeMap;
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};
use serde::Serialize;
use crate::data::Stats;
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,
fields_distribution: BTreeMap<String, u64>,
2021-04-01 16:44:42 +02:00
}
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.into_iter().collect(),
2021-04-01 16:44:42 +02:00
}
}
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-08 15:35:28 +02:00
let response: IndexStatsResponse = data.get_index_stats(path.index_uid.clone()).await?.into();
2021-04-01 16:44:42 +02:00
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: BTreeMap<String, IndexStatsResponse>,
2020-12-12 13:32:06 +01:00
}
2021-04-08 15:35:28 +02:00
impl From<Stats> for StatsResponse {
fn from(stats: Stats) -> Self {
Self {
database_size: stats.database_size,
last_update: stats.last_update,
indexes: stats
.indexes
2021-04-08 15:35:28 +02:00
.into_iter()
.map(|(uid, index_stats)| (uid, index_stats.into()))
.collect(),
}
}
}
2020-12-12 13:32:06 +01:00
#[get("/stats", wrap = "Authentication::Private")]
2021-04-01 16:44:42 +02:00
async fn get_stats(data: web::Data<Data>) -> Result<HttpResponse, ResponseError> {
2021-04-08 15:35:28 +02:00
let response: StatsResponse = data.get_stats().await?.into();
2021-04-01 16:44:42 +02:00
Ok(HttpResponse::Ok().json(response))
2020-12-12 13:32:06 +01:00
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct VersionResponse {
commit_sha: String,
commit_date: String,
2020-12-12 13:32:06 +01:00
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(),
commit_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
}