diff options
-rw-r--r-- | docs/content/_index.md | 10 | ||||
-rw-r--r-- | docs/content/dashboard/_index.md | 15 | ||||
-rw-r--r-- | docs/data/variables.yaml | 3 | ||||
-rw-r--r-- | docs/layouts/shortcodes/dashboard_url.html | 1 |
4 files changed, 27 insertions, 2 deletions
diff --git a/docs/content/_index.md b/docs/content/_index.md index f2736d5a57..1caa6b2932 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -46,4 +46,12 @@ type: "docs" packet path thru server SUTs, three distinct logical topology types are used for VPP DUT data plane testing. - **[VPP Startup Settings]({{< relref "/infrastructure/vpp_startup_settings" >}})**: - List of common settings applied to all tests and test dependent settings.
\ No newline at end of file + List of common settings applied to all tests and test dependent settings. +5. [PERFORMANCE DASHBOARD]({{< dashboard_url >}}) + - **[Performance Trending]({{< dashboard_url >}}trending)** + - **[Per Release Performance]({{< dashboard_url >}}report)** + - **[Per Release Performance Comparisons]({{< dashboard_url >}}comparisons)** + - **[Per Release Coverage Data]({{< dashboard_url >}}coverage)** + - **[Test Jobs Statistics]({{< dashboard_url >}}stats)** + - **[Failures and Anomalies]({{< dashboard_url >}}news)** + - **[Search Tests]({{< dashboard_url >}}search)**
\ No newline at end of file diff --git a/docs/content/dashboard/_index.md b/docs/content/dashboard/_index.md new file mode 100644 index 0000000000..fac194db60 --- /dev/null +++ b/docs/content/dashboard/_index.md @@ -0,0 +1,15 @@ +--- +bookCollapseSection: false +bookFlatSection: true +title: "Performance Dashboard" +weight: 5 +--- + +# [Performance Dashboard]({{< dashboard_url >}}) +- **[Performance Trending]({{< dashboard_url >}}trending)** +- **[Per Release Performance]({{< dashboard_url >}}report)** +- **[Per Release Performance Comparisons]({{< dashboard_url >}}comparisons)** +- **[Per Release Coverage Data]({{< dashboard_url >}}coverage)** +- **[Test Jobs Statistics]({{< dashboard_url >}}stats)** +- **[Failures and Anomalies]({{< dashboard_url >}}news)** +- **[Search Tests]({{< dashboard_url >}}search)** diff --git a/docs/data/variables.yaml b/docs/data/variables.yaml index 76b2677657..c4f1f03863 100644 --- a/docs/data/variables.yaml +++ b/docs/data/variables.yaml @@ -1,2 +1,3 @@ release_csit: "CSIT 24.06" -release_vpp: "VPP 24.06"
\ No newline at end of file +release_vpp: "VPP 24.06" +dashboard_url: "https://csit.fd.io/"
\ No newline at end of file diff --git a/docs/layouts/shortcodes/dashboard_url.html b/docs/layouts/shortcodes/dashboard_url.html new file mode 100644 index 0000000000..d0738797c2 --- /dev/null +++ b/docs/layouts/shortcodes/dashboard_url.html @@ -0,0 +1 @@ +{{ .Site.Data.variables.dashboard_url }}
\ No newline at end of file |