Skip to content

Commit c0d08a6

Browse files
authored
1 parent 0b8497c commit c0d08a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opentelemetry/proto/profiles/v1development/profiles.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ message Profile {
254254
// interpretation of results.
255255

256256
// Time of collection (UTC) represented as nanoseconds past the epoch.
257-
int64 time_nanos = 4;
257+
fixed64 time_unix_nano = 4;
258258
// Duration of the profile, if a duration makes sense.
259-
int64 duration_nanos = 5;
259+
uint64 duration_nano = 5;
260260
// The kind of events between sampled occurrences.
261261
// e.g [ "cpu","cycles" ] or [ "heap","bytes" ]
262262
ValueType period_type = 6;
@@ -431,7 +431,7 @@ message Sample {
431431

432432
// Timestamps associated with Sample represented in nanoseconds. These
433433
// timestamps should fall within the Profile's time range.
434-
repeated uint64 timestamps_unix_nano = 6;
434+
repeated fixed64 timestamps_unix_nano = 6;
435435
}
436436

437437
// Describes the mapping of a binary in memory, including its address range,

0 commit comments

Comments
 (0)