couchbase 3.7.0 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/ext/CMakeLists.txt +4 -1
- data/ext/cache/extconf_include.rb +4 -3
- data/ext/cache/mozilla-ca-bundle.crt +66 -93
- data/ext/cache/mozilla-ca-bundle.sha256 +1 -1
- data/ext/couchbase/CMakeLists.txt +24 -11
- data/ext/couchbase/cmake/APKBUILD.in +17 -1
- data/ext/couchbase/cmake/Bundler.cmake +9 -1
- data/ext/couchbase/cmake/Cache.cmake +48 -19
- data/ext/couchbase/cmake/CompilerOptions.cmake +3 -1
- data/ext/couchbase/cmake/OpenSSL.cmake +10 -2
- data/ext/couchbase/cmake/Packaging.cmake +48 -8
- data/ext/couchbase/cmake/ThirdPartyDependencies.cmake +43 -1
- data/ext/couchbase/cmake/build_config.hxx.in +2 -0
- data/ext/couchbase/cmake/couchbase-cxx-client.spec.in +18 -0
- data/ext/couchbase/cmake/tarball_glob.txt +10 -0
- data/ext/couchbase/core/app_telemetry_meter.cxx +1 -0
- data/ext/couchbase/core/app_telemetry_reporter.cxx +45 -43
- data/ext/couchbase/core/app_telemetry_reporter.hxx +4 -3
- data/ext/couchbase/core/bucket.cxx +128 -13
- data/ext/couchbase/core/bucket.hxx +12 -2
- data/ext/couchbase/core/cluster.cxx +304 -152
- data/ext/couchbase/core/cluster.hxx +32 -0
- data/ext/couchbase/core/cluster_credentials.cxx +25 -0
- data/ext/couchbase/core/cluster_credentials.hxx +5 -0
- data/ext/couchbase/core/cluster_label_listener.cxx +72 -0
- data/ext/couchbase/core/cluster_label_listener.hxx +46 -0
- data/ext/couchbase/core/cluster_options.hxx +4 -0
- data/ext/couchbase/core/deprecation_utils.hxx +26 -0
- data/ext/couchbase/core/error.hxx +27 -0
- data/ext/couchbase/core/free_form_http_request.hxx +0 -2
- data/ext/couchbase/core/http_component.cxx +12 -48
- data/ext/couchbase/core/impl/analytics.cxx +3 -2
- data/ext/couchbase/core/impl/analytics.hxx +2 -1
- data/ext/couchbase/core/impl/analytics_index_manager.cxx +249 -137
- data/ext/couchbase/core/impl/binary_collection.cxx +134 -58
- data/ext/couchbase/core/impl/bucket_manager.cxx +87 -35
- data/ext/couchbase/core/impl/collection.cxx +560 -245
- data/ext/couchbase/core/impl/collection_manager.cxx +89 -49
- data/ext/couchbase/core/impl/dns_srv_tracker.cxx +4 -4
- data/ext/couchbase/core/impl/error.cxx +20 -13
- data/ext/couchbase/core/impl/error.hxx +15 -10
- data/ext/couchbase/core/impl/get_all_replicas.hxx +1 -1
- data/ext/couchbase/core/impl/get_any_replica.hxx +2 -1
- data/ext/couchbase/core/impl/get_replica.hxx +2 -0
- data/ext/couchbase/core/impl/lookup_in_replica.hxx +1 -1
- data/ext/couchbase/core/impl/observability_recorder.cxx +161 -0
- data/ext/couchbase/core/impl/observability_recorder.hxx +77 -0
- data/ext/couchbase/core/impl/observe_seqno.hxx +2 -0
- data/ext/couchbase/core/impl/public_bucket.cxx +31 -7
- data/ext/couchbase/core/impl/public_cluster.cxx +107 -19
- data/ext/couchbase/core/impl/query.cxx +6 -3
- data/ext/couchbase/core/impl/query.hxx +3 -1
- data/ext/couchbase/core/impl/query_index_manager.cxx +267 -102
- data/ext/couchbase/core/impl/scope.cxx +53 -11
- data/ext/couchbase/core/impl/search.cxx +8 -4
- data/ext/couchbase/core/impl/search.hxx +6 -2
- data/ext/couchbase/core/impl/search_index_manager.cxx +131 -41
- data/ext/couchbase/core/impl/with_cancellation.hxx +75 -0
- data/ext/couchbase/core/io/config_tracker.cxx +9 -9
- data/ext/couchbase/core/io/config_tracker.hxx +2 -1
- data/ext/couchbase/core/io/http_command.hxx +98 -49
- data/ext/couchbase/core/io/http_context.hxx +2 -0
- data/ext/couchbase/core/io/http_session.cxx +23 -10
- data/ext/couchbase/core/io/http_session.hxx +17 -9
- data/ext/couchbase/core/io/http_session_manager.hxx +163 -228
- data/ext/couchbase/core/io/http_traits.hxx +0 -7
- data/ext/couchbase/core/io/mcbp_command.hxx +123 -44
- data/ext/couchbase/core/io/mcbp_session.cxx +251 -26
- data/ext/couchbase/core/io/mcbp_session.hxx +9 -1
- data/ext/couchbase/core/io/mcbp_traits.hxx +0 -8
- data/ext/couchbase/core/io/streams.cxx +3 -3
- data/ext/couchbase/core/io/streams.hxx +3 -2
- data/ext/couchbase/core/meta/features.hxx +15 -0
- data/ext/couchbase/core/meta/version.cxx +13 -0
- data/ext/couchbase/core/meta/version.hxx +3 -0
- data/ext/couchbase/core/metrics/constants.hxx +23 -0
- data/ext/couchbase/core/metrics/logging_meter.cxx +5 -5
- data/ext/couchbase/core/metrics/meter_wrapper.cxx +65 -63
- data/ext/couchbase/core/metrics/meter_wrapper.hxx +12 -10
- data/ext/couchbase/core/operations/document_analytics.hxx +0 -5
- data/ext/couchbase/core/operations/document_append.hxx +0 -4
- data/ext/couchbase/core/operations/document_decrement.hxx +0 -5
- data/ext/couchbase/core/operations/document_exists.hxx +0 -7
- data/ext/couchbase/core/operations/document_get.hxx +0 -7
- data/ext/couchbase/core/operations/document_get_all_replicas.hxx +77 -27
- data/ext/couchbase/core/operations/document_get_and_lock.hxx +0 -9
- data/ext/couchbase/core/operations/document_get_and_touch.hxx +0 -9
- data/ext/couchbase/core/operations/document_get_any_replica.hxx +83 -2
- data/ext/couchbase/core/operations/document_get_projected.hxx +0 -9
- data/ext/couchbase/core/operations/document_increment.hxx +0 -5
- data/ext/couchbase/core/operations/document_insert.hxx +0 -4
- data/ext/couchbase/core/operations/document_lookup_in.hxx +0 -9
- data/ext/couchbase/core/operations/document_lookup_in_all_replicas.hxx +46 -4
- data/ext/couchbase/core/operations/document_lookup_in_any_replica.hxx +121 -43
- data/ext/couchbase/core/operations/document_mutate_in.hxx +0 -5
- data/ext/couchbase/core/operations/document_prepend.hxx +0 -4
- data/ext/couchbase/core/operations/document_query.hxx +0 -4
- data/ext/couchbase/core/operations/document_remove.hxx +0 -4
- data/ext/couchbase/core/operations/document_replace.hxx +0 -4
- data/ext/couchbase/core/operations/document_search.hxx +0 -7
- data/ext/couchbase/core/operations/document_touch.hxx +0 -7
- data/ext/couchbase/core/operations/document_unlock.hxx +0 -6
- data/ext/couchbase/core/operations/document_upsert.hxx +0 -4
- data/ext/couchbase/core/operations/document_view.cxx +2 -0
- data/ext/couchbase/core/operations/document_view.hxx +10 -13
- data/ext/couchbase/core/operations/http_noop.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_dataset_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_dataverse_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_dataverse_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_index_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_index_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_index_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_link_connect.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_link_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_link_disconnect.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_link_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_link_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/analytics_link_replace.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_describe.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_flush.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_get.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/bucket_update.hxx +2 -0
- data/ext/couchbase/core/operations/management/change_password.hxx +2 -0
- data/ext/couchbase/core/operations/management/cluster_describe.hxx +2 -0
- data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.hxx +2 -0
- data/ext/couchbase/core/operations/management/collection_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/collection_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/collection_update.hxx +2 -0
- data/ext/couchbase/core/operations/management/collections_manifest_get.hxx +2 -0
- data/ext/couchbase/core/operations/management/error_utils.cxx +4 -1
- data/ext/couchbase/core/operations/management/eventing_deploy_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_drop_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_get_all_functions.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_get_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_get_status.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_pause_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_resume_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_undeploy_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/eventing_upsert_function.hxx +2 -0
- data/ext/couchbase/core/operations/management/freeform.hxx +2 -0
- data/ext/couchbase/core/operations/management/group_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/group_get.hxx +2 -0
- data/ext/couchbase/core/operations/management/group_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/group_upsert.hxx +2 -0
- data/ext/couchbase/core/operations/management/query_index_build.hxx +2 -0
- data/ext/couchbase/core/operations/management/query_index_build_deferred.hxx +68 -30
- data/ext/couchbase/core/operations/management/query_index_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/query_index_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/query_index_get_all.hxx +4 -3
- data/ext/couchbase/core/operations/management/query_index_get_all_deferred.hxx +2 -1
- data/ext/couchbase/core/operations/management/role_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/scope_create.hxx +2 -0
- data/ext/couchbase/core/operations/management/scope_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/scope_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_get_stats.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_analyze_document.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_control_ingest.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_control_query.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_get.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_get_documents_count.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_get_stats.hxx +2 -0
- data/ext/couchbase/core/operations/management/search_index_upsert.hxx +2 -0
- data/ext/couchbase/core/operations/management/user_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/user_get.hxx +2 -0
- data/ext/couchbase/core/operations/management/user_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/user_upsert.hxx +2 -0
- data/ext/couchbase/core/operations/management/view_index_drop.hxx +2 -0
- data/ext/couchbase/core/operations/management/view_index_get.hxx +2 -0
- data/ext/couchbase/core/operations/management/view_index_get_all.hxx +2 -0
- data/ext/couchbase/core/operations/management/view_index_upsert.hxx +2 -0
- data/ext/couchbase/core/operations/operation_traits.hxx +6 -0
- data/ext/couchbase/core/operations.hxx +0 -1
- data/ext/couchbase/core/operations_fwd.hxx +8 -0
- data/ext/couchbase/core/origin.cxx +67 -12
- data/ext/couchbase/core/origin.hxx +13 -8
- data/ext/couchbase/core/orphan_reporter.cxx +164 -0
- data/ext/couchbase/core/orphan_reporter.hxx +65 -0
- data/ext/couchbase/core/sasl/CMakeLists.txt +1 -0
- data/ext/couchbase/core/sasl/client.cc +6 -0
- data/ext/couchbase/core/sasl/mechanism.cc +2 -1
- data/ext/couchbase/core/sasl/mechanism.h +2 -1
- data/ext/couchbase/core/sasl/oauthbearer/oauthbearer.cc +41 -0
- data/ext/couchbase/core/sasl/oauthbearer/oauthbearer.h +47 -0
- data/ext/couchbase/core/tls_context_provider.cxx +44 -0
- data/ext/couchbase/core/tls_context_provider.hxx +44 -0
- data/ext/couchbase/core/tracing/attribute_helpers.hxx +45 -0
- data/ext/couchbase/core/tracing/constants.hxx +148 -68
- data/ext/couchbase/core/tracing/threshold_logging_options.hxx +0 -3
- data/ext/couchbase/core/tracing/threshold_logging_tracer.cxx +122 -170
- data/ext/couchbase/core/tracing/tracer_wrapper.cxx +17 -24
- data/ext/couchbase/core/tracing/tracer_wrapper.hxx +8 -10
- data/ext/couchbase/core/tracing/wrapper_sdk_tracer.cxx +114 -0
- data/ext/couchbase/core/tracing/wrapper_sdk_tracer.hxx +85 -0
- data/ext/couchbase/core/transactions/attempt_context_impl.cxx +16 -14
- data/ext/couchbase/core/transactions/attempt_context_impl.hxx +4 -4
- data/ext/couchbase/core/transactions/transactions.cxx +1 -1
- data/ext/couchbase/core/transactions/transactions_cleanup.cxx +1 -2
- data/ext/couchbase/core/utils/byteswap.hxx +12 -0
- data/ext/couchbase/core/utils/concurrent_fixed_priority_queue.hxx +102 -0
- data/ext/couchbase/core/utils/connection_string.cxx +2 -0
- data/ext/couchbase/couchbase/certificate_authenticator.hxx +1 -0
- data/ext/couchbase/couchbase/cluster.hxx +47 -0
- data/ext/couchbase/couchbase/cluster_options.hxx +16 -0
- data/ext/couchbase/couchbase/collection.hxx +60 -15
- data/ext/couchbase/couchbase/error_codes.hxx +48 -48
- data/ext/couchbase/couchbase/jwt_authenticator.hxx +52 -0
- data/ext/couchbase/couchbase/metrics/meter.hxx +2 -1
- data/ext/couchbase/couchbase/metrics/otel_meter.hxx +75 -80
- data/ext/couchbase/couchbase/network_options.hxx +19 -0
- data/ext/couchbase/couchbase/password_authenticator.hxx +1 -0
- data/ext/couchbase/couchbase/tracing/otel_tracer.hxx +15 -17
- data/ext/couchbase/couchbase/tracing/request_span.hxx +2 -2
- data/ext/couchbase.cxx +4 -0
- data/ext/extconf.rb +1 -0
- data/ext/rcb_analytics.cxx +157 -47
- data/ext/rcb_backend.cxx +118 -71
- data/ext/rcb_buckets.cxx +39 -16
- data/ext/rcb_collections.cxx +36 -12
- data/ext/rcb_crud.cxx +587 -294
- data/ext/rcb_hdr_histogram.cxx +219 -0
- data/ext/rcb_hdr_histogram.hxx +28 -0
- data/ext/rcb_multi.cxx +142 -59
- data/ext/rcb_observability.cxx +132 -0
- data/ext/rcb_observability.hxx +49 -0
- data/ext/rcb_query.cxx +77 -27
- data/ext/rcb_search.cxx +92 -31
- data/ext/rcb_users.cxx +69 -26
- data/ext/rcb_utils.cxx +91 -0
- data/ext/rcb_utils.hxx +141 -168
- data/ext/rcb_views.cxx +36 -12
- data/lib/active_support/cache/couchbase_store.rb +6 -6
- data/lib/couchbase/authenticator.rb +14 -0
- data/lib/couchbase/binary_collection.rb +37 -22
- data/lib/couchbase/bucket.rb +46 -31
- data/lib/couchbase/cluster.rb +146 -61
- data/lib/couchbase/collection.rb +257 -186
- data/lib/couchbase/datastructures/couchbase_list.rb +81 -50
- data/lib/couchbase/datastructures/couchbase_map.rb +86 -50
- data/lib/couchbase/datastructures/couchbase_queue.rb +64 -38
- data/lib/couchbase/datastructures/couchbase_set.rb +57 -41
- data/lib/couchbase/deprecations.rb +1 -1
- data/lib/couchbase/diagnostics.rb +8 -8
- data/lib/couchbase/errors.rb +6 -0
- data/lib/couchbase/management/analytics_index_manager.rb +90 -59
- data/lib/couchbase/management/bucket_manager.rb +73 -45
- data/lib/couchbase/management/collection_manager.rb +86 -43
- data/lib/couchbase/management/collection_query_index_manager.rb +56 -33
- data/lib/couchbase/management/query_index_manager.rb +88 -36
- data/lib/couchbase/management/scope_search_index_manager.rb +119 -52
- data/lib/couchbase/management/search_index_manager.rb +401 -178
- data/lib/couchbase/management/user_manager.rb +343 -174
- data/lib/couchbase/management/view_index_manager.rb +166 -73
- data/lib/couchbase/metrics/logging_meter.rb +108 -0
- data/lib/couchbase/metrics/logging_value_recorder.rb +50 -0
- data/lib/couchbase/metrics/meter.rb +27 -0
- data/lib/couchbase/metrics/noop_meter.rb +30 -0
- data/lib/couchbase/metrics/noop_value_recorder.rb +27 -0
- data/lib/couchbase/metrics/value_recorder.rb +25 -0
- data/lib/couchbase/options.rb +69 -3
- data/lib/couchbase/protostellar/cluster.rb +3 -0
- data/lib/couchbase/scope.rb +62 -48
- data/lib/couchbase/search_options.rb +18 -18
- data/lib/couchbase/tracing/noop_span.rb +29 -0
- data/lib/couchbase/tracing/noop_tracer.rb +29 -0
- data/lib/couchbase/tracing/request_span.rb +34 -0
- data/lib/couchbase/tracing/request_tracer.rb +28 -0
- data/lib/couchbase/tracing/threshold_logging_span.rb +112 -0
- data/lib/couchbase/tracing/threshold_logging_tracer.rb +231 -0
- data/lib/couchbase/utils/hdr_histogram.rb +55 -0
- data/lib/couchbase/utils/observability.rb +257 -0
- data/lib/couchbase/utils/observability_constants.rb +200 -0
- data/lib/couchbase/utils/stdlib_logger_adapter.rb +1 -3
- data/lib/couchbase/version.rb +1 -1
- data/lib/couchbase.rb +2 -2
- metadata +58 -6
|
@@ -24,41 +24,41 @@ namespace couchbase
|
|
|
24
24
|
#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
|
|
25
25
|
namespace core::impl
|
|
26
26
|
{
|
|
27
|
-
|
|
28
|
-
common_category() noexcept
|
|
27
|
+
auto
|
|
28
|
+
common_category() noexcept -> const std::error_category&;
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
key_value_category() noexcept
|
|
30
|
+
auto
|
|
31
|
+
key_value_category() noexcept -> const std::error_category&;
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
query_category() noexcept
|
|
33
|
+
auto
|
|
34
|
+
query_category() noexcept -> const std::error_category&;
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
analytics_category() noexcept
|
|
36
|
+
auto
|
|
37
|
+
analytics_category() noexcept -> const std::error_category&;
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
search_category() noexcept
|
|
39
|
+
auto
|
|
40
|
+
search_category() noexcept -> const std::error_category&;
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
view_category() noexcept
|
|
42
|
+
auto
|
|
43
|
+
view_category() noexcept -> const std::error_category&;
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
management_category() noexcept
|
|
45
|
+
auto
|
|
46
|
+
management_category() noexcept -> const std::error_category&;
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
field_level_encryption_category() noexcept
|
|
48
|
+
auto
|
|
49
|
+
field_level_encryption_category() noexcept -> const std::error_category&;
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
network_category() noexcept
|
|
51
|
+
auto
|
|
52
|
+
network_category() noexcept -> const std::error_category&;
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
streaming_json_lexer_category() noexcept
|
|
54
|
+
auto
|
|
55
|
+
streaming_json_lexer_category() noexcept -> const std::error_category&;
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
transaction_category() noexcept
|
|
57
|
+
auto
|
|
58
|
+
transaction_category() noexcept -> const std::error_category&;
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
transaction_op_category() noexcept
|
|
60
|
+
auto
|
|
61
|
+
transaction_op_category() noexcept -> const std::error_category&;
|
|
62
62
|
|
|
63
63
|
} // namespace core::impl
|
|
64
64
|
#endif
|
|
@@ -1151,74 +1151,74 @@ enum class transaction_op {
|
|
|
1151
1151
|
};
|
|
1152
1152
|
|
|
1153
1153
|
#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
|
|
1154
|
-
inline
|
|
1155
|
-
make_error_code(common e) noexcept
|
|
1154
|
+
inline auto
|
|
1155
|
+
make_error_code(common e) noexcept -> std::error_code
|
|
1156
1156
|
{
|
|
1157
1157
|
return { static_cast<int>(e), core::impl::common_category() };
|
|
1158
1158
|
}
|
|
1159
1159
|
|
|
1160
|
-
inline
|
|
1161
|
-
make_error_code(key_value e)
|
|
1160
|
+
inline auto
|
|
1161
|
+
make_error_code(key_value e) -> std::error_code
|
|
1162
1162
|
{
|
|
1163
1163
|
return { static_cast<int>(e), core::impl::key_value_category() };
|
|
1164
1164
|
}
|
|
1165
1165
|
|
|
1166
|
-
inline
|
|
1167
|
-
make_error_code(query e)
|
|
1166
|
+
inline auto
|
|
1167
|
+
make_error_code(query e) -> std::error_code
|
|
1168
1168
|
{
|
|
1169
1169
|
return { static_cast<int>(e), core::impl::query_category() };
|
|
1170
1170
|
}
|
|
1171
1171
|
|
|
1172
|
-
inline
|
|
1173
|
-
make_error_code(search e)
|
|
1172
|
+
inline auto
|
|
1173
|
+
make_error_code(search e) -> std::error_code
|
|
1174
1174
|
{
|
|
1175
1175
|
return { static_cast<int>(e), core::impl::search_category() };
|
|
1176
1176
|
}
|
|
1177
1177
|
|
|
1178
|
-
inline
|
|
1179
|
-
make_error_code(view e)
|
|
1178
|
+
inline auto
|
|
1179
|
+
make_error_code(view e) -> std::error_code
|
|
1180
1180
|
{
|
|
1181
1181
|
return { static_cast<int>(e), core::impl::view_category() };
|
|
1182
1182
|
}
|
|
1183
1183
|
|
|
1184
|
-
inline
|
|
1185
|
-
make_error_code(analytics e)
|
|
1184
|
+
inline auto
|
|
1185
|
+
make_error_code(analytics e) -> std::error_code
|
|
1186
1186
|
{
|
|
1187
1187
|
return { static_cast<int>(e), core::impl::analytics_category() };
|
|
1188
1188
|
}
|
|
1189
1189
|
|
|
1190
|
-
inline
|
|
1191
|
-
make_error_code(management e)
|
|
1190
|
+
inline auto
|
|
1191
|
+
make_error_code(management e) -> std::error_code
|
|
1192
1192
|
{
|
|
1193
1193
|
return { static_cast<int>(e), core::impl::management_category() };
|
|
1194
1194
|
}
|
|
1195
1195
|
|
|
1196
|
-
inline
|
|
1197
|
-
make_error_code(network e)
|
|
1196
|
+
inline auto
|
|
1197
|
+
make_error_code(network e) -> std::error_code
|
|
1198
1198
|
{
|
|
1199
1199
|
return { static_cast<int>(e), core::impl::network_category() };
|
|
1200
1200
|
}
|
|
1201
1201
|
|
|
1202
|
-
inline
|
|
1203
|
-
make_error_code(field_level_encryption e)
|
|
1202
|
+
inline auto
|
|
1203
|
+
make_error_code(field_level_encryption e) -> std::error_code
|
|
1204
1204
|
{
|
|
1205
1205
|
return { static_cast<int>(e), core::impl::field_level_encryption_category() };
|
|
1206
1206
|
}
|
|
1207
1207
|
|
|
1208
|
-
inline
|
|
1209
|
-
make_error_code(streaming_json_lexer e)
|
|
1208
|
+
inline auto
|
|
1209
|
+
make_error_code(streaming_json_lexer e) -> std::error_code
|
|
1210
1210
|
{
|
|
1211
1211
|
return { static_cast<int>(e), core::impl::streaming_json_lexer_category() };
|
|
1212
1212
|
}
|
|
1213
1213
|
|
|
1214
|
-
inline
|
|
1215
|
-
make_error_code(transaction e)
|
|
1214
|
+
inline auto
|
|
1215
|
+
make_error_code(transaction e) -> std::error_code
|
|
1216
1216
|
{
|
|
1217
1217
|
return { static_cast<int>(e), core::impl::transaction_category() };
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
1220
|
-
inline
|
|
1221
|
-
make_error_code(transaction_op e)
|
|
1220
|
+
inline auto
|
|
1221
|
+
make_error_code(transaction_op e) -> std::error_code
|
|
1222
1222
|
{
|
|
1223
1223
|
return { static_cast<int>(e), core::impl::transaction_op_category() };
|
|
1224
1224
|
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
2
|
+
/*
|
|
3
|
+
* Copyright 2020-Present Couchbase, Inc.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
#pragma once
|
|
19
|
+
|
|
20
|
+
#include <string>
|
|
21
|
+
|
|
22
|
+
namespace couchbase
|
|
23
|
+
{
|
|
24
|
+
/**
|
|
25
|
+
* A JWT authenticator which uses a JSON Web Token (JWT) to authenticate with the cluster.
|
|
26
|
+
*
|
|
27
|
+
* @since 1.3.0
|
|
28
|
+
* @uncommitted
|
|
29
|
+
*/
|
|
30
|
+
class jwt_authenticator
|
|
31
|
+
{
|
|
32
|
+
public:
|
|
33
|
+
/**
|
|
34
|
+
* Creates a JWT authenticator with the provided token.
|
|
35
|
+
*
|
|
36
|
+
* @param token the JWT
|
|
37
|
+
*
|
|
38
|
+
* @since 1.3.0
|
|
39
|
+
* @uncommitted
|
|
40
|
+
*/
|
|
41
|
+
explicit jwt_authenticator(std::string token)
|
|
42
|
+
: token_{ std::move(token) }
|
|
43
|
+
{
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
private:
|
|
47
|
+
std::string token_;
|
|
48
|
+
|
|
49
|
+
friend class cluster_options;
|
|
50
|
+
friend class cluster;
|
|
51
|
+
};
|
|
52
|
+
} // namespace couchbase
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
#pragma once
|
|
19
19
|
|
|
20
|
+
#include <cstdint>
|
|
20
21
|
#include <map>
|
|
21
22
|
#include <memory>
|
|
22
23
|
#include <string>
|
|
@@ -33,7 +34,7 @@ public:
|
|
|
33
34
|
auto operator=(value_recorder&& other) -> value_recorder& = default;
|
|
34
35
|
virtual ~value_recorder() = default;
|
|
35
36
|
|
|
36
|
-
virtual void record_value(int64_t value) = 0;
|
|
37
|
+
virtual void record_value(std::int64_t value) = 0;
|
|
37
38
|
};
|
|
38
39
|
|
|
39
40
|
class meter
|
|
@@ -17,75 +17,50 @@
|
|
|
17
17
|
|
|
18
18
|
#pragma once
|
|
19
19
|
|
|
20
|
-
#include "opentelemetry/sdk/metrics/meter.h"
|
|
21
20
|
#include <couchbase/metrics/meter.hxx>
|
|
22
21
|
|
|
22
|
+
#include <opentelemetry/context/context.h>
|
|
23
|
+
#include <opentelemetry/metrics/meter.h>
|
|
24
|
+
#include <opentelemetry/metrics/sync_instruments.h>
|
|
25
|
+
|
|
23
26
|
#include <algorithm>
|
|
24
|
-
#include <
|
|
25
|
-
#include <
|
|
27
|
+
#include <memory>
|
|
28
|
+
#include <mutex>
|
|
29
|
+
#include <shared_mutex>
|
|
26
30
|
#include <utility>
|
|
27
|
-
|
|
28
|
-
using couchbase::metrics::meter;
|
|
29
|
-
using couchbase::metrics::value_recorder;
|
|
30
|
-
|
|
31
|
-
namespace nostd = opentelemetry::nostd;
|
|
32
|
-
namespace metrics_api = opentelemetry::metrics;
|
|
33
|
-
namespace metrics_sdk = opentelemetry::sdk::metrics;
|
|
31
|
+
#include <variant>
|
|
34
32
|
|
|
35
33
|
namespace couchbase::metrics
|
|
36
34
|
{
|
|
37
|
-
|
|
38
|
-
class otel_sync_histogram
|
|
39
|
-
{
|
|
40
|
-
public:
|
|
41
|
-
otel_sync_histogram(nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter)
|
|
42
|
-
: histogram_counter_(histogram_counter)
|
|
43
|
-
{
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
void record(std::uint64_t value,
|
|
47
|
-
const opentelemetry::common::KeyValueIterable& tags,
|
|
48
|
-
opentelemetry::context::Context& ctx)
|
|
49
|
-
{
|
|
50
|
-
histogram_counter_->Record(value, tags, ctx);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
private:
|
|
54
|
-
nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter_;
|
|
55
|
-
std::mutex mutex_;
|
|
56
|
-
};
|
|
57
|
-
|
|
35
|
+
template<typename T>
|
|
58
36
|
class otel_value_recorder : public couchbase::metrics::value_recorder
|
|
59
37
|
{
|
|
60
38
|
public:
|
|
61
39
|
explicit otel_value_recorder(
|
|
62
|
-
nostd::shared_ptr<
|
|
40
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<T>> histogram,
|
|
63
41
|
const std::map<std::string, std::string>& tags)
|
|
64
|
-
:
|
|
65
|
-
, tags_
|
|
66
|
-
{
|
|
67
|
-
}
|
|
68
|
-
void record_value(std::int64_t value) override
|
|
42
|
+
: histogram_{ std::move(histogram) }
|
|
43
|
+
, tags_{ tags }
|
|
69
44
|
{
|
|
70
|
-
|
|
71
|
-
auto uvalue = static_cast<std::uint64_t>(value);
|
|
72
|
-
histogram_counter_->Record(
|
|
73
|
-
uvalue, opentelemetry::common::KeyValueIterableView<decltype(tags_)>{ tags_ }, context_);
|
|
45
|
+
tags_.erase("__unit");
|
|
74
46
|
}
|
|
75
47
|
|
|
76
|
-
|
|
77
|
-
{
|
|
78
|
-
return tags_;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
nostd::shared_ptr<metrics_api::Histogram<std::uint64_t>> histogram_counter()
|
|
48
|
+
void record_value(std::int64_t value) override
|
|
82
49
|
{
|
|
83
|
-
|
|
50
|
+
if constexpr (std::is_same_v<T, double>) {
|
|
51
|
+
auto value_in_seconds = static_cast<double>(value) / 1'000'000.0;
|
|
52
|
+
histogram_->Record(
|
|
53
|
+
value_in_seconds, opentelemetry::common::KeyValueIterableView{ tags_ }, context_);
|
|
54
|
+
} else {
|
|
55
|
+
value = std::max<int64_t>(value, 0);
|
|
56
|
+
auto uvalue = static_cast<std::uint64_t>(value);
|
|
57
|
+
histogram_->Record(uvalue, opentelemetry::common::KeyValueIterableView{ tags_ }, context_);
|
|
58
|
+
}
|
|
84
59
|
}
|
|
85
60
|
|
|
86
61
|
private:
|
|
87
|
-
nostd::shared_ptr<
|
|
88
|
-
|
|
62
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<T>> histogram_;
|
|
63
|
+
std::map<std::string, std::string> tags_{};
|
|
89
64
|
opentelemetry::context::Context context_{};
|
|
90
65
|
std::mutex mutex_;
|
|
91
66
|
};
|
|
@@ -93,47 +68,67 @@ private:
|
|
|
93
68
|
class otel_meter : public couchbase::metrics::meter
|
|
94
69
|
{
|
|
95
70
|
public:
|
|
96
|
-
explicit otel_meter(nostd::shared_ptr<
|
|
97
|
-
: meter_(meter)
|
|
71
|
+
explicit otel_meter(opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Meter> meter)
|
|
72
|
+
: meter_{ std::move(meter) }
|
|
98
73
|
{
|
|
99
74
|
}
|
|
100
75
|
|
|
101
76
|
auto get_value_recorder(const std::string& name, const std::map<std::string, std::string>& tags)
|
|
102
77
|
-> std::shared_ptr<value_recorder> override
|
|
103
78
|
{
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
// Note we'd like to make one with more buckets than default, given the range of
|
|
110
|
-
// response times we'd like to display (queries vs kv for instance), but otel
|
|
111
|
-
// api doesn't seem to allow this.
|
|
112
|
-
return recorders_
|
|
113
|
-
.insert({ name,
|
|
114
|
-
std::make_shared<otel_value_recorder>(
|
|
115
|
-
meter_->CreateUInt64Histogram(name, "", "us"), tags) })
|
|
116
|
-
->second;
|
|
79
|
+
bool in_seconds{ false };
|
|
80
|
+
if (tags.count("__unit") > 0) {
|
|
81
|
+
if (tags.at("__unit") == "s") {
|
|
82
|
+
in_seconds = true;
|
|
83
|
+
}
|
|
117
84
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
85
|
+
|
|
86
|
+
{
|
|
87
|
+
// Check if we already have the histogram
|
|
88
|
+
std::shared_lock lock(mutex_);
|
|
89
|
+
if (in_seconds) {
|
|
90
|
+
if (const auto it = double_histograms_.find(name); it != double_histograms_.end()) {
|
|
91
|
+
return std::make_shared<otel_value_recorder<double>>(it->second, tags);
|
|
92
|
+
}
|
|
93
|
+
} else {
|
|
94
|
+
if (const auto it = uint_histograms_.find(name); it != uint_histograms_.end()) {
|
|
95
|
+
return std::make_shared<otel_value_recorder<std::uint64_t>>(it->second, tags);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
{
|
|
101
|
+
// We have to check if we already have the histogram again, before creating it, in case
|
|
102
|
+
// another thread created it while we were waiting for the exclusive lock
|
|
103
|
+
std::scoped_lock lock(mutex_);
|
|
104
|
+
if (in_seconds) {
|
|
105
|
+
if (const auto it = double_histograms_.find(name); it != double_histograms_.end()) {
|
|
106
|
+
return std::make_shared<otel_value_recorder<double>>(it->second, tags);
|
|
107
|
+
}
|
|
108
|
+
// Not found, we have to create it
|
|
109
|
+
auto histogram = meter_->CreateDoubleHistogram(name, "", "s");
|
|
110
|
+
double_histograms_.emplace(name, std::move(histogram));
|
|
111
|
+
return std::make_shared<otel_value_recorder<double>>(double_histograms_.at(name), tags);
|
|
112
|
+
} else {
|
|
113
|
+
if (const auto it = uint_histograms_.find(name); it != uint_histograms_.end()) {
|
|
114
|
+
return std::make_shared<otel_value_recorder<std::uint64_t>>(it->second, tags);
|
|
115
|
+
}
|
|
116
|
+
// Not found, we have to create it
|
|
117
|
+
auto histogram = meter_->CreateUInt64Histogram(name);
|
|
118
|
+
uint_histograms_.emplace(name, std::move(histogram));
|
|
119
|
+
return std::make_shared<otel_value_recorder<std::uint64_t>>(uint_histograms_.at(name),
|
|
120
|
+
tags);
|
|
123
121
|
}
|
|
124
122
|
}
|
|
125
|
-
// if you are here, we need to add one with these tags and the histogram associated with the
|
|
126
|
-
// name.
|
|
127
|
-
return recorders_
|
|
128
|
-
.insert(
|
|
129
|
-
{ name,
|
|
130
|
-
std::make_shared<otel_value_recorder>(it.first->second->histogram_counter(), tags) })
|
|
131
|
-
->second;
|
|
132
123
|
}
|
|
133
124
|
|
|
134
125
|
private:
|
|
135
|
-
nostd::shared_ptr<
|
|
136
|
-
std::
|
|
137
|
-
std::
|
|
126
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Meter> meter_;
|
|
127
|
+
std::shared_mutex mutex_;
|
|
128
|
+
std::map<std::string, opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<double>>>
|
|
129
|
+
double_histograms_;
|
|
130
|
+
std::map<std::string,
|
|
131
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::metrics::Histogram<std::uint64_t>>>
|
|
132
|
+
uint_histograms_;
|
|
138
133
|
};
|
|
139
134
|
} // namespace couchbase::metrics
|
|
@@ -114,6 +114,22 @@ public:
|
|
|
114
114
|
return *this;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
/**
|
|
118
|
+
* Enables or disables lazy connection of data endpoints.
|
|
119
|
+
*
|
|
120
|
+
* When enabled, connections are established only when the first operation for a given endpoint is
|
|
121
|
+
* scheduled, rather than at cluster object construction time.
|
|
122
|
+
*
|
|
123
|
+
* @volatile This option is considered unstable and may change in future releases.
|
|
124
|
+
*
|
|
125
|
+
* @since 1.3.0
|
|
126
|
+
*/
|
|
127
|
+
auto enable_lazy_connections(bool enable) -> network_options&
|
|
128
|
+
{
|
|
129
|
+
enable_lazy_connections_ = enable;
|
|
130
|
+
return *this;
|
|
131
|
+
}
|
|
132
|
+
|
|
117
133
|
struct built {
|
|
118
134
|
std::string network;
|
|
119
135
|
std::string server_group;
|
|
@@ -123,6 +139,7 @@ public:
|
|
|
123
139
|
std::chrono::milliseconds config_poll_interval;
|
|
124
140
|
std::chrono::milliseconds idle_http_connection_timeout;
|
|
125
141
|
std::optional<std::size_t> max_http_connections;
|
|
142
|
+
bool enable_lazy_connections;
|
|
126
143
|
};
|
|
127
144
|
|
|
128
145
|
[[nodiscard]] auto build() const -> built
|
|
@@ -136,6 +153,7 @@ public:
|
|
|
136
153
|
config_poll_interval_,
|
|
137
154
|
idle_http_connection_timeout_,
|
|
138
155
|
max_http_connections_,
|
|
156
|
+
enable_lazy_connections_,
|
|
139
157
|
};
|
|
140
158
|
}
|
|
141
159
|
|
|
@@ -149,5 +167,6 @@ private:
|
|
|
149
167
|
std::chrono::milliseconds config_poll_floor_{ default_config_poll_floor };
|
|
150
168
|
std::chrono::milliseconds idle_http_connection_timeout_{ default_idle_http_connection_timeout };
|
|
151
169
|
std::optional<std::size_t> max_http_connections_{};
|
|
170
|
+
bool enable_lazy_connections_{ false };
|
|
152
171
|
};
|
|
153
172
|
} // namespace couchbase
|
|
@@ -18,18 +18,15 @@
|
|
|
18
18
|
#pragma once
|
|
19
19
|
|
|
20
20
|
#include <couchbase/tracing/request_tracer.hxx>
|
|
21
|
-
|
|
22
|
-
#include <opentelemetry/sdk/trace/simple_processor.h>
|
|
23
|
-
#include <opentelemetry/sdk/trace/tracer_provider.h>
|
|
21
|
+
|
|
24
22
|
#include <opentelemetry/trace/tracer.h>
|
|
25
23
|
|
|
26
|
-
namespace nostd = opentelemetry::nostd;
|
|
27
24
|
namespace couchbase::tracing
|
|
28
25
|
{
|
|
29
26
|
class otel_request_span : public couchbase::tracing::request_span
|
|
30
27
|
{
|
|
31
28
|
public:
|
|
32
|
-
explicit otel_request_span(nostd::shared_ptr<opentelemetry::trace::Span> span)
|
|
29
|
+
explicit otel_request_span(opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span> span)
|
|
33
30
|
: span_(std::move(span))
|
|
34
31
|
{
|
|
35
32
|
}
|
|
@@ -45,42 +42,43 @@ public:
|
|
|
45
42
|
{
|
|
46
43
|
span_->End();
|
|
47
44
|
}
|
|
48
|
-
nostd::shared_ptr<opentelemetry::trace::Span>
|
|
45
|
+
auto wrapped_span() -> opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span>
|
|
49
46
|
{
|
|
50
47
|
return span_;
|
|
51
48
|
}
|
|
52
49
|
|
|
53
50
|
private:
|
|
54
|
-
nostd::shared_ptr<opentelemetry::trace::Span> span_;
|
|
51
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span> span_;
|
|
55
52
|
};
|
|
56
53
|
|
|
57
54
|
class otel_request_tracer : public couchbase::tracing::request_tracer
|
|
58
55
|
{
|
|
59
56
|
public:
|
|
60
|
-
otel_request_tracer(
|
|
57
|
+
explicit otel_request_tracer(
|
|
58
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::trace::Tracer> tracer)
|
|
61
59
|
: tracer_(std::move(tracer))
|
|
62
60
|
{
|
|
63
61
|
}
|
|
64
62
|
|
|
65
|
-
auto start_span(std::string name, std::shared_ptr<couchbase::tracing::request_span> parent
|
|
63
|
+
auto start_span(std::string name, std::shared_ptr<couchbase::tracing::request_span> parent)
|
|
66
64
|
-> std::shared_ptr<couchbase::tracing::request_span> override
|
|
67
65
|
{
|
|
68
|
-
auto wrapped_parent = std::dynamic_pointer_cast<otel_request_span>(parent);
|
|
66
|
+
const auto wrapped_parent = std::dynamic_pointer_cast<otel_request_span>(parent);
|
|
67
|
+
opentelemetry::trace::StartSpanOptions opts;
|
|
68
|
+
opts.kind = opentelemetry::trace::SpanKind::kClient;
|
|
69
69
|
if (wrapped_parent) {
|
|
70
|
-
opentelemetry::trace::StartSpanOptions opts;
|
|
71
70
|
opts.parent = wrapped_parent->wrapped_span()->GetContext();
|
|
72
|
-
return std::make_shared<otel_request_span>(tracer_->StartSpan(name, opts));
|
|
73
71
|
}
|
|
74
|
-
return std::make_shared<otel_request_span>(tracer_->StartSpan(name));
|
|
72
|
+
return std::make_shared<otel_request_span>(tracer_->StartSpan(name, opts));
|
|
75
73
|
}
|
|
76
74
|
|
|
77
|
-
auto wrap_span(nostd::shared_ptr<opentelemetry::trace::Span> span)
|
|
75
|
+
auto wrap_span(opentelemetry::nostd::shared_ptr<opentelemetry::trace::Span> span)
|
|
78
76
|
-> std::shared_ptr<couchbase::tracing::otel_request_span>
|
|
79
77
|
{
|
|
80
|
-
return std::make_shared<couchbase::tracing::otel_request_span>(span);
|
|
78
|
+
return std::make_shared<couchbase::tracing::otel_request_span>(std::move(span));
|
|
81
79
|
}
|
|
82
80
|
|
|
83
81
|
private:
|
|
84
|
-
nostd::shared_ptr<opentelemetry::trace::Tracer> tracer_;
|
|
82
|
+
opentelemetry::nostd::shared_ptr<opentelemetry::trace::Tracer> tracer_;
|
|
85
83
|
};
|
|
86
|
-
} // namespace couchbase::tracing
|
|
84
|
+
} // namespace couchbase::tracing
|
|
@@ -51,12 +51,12 @@ public:
|
|
|
51
51
|
return name_;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
[[nodiscard]] auto parent() const -> std::shared_ptr<request_span>
|
|
54
|
+
[[nodiscard]] virtual auto parent() const -> std::shared_ptr<request_span>
|
|
55
55
|
{
|
|
56
56
|
return parent_;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
virtual auto uses_tags() const -> bool
|
|
59
|
+
[[nodiscard]] virtual auto uses_tags() const -> bool
|
|
60
60
|
{
|
|
61
61
|
return true;
|
|
62
62
|
}
|
data/ext/couchbase.cxx
CHANGED
|
@@ -25,8 +25,10 @@
|
|
|
25
25
|
#include "rcb_diagnostics.hxx"
|
|
26
26
|
#include "rcb_exceptions.hxx"
|
|
27
27
|
#include "rcb_extras.hxx"
|
|
28
|
+
#include "rcb_hdr_histogram.hxx"
|
|
28
29
|
#include "rcb_logger.hxx"
|
|
29
30
|
#include "rcb_multi.hxx"
|
|
31
|
+
#include "rcb_observability.hxx"
|
|
30
32
|
#include "rcb_query.hxx"
|
|
31
33
|
#include "rcb_range_scan.hxx"
|
|
32
34
|
#include "rcb_search.hxx"
|
|
@@ -64,5 +66,7 @@ Init_libcouchbase(void)
|
|
|
64
66
|
couchbase::ruby::init_diagnostics(cBackend);
|
|
65
67
|
couchbase::ruby::init_extras(cBackend);
|
|
66
68
|
couchbase::ruby::init_logger_methods(cBackend);
|
|
69
|
+
couchbase::ruby::init_hdr_histogram(mCouchbase);
|
|
70
|
+
couchbase::ruby::init_observability(cBackend);
|
|
67
71
|
}
|
|
68
72
|
}
|
data/ext/extconf.rb
CHANGED