| 113 | } |
| 114 | |
| 115 | [[nodiscard]] ::arrow::internal::tracing::Scope TracedNode::TraceInputReceived( |
| 116 | const ExecBatch& batch) const { |
| 117 | std::string node_kind(node_->kind_name()); |
| 118 | arrow::util::tracing::Span span; |
| 119 | return START_SCOPED_SPAN( |
| 120 | span, node_kind + "::InputReceived", |
| 121 | {{"node.label", node_->label()}, {"node.batch_length", batch.length}}); |
| 122 | } |
| 123 | |
| 124 | void TracedNode::NoteInputReceived(const ExecBatch& batch) const { |
| 125 | std::string node_kind(node_->kind_name()); |