@@ -257,7 +257,7 @@ static void destroy_opentelemetry_context(
257
257
struct cmt_opentelemetry_context * context );
258
258
259
259
static struct cmt_opentelemetry_context * initialize_opentelemetry_context (
260
- struct cmt * cmt , struct cmt_opentelemetry_context_cutoff_opts * opts );
260
+ struct cmt * cmt , struct cmt_opentelemetry_context_opts * opts );
261
261
262
262
static inline Opentelemetry__Proto__Common__V1__AnyValue * cfl_variant_to_otlp_any_value (struct cfl_variant * value );
263
263
static inline Opentelemetry__Proto__Common__V1__KeyValue * cfl_variant_kvpair_to_otlp_kvpair (struct cfl_kvpair * input_pair );
@@ -2138,7 +2138,7 @@ static Opentelemetry__Proto__Resource__V1__Resource *
2138
2138
}
2139
2139
2140
2140
static struct cmt_opentelemetry_context * initialize_opentelemetry_context (
2141
- struct cmt * cmt , struct cmt_opentelemetry_context_cutoff_opts * opts )
2141
+ struct cmt * cmt , struct cmt_opentelemetry_context_opts * opts )
2142
2142
{
2143
2143
struct cfl_kvlist * resource_metrics_root ;
2144
2144
struct cfl_kvlist * scope_metrics_root ;
@@ -2532,7 +2532,7 @@ static cfl_sds_t render_opentelemetry_context_to_sds(
2532
2532
}
2533
2533
2534
2534
cfl_sds_t cmt_encode_opentelemetry_create_with_cutoff_opts (struct cmt * cmt ,
2535
- struct cmt_opentelemetry_context_cutoff_opts * opts )
2535
+ struct cmt_opentelemetry_context_opts * opts )
2536
2536
{
2537
2537
size_t metric_index ;
2538
2538
struct cmt_opentelemetry_context * context ;
@@ -2645,7 +2645,7 @@ cfl_sds_t cmt_encode_opentelemetry_create_with_cutoff_opts(struct cmt *cmt,
2645
2645
2646
2646
cfl_sds_t cmt_encode_opentelemetry_create_with_cutoff (struct cmt * cmt , int use_cutoff )
2647
2647
{
2648
- struct cmt_opentelemetry_context_cutoff_opts opts ;
2648
+ struct cmt_opentelemetry_context_opts opts ;
2649
2649
opts .use_cutoff = use_cutoff ;
2650
2650
opts .cutoff_threshold = CMT_ENCODE_OPENTELEMETRY_CUTOFF_THRESHOLD ;
2651
2651
@@ -2654,7 +2654,7 @@ cfl_sds_t cmt_encode_opentelemetry_create_with_cutoff(struct cmt *cmt, int use_c
2654
2654
2655
2655
cfl_sds_t cmt_encode_opentelemetry_create (struct cmt * cmt )
2656
2656
{
2657
- struct cmt_opentelemetry_context_cutoff_opts opts ;
2657
+ struct cmt_opentelemetry_context_opts opts ;
2658
2658
opts .use_cutoff = CMT_FALSE ;
2659
2659
opts .cutoff_threshold = CMT_ENCODE_OPENTELEMETRY_CUTOFF_DISABLED ;
2660
2660
0 commit comments