Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed configs + Update React version #20

Open
wants to merge 1 commit into
base: mozaik-2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions conf/config-ga.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
host: 0.0.0.0
port: 5000

# define duration between each dashboard rotation (ms)
rotationDuration: 10000
# define duration between each dashboard rotation (s)
rotationDuration: 10

# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

extension: &extension analytics
startDate: &startDate 300daysAgo
Expand Down
5 changes: 3 additions & 2 deletions conf/config-github-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ port: 5000

# define duration between each dashboard rotation (seconds)
rotationDuration: 10
# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

extension: &extension github
github_user: &github_user plouc
Expand Down
5 changes: 3 additions & 2 deletions conf/config-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ port: 5000

# define duration between each dashboard rotation (seconds)
rotationDuration: 10
# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

extension: &extension github
github_user: &github_user plouc
Expand Down
9 changes: 5 additions & 4 deletions conf/config-gitlab-labels-charts.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
host: 0.0.0.0
port: 5000

# define duration between each dashboard rotation (ms)
rotationDuration: 8000
# define duration between each dashboard rotation (s)
rotationDuration: 8

# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

extension: &extension gitlab
gitlabProject: &gitlabProject gitlab-org/release-tools
Expand Down
9 changes: 5 additions & 4 deletions conf/config-gitlab.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
host: 0.0.0.0
port: 5000

# define duration between each dashboard rotation (ms)
rotationDuration: 8000
# define duration between each dashboard rotation (s)
rotationDuration: 8

# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

extension: &extension gitlab
gitlabProject: &gitlabProject gitlab-org/gitlab-ci-multi-runner
Expand Down
9 changes: 5 additions & 4 deletions conf/config-time.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
port: 5000

# define duration between each dashboard rotation (ms)
rotationDuration: 10000
# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define duration between each dashboard rotation (s)
rotationDuration: 10
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

dashboards:
- columns: 4
Expand Down
7 changes: 4 additions & 3 deletions conf/config-travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
port: 5000

# define duration between each dashboard rotation (seconds)
# define duration between each dashboard rotation (s)
rotationDuration: 10
# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

extension: &extension travis

Expand Down
9 changes: 5 additions & 4 deletions conf/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
#
port: 5000

# define duraton between each dashboard rotation (ms)
rotationDuration: 10000
# define the interval used by Mozaïk Bus to call registered APIs
apisPollInterval: 100000
# define duraton between each dashboard rotation (s)
rotationDuration: 10
# define the interval used by Mozaïk Bus to call registered APIs (ms)
apis:
pollInterval: 100000

dashboards:
- columns: 4
Expand Down
Loading