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

Improve home page #40

Merged
merged 4 commits into from
Oct 31, 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ On the machine, just pull this repository and run `podman-compose up -d`
We recommend you to create a python virtual environment.

```bash
python3 -m env venv
source ./venv/bin/activate
python3 -m venv venv
source ./venv/bin/activate # Scripts instead of bin on windows
```

Then you can install de libs required to run the Perses website:
Expand Down
3 changes: 0 additions & 3 deletions css/style.css

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/perses_overview.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.centered {
text-align: center
}
47 changes: 31 additions & 16 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,43 +6,58 @@ hide:
- path
---

<center>
![perses logo](assets/images/favicon.png)
<div class="centered" markdown>
# ![perses logo dark mode](assets/images/perses-horizontal-color-white.png#only-dark) ![perses logo light mode](assets/images/perses-horizontal-color-black.png#only-light)

# Perses
## An open specification for dashboards. The open dashboard tool for Prometheus and other data sources.
</div>

## An open specification for dashboards. The open dashboard tool for Prometheus and other data sources.
</center>
![perses overview](assets/images/perses_overview.gif)

<div class="grid cards" markdown>

- ## GitOps Native
- ## Observability display

---

Facilitates a seamless "dashboards as code" workflow by introducing an innovative and precisely defined dashboard definition model.
Perses is first and foremost a dashboard tool that you can use to display a variety of observability data. Today supports Prometheus metrics & Tempo traces.

[:octicons-arrow-right-24: Link here](#)
- ## Embeddable components

---

You can used Perses as-is or embed parts of it in your own UI, from a single panel to a whole dashboard view.

- ## Extensible

- ## GitOps-friendly

---

Perses, with its plugin-based architecture, offers effortless extension and reuse of plugins across different projects.
Perses offers a complete static validation of the dashboard format. It also with a CLI, `percli`, that can be used to perform actions in CICDs

[:octicons-arrow-right-24: Link here](#)
- ## Scale-friendly

---

- ## Static Validation
Perses dashboards can be written as-code using the provided SDKs. This allows you to extract any kind of components in libraries for reusage across as much dashboards as you want.

- ## Kubernetes-native

---

Perses supports hassle-free dashboard-as-code usage with built-in static validation. Validate your dashboard in CI/CD using the Perses CLI (percli).
Use the Perses operator to manage your Perses deployments & dashboards as CRDs. Leverage on the datasource discovery to retrieve data from your datasource pods/services.

- ## Extensible

---

[:octicons-arrow-right-24: Link here](#)
Perses, with its plugin-based architecture, offers effortless extension and reuse of plugins across different projects.

</div>

<center>
...and more to discover!

<div class="centered" markdown>

## Open Source

Expand All @@ -52,4 +67,4 @@ Perses is a [Cloud Native Computing Foundation](https://cncf.io) sandbox project

[![CNCF Logo](assets/images/cncf_logo.png)](https://cncf.io)

</center>
</div>
Loading