We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e13f4a2 commit b76dd01Copy full SHA for b76dd01
src/proto/FunctionRpc.proto
@@ -255,6 +255,21 @@ message InvocationRequest {
255
256
// binding metadata from trigger
257
map<string, TypedData> trigger_metadata = 4;
258
+
259
+ // Populates activityId, tracestate and tags from host
260
+ RpcTraceContext trace_context = 5;
261
+}
262
263
+// Host sends ActivityId, traceStateString and Tags from host
264
+message RpcTraceContext {
265
+ // This corresponds to Activity.Current?.Id
266
+ string trace_parent = 1;
267
268
+ // This corresponds to Activity.Current?.TraceStateString
269
+ string trace_state = 2;
270
271
+ // This corresponds to Activity.Current?.Tags
272
+ map<string, string> attributes = 3;
273
}
274
275
// Host requests worker to cancel invocation
0 commit comments