Skip to content

Commit

Permalink
drop tempo
Browse files Browse the repository at this point in the history
  • Loading branch information
esselius committed Aug 31, 2024
1 parent 770c854 commit 74bd4f3
Showing 1 changed file with 0 additions and 42 deletions.
42 changes: 0 additions & 42 deletions nixos-modules/profiles/monitoring.nix
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ in
{ job_name = "node"; static_configs = [{ targets = [ "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" ]; }]; }
{ job_name = "loki"; static_configs = [{ targets = [ "127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}" ]; }]; }
{ job_name = "alloy"; static_configs = [{ targets = [ "127.0.0.1:12345" ]; }]; }
# { job_name = "tempo"; static_configs = [{ targets = [ "127.0.0.1:${toString config.services.tempo.settings.server.http_listen_port}" ]; }]; }
];

extraFlags = [
Expand Down Expand Up @@ -263,46 +262,5 @@ in
group = "alloy";
};
};

# services.tempo = {
# enable = true;
# settings = {
# server = {
# http_listen_port = 3200;
# grpc_listen_port = 9096;
# };
# distributor.receivers = {
# otlp = {
# protocols = {
# grpc = { };
# http = { };
# };
# };
# };
# metrics_generator = {
# storage = {
# path = "/var/lib/tempo/generator/wal";
# remote_write = [{
# url = "http://127.0.0.1:${toString config.services.prometheus.port}/api/v1/write";
# }];
# };
# traces_storage.path = "/var/lib/tempo/generator/traces";
# };
# storage.trace = {
# backend = "local";
# wal.path = "/var/lib/tempo/wal";
# local.path = "/var/lib/tempo/blocks";
# };
# overrides.metrics_generator_processors = [ "service-graphs" "span-metrics" ];
# # overrides.metrics_generator = {
# # processors = [
# # "service-graphs"
# # "span-metrics"
# # "local-blocks"
# # ];
# # generate_native_histograms = "both";
# # };
# };
# };
};
}

0 comments on commit 74bd4f3

Please sign in to comment.