-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (39 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "request_log_analyzer"
version = "4.0.6"
authors = ["pixelistik"]
edition = "2018"
repository = "https://github.com/pixelistik/request_log_analyzer"
license = "MIT"
description = """
Extracts some performance metrics from the request.log of a CQ/AEM instance.
Example output:
count: 54510 (number of analyzed requests)
time.avg: 127
time.min: 1
time.median: 6
time.90percent: 27
time.99percent: 3614
time.max: 15747 (times are in milliseconds)
Note: When analyzing more than 10.000 lines, median and percentiles are
approximated for performance.
License: MIT, see
https://github.com/pixelistik/request_log_analyzer/blob/master/LICENSE
https://crates.io/crates/clap
https://crates.io/crates/chrono
https://crates.io/crates/hyper
https://crates.io/crates/prometheus
"""
[dependencies]
failure = "0.1.8"
chrono = "0.4"
clap = "2.34"
log = "0.4.20"
env_logger = "*"
prometheus = "0.13.3"
hyper = "~0.10"
aggregated_stats = { git = "https://github.com/pixelistik/aggregated_stats" }
flate2 = "1.0"
[profile.release]
# https://lifthrasiir.github.io/rustlog/why-is-a-rust-executable-large.html
lto = true