Class StatusDashboardPublisherPersistentQueryCommunityTable

java.lang.Object
io.deephaven.status.dashboard.StatusDashboardPublisherPersistentQueryBase
io.deephaven.status.dashboard.StatusDashboardPublisherPersistentQueryCommunityTable

public class StatusDashboardPublisherPersistentQueryCommunityTable extends StatusDashboardPublisherPersistentQueryBase
Extension of StatusDashboardPublisherPersistentQueryBase that monitors table(s) within a persistent query. The persistent query should create community tables that contain a Timestamp column which has the latest updated timestamp. For example, to create such a table called PELPublisher for the ProcessEventLog in a groovy PQ:
PELPublisher = SortedBy.sortedLastBy(db.liveTable("DbInternal", "ProcessEventLog").where("Date=today()").view("Timestamp"), "Timestamp") As of this version, SortedBy.sortedLastBy won't work on community subscriptions, so we simply get the tail of a Timestamp column.