Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static ProfileData create(
ValueTypeData periodType,
long period,
String profileId,
int droppedAttributesCount,
int totalAttributeCount,
String originalPayloadFormat,
ByteBuffer originalPayload,
List<Integer> attributeIndices) {
Expand All @@ -54,7 +54,7 @@ static ProfileData create(
periodType,
period,
profileId,
droppedAttributesCount,
totalAttributeCount,
originalPayloadFormat,
originalPayload,
attributeIndices);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ static SampleData create(
List<Long> getValues();

/**
* Timestamps associated with Sample represented in ms. These timestamps are expected to fall
* within the Profile's time range.
* Timestamps associated with Sample represented as nanoseconds past the epoch. These timestamps
* are expected to fall within the Profile's time range.
*/
List<Long> getTimestamps();
}
Loading