Add Dashboard entity and TimeDayDimension OLAP entity#721
Open
moqui-industrial wants to merge 2 commits into
Open
Add Dashboard entity and TimeDayDimension OLAP entity#721moqui-industrial wants to merge 2 commits into
moqui-industrial wants to merge 2 commits into
Conversation
…bedding New Dashboard entity (moqui.screen.dashboard) stores dashboard URLs, types and descriptions in the database. Screens can load the appropriate dashboard URL at runtime (e.g. a per-device Grafana dashboard rendered in an iframe) rather than hard-coding locations in screen definitions. DashboardType enum type with seed values: DashScreenWidgets, DashKibana, DashGrafana. GrafanaRemote UserPermission added for controlling Grafana proxy access.
TimeDayDimension (moqui.olap) provides a time-of-day dimension table for analytics star schemas: hour, minute, second, military hour, quarter-hour, AM/PM, day period.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two additive entity additions:
1. Dashboard entity (
moqui.screen.dashboard)Stores references to embedded dashboards (Grafana, Kibana, custom iframes) in the database:
dashboardId(PK),dashboardName,dashboardTypeEnumId,dashboardUrl,description2. TimeDayDimension entity (
moqui.olap.TimeDayDimension)Time-of-day dimension table for analytics star schemas:
timeMinuteId(PK, HHMM format),hourOfDay,minuteOfHour,timeOfDayPeriod(Morning/Afternoon/Evening/Night),workShiftTimeDimension(date-level) for sub-day analytics slicing