1
0
mirror of https://github.com/chylex/Apache-Prometheus-Exporter.git synced 2025-04-19 10:15:45 +02:00

Add access log parser

This commit is contained in:
chylex 2023-01-13 16:26:03 +01:00
parent 723fd0b323
commit 54120e1b33
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548
2 changed files with 61 additions and 2 deletions

58
src/log_parser.rs Normal file
View File

@ -0,0 +1,58 @@
use std::fmt::{Display, Error, Formatter};
pub struct AccessLogLineParts<'a> {
pub time: &'a str,
pub remote_host: &'a str,
pub request: &'a str,
pub response_status: &'a str,
pub response_bytes: &'a str,
pub response_time_ms: &'a str,
pub referer: &'a str,
pub user_agent: &'a str,
}
impl Display for AccessLogLineParts<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> {
write!(f, "[{}] {} \"{}\" {} {} {} \"{}\" \"{}\"", self.time, self.remote_host, self.request, self.response_status, self.response_bytes, self.response_time_ms, self.referer, self.user_agent)
}
}
impl<'a> AccessLogLineParts<'a> {
pub fn parse(line: &'a str) -> Result<AccessLogLineParts<'a>, ParseError> {
let (time, line) = extract_between_chars(line, '[', ']').ok_or(ParseError::TimeBracketsNotFound)?;
let (remote_host, line) = next_space_delimited_part(line).ok_or(ParseError::RemoteHostNotFound)?;
let (request, line) = extract_between_chars(line.trim_start_matches(' '), '"', '"').ok_or(ParseError::RequestNotFound)?;
let (response_status, line) = next_space_delimited_part(line).ok_or(ParseError::ResponseStatusNotFound)?;
let (response_bytes, line) = next_space_delimited_part(line).ok_or(ParseError::ResponseBytesNotFound)?;
let (response_time_ms, line) = next_space_delimited_part(line).ok_or(ParseError::ResponseTimeNotFound)?;
let (referer, line) = extract_between_chars(line.trim_start_matches(' '), '"', '"').ok_or(ParseError::RefererNotFound)?;
let (user_agent, _) = extract_between_chars(line.trim_start_matches(' '), '"', '"').ok_or(ParseError::UserAgentNotFound)?;
Ok(AccessLogLineParts { time, remote_host, request, response_status, response_bytes, response_time_ms, referer, user_agent })
}
}
fn next_space_delimited_part(str: &str) -> Option<(&str, &str)> {
return str.trim_start_matches(' ').split_once(' ')
}
fn extract_between_chars(str: &str, left_side: char, right_side: char) -> Option<(&str, &str)> {
let str = str.trim_start_matches(' ');
let next_char = str.chars().next()?;
return if next_char == left_side {
str.get(1..)?.split_once(right_side)
} else {
None
};
}
#[derive(Debug, Copy, Clone)]
pub enum ParseError {
TimeBracketsNotFound,
RemoteHostNotFound,
RequestNotFound,
ResponseStatusNotFound,
ResponseBytesNotFound,
ResponseTimeNotFound,
RefererNotFound,
UserAgentNotFound,
}

View File

@ -10,9 +10,10 @@ use crate::log_file_pattern::{LogFilePath, parse_log_file_pattern_from_env};
use crate::log_watcher::watch_logs_task;
use crate::web_server::{create_web_server, run_web_server};
mod log_file_pattern;
mod log_watcher;
mod apache_metrics;
mod log_file_pattern;
mod log_parser;
mod log_watcher;
mod web_server;
const ACCESS_LOG_FILE_PATTERN: &'static str = "ACCESS_LOG_FILE_PATTERN";