-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87ec4cf
commit b19feb1
Showing
6 changed files
with
196 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# see https://github.com/ankane/blazer for more info | ||
|
||
data_sources: | ||
main: | ||
development: | ||
url: sqlite3:storage/development.sqlite3 | ||
production: | ||
url: sqlite3:storage/production.sqlite3 | ||
# statement timeout, in seconds | ||
# none by default | ||
# timeout: 15 | ||
|
||
# caching settings | ||
# can greatly improve speed | ||
# off by default | ||
# cache: | ||
# mode: slow # or all | ||
# expires_in: 60 # min | ||
# slow_threshold: 15 # sec, only used in slow mode | ||
|
||
# wrap queries in a transaction for safety | ||
# not necessary if you use a read-only user | ||
# true by default | ||
# use_transaction: false | ||
|
||
smart_variables: | ||
# zone_id: "SELECT id, name FROM zones ORDER BY name ASC" | ||
# period: ["day", "week", "month"] | ||
# status: {0: "Active", 1: "Archived"} | ||
|
||
linked_columns: | ||
# user_id: "/admin/users/{value}" | ||
|
||
smart_columns: | ||
# user_id: "SELECT id, name FROM users WHERE id IN {value}" | ||
|
||
# create audits | ||
audit: true | ||
|
||
# change the time zone | ||
# time_zone: "Pacific Time (US & Canada)" | ||
|
||
# class name of the user model | ||
# user_class: User | ||
|
||
# method name for the current user | ||
# user_method: current_user | ||
|
||
# method name for the display name | ||
# user_name: name | ||
|
||
# custom before_action to use for auth | ||
# before_action_method: require_admin | ||
|
||
# email to send checks from | ||
# from_email: [email protected] | ||
|
||
# webhook for Slack | ||
# slack_webhook_url: <%= ENV["BLAZER_SLACK_WEBHOOK_URL"] %> | ||
|
||
check_schedules: | ||
- "1 day" | ||
- "1 hour" | ||
- "5 minutes" | ||
# enable anomaly detection | ||
# note: with trend, time series are sent to https://trendapi.org | ||
# anomaly_checks: prophet / trend / anomaly_detection | ||
|
||
# enable forecasting | ||
# note: with trend, time series are sent to https://trendapi.org | ||
# forecasting: prophet / trend | ||
|
||
# enable map | ||
# mapbox_access_token: <%= ENV["MAPBOX_ACCESS_TOKEN"] %> | ||
|
||
# enable uploads | ||
# uploads: | ||
# url: <%= ENV["BLAZER_UPLOADS_URL"] %> | ||
# schema: uploads | ||
# data_source: main |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
class InstallBlazer < ActiveRecord::Migration[7.1] | ||
def change | ||
create_table :blazer_queries do |t| | ||
t.references :creator | ||
t.string :name | ||
t.text :description | ||
t.text :statement | ||
t.string :data_source | ||
t.string :status | ||
t.timestamps null: false | ||
end | ||
|
||
create_table :blazer_audits do |t| | ||
t.references :user | ||
t.references :query | ||
t.text :statement | ||
t.string :data_source | ||
t.datetime :created_at | ||
end | ||
|
||
create_table :blazer_dashboards do |t| | ||
t.references :creator | ||
t.string :name | ||
t.timestamps null: false | ||
end | ||
|
||
create_table :blazer_dashboard_queries do |t| | ||
t.references :dashboard | ||
t.references :query | ||
t.integer :position | ||
t.timestamps null: false | ||
end | ||
|
||
create_table :blazer_checks do |t| | ||
t.references :creator | ||
t.references :query | ||
t.string :state | ||
t.string :schedule | ||
t.text :emails | ||
t.text :slack_channels | ||
t.string :check_type | ||
t.text :message | ||
t.datetime :last_run_at | ||
t.timestamps null: false | ||
end | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.