| 122 | } |
| 123 | |
| 124 | void TracedNode::NoteInputReceived(const ExecBatch& batch) const { |
| 125 | std::string node_kind(node_->kind_name()); |
| 126 | EVENT_ON_CURRENT_SPAN( |
| 127 | node_kind + "::InputReceived", |
| 128 | {{"node.label", node_->label()}, {"node.batch_length", batch.length}}); |
| 129 | } |
| 130 | |
| 131 | [[nodiscard]] ::arrow::internal::tracing::Scope TracedNode::TraceFinish() const { |
| 132 | std::string node_kind(node_->kind_name()); |