Page MenuHomePhabricator

Add a basic web UI for intracluster sync logs
ClosedPublic

Authored by epriestley on Nov 8 2018, 6:17 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jul 25, 10:07 PM
Unknown Object (File)
Sat, Jul 20, 11:26 AM
Unknown Object (File)
Wed, Jul 17, 2:04 AM
Unknown Object (File)
Fri, Jul 12, 11:03 PM
Unknown Object (File)
Fri, Jul 12, 9:01 AM
Unknown Object (File)
Tue, Jul 9, 5:50 AM
Unknown Object (File)
Mon, Jul 8, 11:56 PM
Unknown Object (File)
Jun 25 2024, 6:44 AM
Subscribers
None

Details

Summary

Depends on D19798. Ref T13216. This puts at least a basic UI on top of sync logs.

Test Plan

Viewed logs from the web UI and exported data. Note that these syncs are somewhat simulated since I my local cluster is somewhat-faked (i.e., not actually multiple machines).

Screen Shot 2018-11-08 at 10.16.57 AM.png (1×2 px, 359 KB)

Diff Detail

Repository
rP Phabricator
Branch
rlog3
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 21128
Build 28724: Run Core Tests
Build 28723: arc lint + arc unit

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Nov 8 2018, 6:18 PM
Harbormaster failed remote builds in B21121: Diff 47273!

Failing because of phutil_microseconds_since(...).

amckinley added inline comments.
src/applications/diffusion/query/DiffusionSyncLogSearchEngine.php
69–74

Should these be something other than PhabricatorPHIDExportField?

101

Could this actually happen, or is this just being very defensive?

src/applications/diffusion/view/DiffusionSyncLogListView.php
22

Same as above.

This revision is now accepted and ready to land.Nov 9 2018, 7:27 PM
epriestley added inline comments.
src/applications/diffusion/query/DiffusionSyncLogSearchEngine.php
69–74

Ah, yep. Thanks!

101

Can't happen -- I overlooked this when copy/pasting pull logs. A pull may not have a valid repository (e.g., git pull <does-not-exist.git> effectively 404s and has no corresponding repository) but a sync may not, and SyncEventQuery does not load logs with an invalid repository.

  • Remove if (repository) checks -- sync logs loaded by SyncEventQuery will always have a valid repository object attached.
  • Fix export type of version columns.
This revision was automatically updated to reflect the committed changes.