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

Acramsay/issue16 #32

Merged
merged 4 commits into from
Jan 17, 2024
Merged
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
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

---

*To improve, you must observe. Open O11y is one contribution from an internal Technical Advisory Group (TAG) focused on observability at [Liatrio](liatrio.com); geared towards this singular north star; enabling observability everywhere*
*To improve, you must observe. Developed by an Observability Technical Advisory Group (TAG) at [Liatrio](https://www.liatrio.com/), Open O11y is a set of documentation, references, and guidance focused on observability. Open O11y is guided by a singular north star, enabling observability everywhere.*

---

Expand Down Expand Up @@ -30,7 +30,7 @@ With that in mind, our goal is to help enable everyone in the industry observe t
Here's some things you'll find through Open O11y that help achieve this goal:

- Contributions to Open Source communities focused on O11y
- For example: [Open Telemetry](opentelemetry.io)
- For example: [Open Telemetry](https://opentelemetry.io/)
- Open-source automations published to get organizations and teams started quickly
- For example: An observability stack deployable in AWS
- Guidance on how to use those automations & scale
Expand Down
12 changes: 12 additions & 0 deletions docs/javascripts/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};
23 changes: 18 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,25 @@ theme:
- navigation.top
- toc.follow

extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js

markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- name: math
class: arithmatex
format:
adrielp marked this conversation as resolved.
Show resolved Hide resolved
!!python/object/apply:pymdownx.arithmatex.arithmatex_fenced_format {
which: generic,
}
- footnotes

extra_css:
Expand All @@ -56,9 +69,9 @@ nav:
- "Leading Inidicators": "./guidance/metrics/leading-delivery-indicators.md"
- "DevEx & Platform": "./guidance/metrics/devex-platform.md"
- "Satisfaction & Well-Being": "./guidance/metrics/satisfaction-well-being.md"
- "O11y Quick Start Platform":
- "Overview": "./platform/README.md"
- "Architecture": "./platform/architecture.md"
- "Recommended Implementations":
- "AWS": "./platform/aws.md"
# - "O11y Quick Start Platform":
adrielp marked this conversation as resolved.
Show resolved Hide resolved
# - "Overview": "./platform/README.md"
# - "Architecture": "./platform/architecture.md"
# - "Recommended Implementations":
# - "AWS": "./platform/aws.md"
- "Contributing": "./CONTRIBUTING.md"
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
name = "openo11y.dev"
version = "0.1.0"
description = "Openly Enabling O11y Everywhere"
authors = ["Adriel Perkins <[email protected]>"]
authors = [
"Adriel Perkins <[email protected]>",
"Alex Ramsay <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"

Expand Down
Loading