I am exporting Dialogflow CX logs into a BQ table. There is a response field(JSON) that contains a field called webhookLatencies. webhookLatencies contains two fields: nanos, and seconds. e.g.:
"webhookLatencies":[{"nanos":896000000,"seconds":19}]
What is meant by the two values? Why converting nanos to seconds doesn't give me the same value?
Solved! Go to Solution.
The type of that field is Duration: https://protobuf.dev/reference/protobuf/google.protobuf/#duration
So basically if you want to read it, you should read it in this way: the latency is 19 seconds and 896000000 nanos
The type of that field is Duration: https://protobuf.dev/reference/protobuf/google.protobuf/#duration
So basically if you want to read it, you should read it in this way: the latency is 19 seconds and 896000000 nanos
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |