labels.go 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. // Copyright (C) 2014 Audrius Butkevičius
  2. package main
  3. var jsonAttributeLabels = map[string]string{
  4. "folderMaxMiB": "Largest folder size in MiB",
  5. "folderMaxFiles": "Largest folder file count",
  6. "longVersion": "Long version",
  7. "totMiB": "Total size in MiB",
  8. "totFiles": "Total files",
  9. "uniqueID": "Unique ID",
  10. "numFolders": "Folder count",
  11. "numDevices": "Device count",
  12. "memoryUsageMiB": "Memory usage in MiB",
  13. "memorySize": "Total memory in MiB",
  14. "sha256Perf": "SHA256 Benchmark",
  15. "At": "Last contacted",
  16. "Completion": "Percent complete",
  17. "InBytesTotal": "Total bytes received",
  18. "OutBytesTotal": "Total bytes sent",
  19. "ClientVersion": "Client version",
  20. "alloc": "Memory allocated in bytes",
  21. "sys": "Memory using in bytes",
  22. "cpuPercent": "CPU load in percent",
  23. "extAnnounceOK": "External announcments working",
  24. "goroutines": "Number of Go routines",
  25. "myID": "Client ID",
  26. "tilde": "Tilde expands to",
  27. "arch": "Architecture",
  28. "os": "OS",
  29. }