| 1426 | } |
| 1427 | |
| 1428 | TraceBatch::EventInfo::EventInfo(double time, const char* name, uint64_t id, const char* location) { |
| 1429 | fields.addField("Severity", format("%d", (int)TRACE_BATCH_IMPLICIT_SEVERITY)); |
| 1430 | fields.addField("Time", format("%.6f", time)); |
| 1431 | if (FLOW_KNOBS && FLOW_KNOBS->TRACE_DATETIME_ENABLED) { |
| 1432 | fields.addField("DateTime", TraceEvent::printRealTime(time)); |
| 1433 | } |
| 1434 | fields.addField("Type", name); |
| 1435 | fields.addField("ID", format("%016" PRIx64, id)); |
| 1436 | fields.addField("Location", location); |
| 1437 | } |
| 1438 | |
| 1439 | TraceBatch::AttachInfo::AttachInfo(double time, const char* name, uint64_t id, uint64_t to) { |
| 1440 | fields.addField("Severity", format("%d", (int)TRACE_BATCH_IMPLICIT_SEVERITY)); |