Skip to content

Commit c75f4af

Browse files
committed
return overall fragment usage stats too
1 parent ad62b3f commit c75f4af

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

proto/viam/app/v1/app.proto

+10-6
Original file line numberDiff line numberDiff line change
@@ -813,6 +813,7 @@ message Fragment {
813813
FragmentVisibility visibility = 12;
814814
// latest timestamp when fragment was updated
815815
google.protobuf.Timestamp last_updated = 13 [(tagger.v1.tags) = "bson:\"last_updated_at\""];
816+
repeated FragmentTag tags = 14;
816817
}
817818

818819
message FragmentHistoryEntry {
@@ -855,12 +856,16 @@ enum FragmentErrorType {
855856
FRAGMENT_ERROR_TYPE_CYCLE_DETECTED = 4;
856857
}
857858

859+
message FragmentUsageStats {
860+
int32 organizations = 1;
861+
int32 machines = 2;
862+
int32 machines_in_current_org = 3;
863+
}
864+
858865
message FragmentUsage {
859866
string fragment_id = 1;
860-
int32 organizations = 2;
861-
int32 machines = 3;
862-
int32 machines_in_current_org = 4;
863-
string version = 5;
867+
FragmentUsageStats overall_usage = 2;
868+
map<string, FragmentUsageStats> usage_by_version = 3;
864869
}
865870

866871
message ResolvedFragment {
@@ -888,9 +893,8 @@ message GetFragmentRequest {
888893

889894
message GetFragmentResponse {
890895
Fragment fragment = 1;
891-
repeated FragmentUsage usages = 2;
896+
FragmentUsage fragment_usage = 2;
892897
repeated FragmentVersion versions = 3;
893-
repeated FragmentTag tags = 4;
894898
}
895899

896900
message CreateFragmentRequest {

0 commit comments

Comments
 (0)