Skip to content
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
24 changes: 12 additions & 12 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,39 +12,39 @@ Connect OpenTrace to your AI assistant and start asking questions:

> "Help me investigate why checkout is failing"

[Try Now](https://oss.opentrace.ai){ .md-button .md-button--primary target="_blank" rel="noopener" }
[Try Now](https://app.opentrace.ai){ .md-button .md-button--primary target="\_blank" rel="noopener" }

## Documentation

<div class="grid cards" markdown>

- **[Getting Started](getting-started.md)**

Setup OpenTrace and run your first queries
Setup OpenTrace and run your first queries

- **[Integrations](integrations/index.md)**

Connect GitHub, GitLab, and AWS EKS
Connect GitHub, GitLab, and AWS EKS

- **[What You Can Do](capabilities.md)**

Full reference of questions you can ask
Full reference of questions you can ask

- **[Example Workflows](workflows.md)**

Common scenarios and how to approach them
Common scenarios and how to approach them

</div>

## What Can You Ask?

| Category | Example |
|----------|---------|
| **Discovery** | "What services exist in my system?" |
| **Dependencies** | "What does order-service depend on?" |
| **Impact Analysis** | "What breaks if the database goes down?" |
| **Connections** | "How does the frontend connect to payments?" |
| **Investigations** | "Help me debug why orders are slow" |
| Category | Example |
| ------------------- | -------------------------------------------- |
| **Discovery** | "What services exist in my system?" |
| **Dependencies** | "What does order-service depend on?" |
| **Impact Analysis** | "What breaks if the database goes down?" |
| **Connections** | "How does the frontend connect to payments?" |
| **Investigations** | "Help me debug why orders are slow" |

## Links

Expand Down
65 changes: 30 additions & 35 deletions docs/overrides/main.html
Original file line number Diff line number Diff line change
@@ -1,37 +1,32 @@
{% extends "base.html" %}

{% block htmltitle %}
<title>{{ config.site_name }}{% if page.title %} — {{ page.title }}{% endif %}</title>
{% endblock %}

{% block extrahead %}
<style>
.md-header__topic ~ .md-header__try-now {
margin-left: auto;
{% extends "base.html" %} {% block htmltitle %}
<title>
{{ config.site_name }}{% if page.title %} — {{ page.title }}{% endif %}
</title>
{% endblock %} {% block extrahead %}
<style>
.md-header__topic ~ .md-header__try-now {
margin-left: auto;
}
</style>
{% endblock %} {% block scripts %} {{ super() }}
<script>
// Inject "Try Now" button into header next to search
(function () {
var container = document.querySelector(".md-header__inner");
if (!container) return;
var btn = document.createElement("a");
btn.href = "https://app.opentrace.ai";
btn.target = "_blank";
btn.rel = "noopener";
btn.className = "md-header__try-now";
btn.textContent = "Try Now";
// Insert before the search or source icon
var search = container.querySelector(".md-search");
if (search) {
search.parentNode.insertBefore(btn, search);
} else {
container.appendChild(btn);
}
</style>
{% endblock %}

{% block scripts %}
{{ super() }}
<script>
// Inject "Try Now" button into header next to search
(function() {
var container = document.querySelector('.md-header__inner');
if (!container) return;
var btn = document.createElement('a');
btn.href = 'https://oss.opentrace.ai';
btn.target = '_blank';
btn.rel = 'noopener';
btn.className = 'md-header__try-now';
btn.textContent = 'Try Now';
// Insert before the search or source icon
var search = container.querySelector('.md-search');
if (search) {
search.parentNode.insertBefore(btn, search);
} else {
container.appendChild(btn);
}
})();
</script>
})();
</script>
{% endblock %}
Loading