From c55b5dd587dad211baa085f6c70fa029a66575ae Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 1 Mar 2023 20:05:02 +0000 Subject: [PATCH] add influxdb to prod configs --- docker-compose.prod.yml | 16 ++++++++++++++++ docs/tracing notes.txt | 15 +++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 docs/tracing notes.txt diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 5c6bf809..de6573e4 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -18,6 +18,22 @@ services: volumes: - ./data/prod_mysql:/var/lib/mysql + # influxdb for stats + influxdb: + image: influxdb:2.6.1-alpine + environment: + DOCKER_INFLUXDB_INIT_MODE: setup + DOCKER_INFLUXDB_INIT_USERNAME: web3_proxy + DOCKER_INFLUXDB_INIT_PASSWORD: web3_proxy + DOCKER_INFLUXDB_INIT_ORG: ski_llamanodes + DOCKER_INFLUXDB_INIT_BUCKET: web3_proxy + DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: web3_proxy_auth_token + ports: + - 127.0.0.1:8086:8086 + volumes: + - ./data/influxdb/data:/var/lib/influxdb2 + - ./data/influxdb/config:/etc/influxdb2 + adminer: image: adminer ports: diff --git a/docs/tracing notes.txt b/docs/tracing notes.txt new file mode 100644 index 00000000..67418909 --- /dev/null +++ b/docs/tracing notes.txt @@ -0,0 +1,15 @@ +Hello, I'm pretty new to tracing so my vocabulary might be wrong. I've got my app using tracing to log to stdout. I have a bunch of fields including user_id and ip_addr that make telling where logs are from nice and easy. + +Now there is one part of my code where I want to save a log to a database. I'm not sure of the best/correct way to do this. I can get the current span with tracing::Span::current(), but AFAICT that doesn't have a way to get to the values. I think I need to write my own Subscriber or Visitor (or both) and then tell tracing to use it only in this one part of the code. Am I on the right track? Is there a place in the docs that explains something similar? + +https://burgers.io/custom-logging-in-rust-using-tracing + +if you are doing it learn how to write a subscriber then you should write a custom layer. If you are simply trying to work on your main project there are several subscribers that already do this work for you. + +look at opentelemetry_otlp .. this will let you connect opentelemetry collector to your tracing using tracing_opentelemetry + +I'd suggest using the Registry subscriber because it can take multiple layers ... and use a filtered_layer to filter out the messages (look at env_filter, it can take the filtering params from an environment variable or a config string) and then have your collector be the second layer. e.... Registery can take in a vector of layers that are also-in-turn multi-layered. +let me see if i can pull up an example +On the https://docs.rs/tracing-subscriber/latest/tracing_subscriber/layer/ page about half-way down there is an example of boxed layers + +you basically end up composing different layers that output to different trace stores and also configure each using per-layer filtering (see https://docs.rs/tracing-subscriber/latest/tracing_subscriber/layer/#per-layer-filtering)