Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ tests:
loadgen_exporter_type: otlp
backend_receiver_type: otlp
max_batch_size: 1000
data_source: static
generation_strategy: fresh
use_trace_context: true
- name: OTLP-ATTR-OTAP
from_template:
path: test_suites/integration/templates/test_steps/df-loadgen-steps-docker.yaml
Expand All @@ -90,6 +93,9 @@ tests:
loadgen_exporter_type: otlp
backend_receiver_type: otap
max_batch_size: 1000
data_source: static
generation_strategy: fresh
use_trace_context: true
- name: OTAP-ATTR-OTAP
from_template:
path: test_suites/integration/templates/test_steps/df-loadgen-steps-docker.yaml
Expand All @@ -98,6 +104,9 @@ tests:
loadgen_exporter_type: otap
backend_receiver_type: otap
max_batch_size: 1000
data_source: static
generation_strategy: fresh
use_trace_context: true
- name: OTAP-ATTR-OTLP
from_template:
path: test_suites/integration/templates/test_steps/df-loadgen-steps-docker.yaml
Expand All @@ -106,6 +115,9 @@ tests:
loadgen_exporter_type: otap
backend_receiver_type: otlp
max_batch_size: 1000
data_source: static
generation_strategy: fresh
use_trace_context: true
- name: OTLP-BATCH-OTLP
from_template:
path: test_suites/integration/templates/test_steps/df-loadgen-steps-docker.yaml
Expand All @@ -114,6 +126,9 @@ tests:
loadgen_exporter_type: otlp
backend_receiver_type: otlp
max_batch_size: 1000
data_source: static
generation_strategy: fresh
use_trace_context: true
exporter_extra_config:
max_in_flight: 256
- name: OTAP-BATCH-OTAP
Expand All @@ -124,3 +139,6 @@ tests:
loadgen_exporter_type: otap
backend_receiver_type: otap
max_batch_size: 1000
data_source: static
generation_strategy: fresh
use_trace_context: true
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ groups:
receiver:
type: "urn:otel:receiver:traffic_generator"
config:
data_source: semantic_conventions
data_source: {{ data_source | default("semantic_conventions") }}
generation_strategy: {{ generation_strategy | default("pre_generated") }}
traffic_config:
max_batch_size: {{ max_batch_size | default(1000) }}
signals_per_second: {% if signals_per_second is none %}null{% else %}{{ signals_per_second | default(100000) }}{% endif %}
metric_weight: {{ metric_weight | default(0) }}
trace_weight: {{ trace_weight | default(0) }}
log_weight: {{ log_weight | default(100) }}
{%- if use_trace_context is defined and use_trace_context %}
use_trace_context: true
{%- endif %}

{%- set exporter_type = loadgen_exporter_type | default("otap") %}
{%- set engine_host = engine_hostname | default("localhost") %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ steps:
# ----- Receiver traffic config -----
max_batch_size: {{max_batch_size | default(1000)}}
signals_per_second: {% if signals_per_second is none %}null{% else %}{{signals_per_second | default(100000)}}{% endif %}
data_source: {{data_source | default("semantic_conventions")}}
generation_strategy: {{generation_strategy | default("pre_generated")}}
{% if use_trace_context is defined %}use_trace_context: {{use_trace_context}}{% endif %}
metric_weight: {{metric_weight | default(0)}}
trace_weight: {{trace_weight | default(0)}}
log_weight: {{log_weight | default(100)}}
Expand Down
Loading