mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +00:00
* refactor: add common-slow-query crate * refactor: refine the naming * chore: fix clippy * chore: fix typo * chore: sperate SlowQueryOptions From Logging * chore: fix clippy * chore: fix ci * chore: refine the code * chore: update config example * refactor: use drop() to end the slow query timer * refactor: move common-slow-query to frontend crate * chore: polish some code * refactor: code review * refactor: add promql_range/promql_step/promql_start/promql_end fields in slow_queries * refactor: add build_slow_query_logger() * refactor: turn on slow query on frontend by default
84 lines
2.0 KiB
TOML
84 lines
2.0 KiB
TOML
[package]
|
|
name = "frontend"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
arc-swap = "1.0"
|
|
async-trait.workspace = true
|
|
auth.workspace = true
|
|
bytes.workspace = true
|
|
cache.workspace = true
|
|
catalog.workspace = true
|
|
client.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-config.workspace = true
|
|
common-datasource.workspace = true
|
|
common-error.workspace = true
|
|
common-function.workspace = true
|
|
common-grpc.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-options.workspace = true
|
|
common-procedure.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
common-version.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datanode.workspace = true
|
|
datatypes.workspace = true
|
|
futures.workspace = true
|
|
humantime-serde.workspace = true
|
|
lazy_static.workspace = true
|
|
log-query.workspace = true
|
|
log-store.workspace = true
|
|
meta-client.workspace = true
|
|
num_cpus.workspace = true
|
|
opentelemetry-proto.workspace = true
|
|
operator.workspace = true
|
|
otel-arrow-rust.workspace = true
|
|
partition.workspace = true
|
|
pipeline.workspace = true
|
|
prometheus.workspace = true
|
|
promql-parser.workspace = true
|
|
prost.workspace = true
|
|
query.workspace = true
|
|
rand.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
servers.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
sqlparser.workspace = true
|
|
store-api.workspace = true
|
|
substrait.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
catalog = { workspace = true, features = ["testing"] }
|
|
common-test-util.workspace = true
|
|
datanode.workspace = true
|
|
datatypes.workspace = true
|
|
futures.workspace = true
|
|
serde_json.workspace = true
|
|
strfmt = "0.2"
|
|
tower.workspace = true
|
|
uuid.workspace = true
|