diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..04112eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Distribution / packaging +/_build diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..89cd70f --- /dev/null +++ b/_config.yml @@ -0,0 +1,31 @@ +title: Data Driven Development +author: Red Hat Artificial Intelligence Center of Excellence (AICoE) +logo: aicoe-logo.png +execute: + execute_notebooks: false + +# Only build files specified by the _toc +only_build_toc_files: true + +# Exclude any additional file types being built +exclude_patterns: [.github/*] + +# Information about where the book exists on the web +repository: + url: https://github.com/AICoE/data-driven-development # Online location of your book + path_to_book: "" # Optional path to your book, relative to the repository root + branch: main # Which branch of the repository should be used when creating links (optional) + +# Add GitHub buttons to your book +# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository +html: + use_issues_button: true + use_repository_button: true + google_analytics_id: "" # A GA id that can be used to track book views. + +# Launch button settings +launch_buttons: + notebook_interface: jupyterlab # The interface interactive links will activate ["classic", "jupyterlab"] + binderhub_url: https://mybinder.org # The URL of the BinderHub (e.g., https://mybinder.org) + jupyterhub_url: https://jupyterhub-opf-jupyterhub.apps.smaug.na.operate-first.cloud/ # The URL of the JupyterHub (e.g., https://datahub.berkeley.edu) + thebe: false # Add a thebe button to pages (requires the repository to run on Binder) diff --git a/_toc.yml b/_toc.yml new file mode 100644 index 0000000..0e3f20c --- /dev/null +++ b/_toc.yml @@ -0,0 +1,20 @@ +format: jb-book +root: README +parts: + - caption: Data Sources + chapters: + - file: data-sources/prometheus + - caption: Data Presentation + chapters: + - file: data-presentation/grafana + - file: data-presentation/superset + - caption: Monitoring Applications Guide + chapters: + - file: examples/README + - file: examples/kebechet/README + sections: + - file: examples/kebechet/tooling + - file: examples/kebechet/metrics + - file: examples/kebechet/collecting_and_storing_metrics + - file: examples/kebechet/accessing_metrics + - file: examples/kebechet/alerting diff --git a/aicoe-logo.png b/aicoe-logo.png new file mode 100644 index 0000000..707a4cd Binary files /dev/null and b/aicoe-logo.png differ