cls.proto 507 B

12345678910111213141516171819202122232425262728293031323334
  1. syntax = "proto3";
  2. package cls;
  3. message Log
  4. {
  5. int64 time = 1;
  6. message Content
  7. {
  8. string key = 1;
  9. string value = 2;
  10. }
  11. repeated Content contents= 2;
  12. }
  13. message LogTag
  14. {
  15. string key = 1;
  16. string value = 2;
  17. }
  18. message LogGroup
  19. {
  20. repeated Log logs= 1;
  21. optional string contextFlow = 2;
  22. optional string filename = 3;
  23. optional string source = 4;
  24. repeated LogTag logTags = 5;
  25. }
  26. message LogGroupList
  27. {
  28. repeated LogGroup logGroupList = 1;
  29. }