Line data Source code
1 : #include "null_collector.h" 2 : 3 : #include "json.hpp" 4 : 5 : namespace datadog { 6 : namespace tracing { 7 : 8 13 : nlohmann::json NullCollector::config_json() const { 9 : // clang-format off 10 91 : return nlohmann::json::object({ 11 : {"type", "datadog::tracing::NullCollector"}, 12 26 : {"config", nlohmann::json::object({})}, 13 130 : }); 14 : // clang-format on 15 : } 16 : 17 : } // namespace tracing 18 : } // namespace datadog