Skip to content

Commit

Permalink
issue #26: linting errors fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin committed Nov 22, 2024
1 parent 348a70e commit ca63f6c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
28 changes: 14 additions & 14 deletions dockerfiles/tempo/tempo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ storage:
trace:
backend: local # Use the local filesystem for block storage. Not recommended for production systems.
block:
bloom_filter_false_positive: .05 # Bloom filter false positive rate. lower values create larger filters but fewer false positives.
bloom_filter_false_positive: .05 # Bloom filter false positive rate. lower values create larger filters but fewer false positives.
# Write Ahead Log (WAL) configuration.
wal:
path: /tmp/tempo/wal # Directory to store the the WAL locally.
Expand All @@ -62,23 +62,23 @@ metrics_generator:
# Span metrics create metrics based on span type, duration, name and service.
span_metrics:
# Configure extra dimensions to add as metric labels.
dimensions:
- http.method
- http.target
- http.status_code
- service.version
dimensions:
- http.method
- http.target
- http.status_code
- service.version
# Service graph metrics create node and edge metrics for determinng service interactions.
service_graphs:
# Configure extra dimensions to add as metric labels.
dimensions:
- http.method
- http.target
- http.status_code
- service.version
dimensions:
- http.method
- http.target
- http.status_code
- service.version
# Configure the local blocks processor.
local_blocks:
# Ensure that metrics blocks are flushed to storage so TraceQL metrics queries against historical data.
flush_to_storage: true
# Ensure that metrics blocks are flushed to storage so TraceQL metrics queries against historical data.
flush_to_storage: true
# The registry configuration determines how to process metrics.
registry:
collection_interval: 5s
Expand All @@ -91,4 +91,4 @@ metrics_generator:

# Global override configuration.
overrides:
metrics_generator_processors: ['service-graphs', 'span-metrics','local-blocks'] # The types of metrics generation to enable for each tenant.
metrics_generator_processors: ['service-graphs', 'span-metrics', 'local-blocks'] # The types of metrics generation to enable for each tenant.
1 change: 0 additions & 1 deletion webtop-template/webtop_template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import sys
import os
from dotenv import load_dotenv

Expand Down

0 comments on commit ca63f6c

Please sign in to comment.