Skip to content

Commit d8c483f

Browse files
committed
Add in the API Call ID as an optional param
1 parent c023ad5 commit d8c483f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modeling-cmds/src/session.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ pub struct EngineParams {
2929
/// the session will be written out to this filename.
3030
/// For debugging.
3131
pub replay: Option<String>,
32+
/// API Call ID for distributed tracing
33+
pub api_call_id: Option<String>,
3234
}
3335

3436
impl Default for EngineParams {
@@ -43,6 +45,7 @@ impl Default for EngineParams {
4345
pool: None,
4446
show_grid: false,
4547
replay: None,
48+
api_call_id: None,
4649
}
4750
}
4851
}

0 commit comments

Comments
 (0)