setup docs hirearchy

This commit is contained in:
Sriramajeyam Sugumaran
2023-12-20 11:32:04 +00:00
parent a6b91bbd86
commit ef24d1fcb4
14 changed files with 13 additions and 13 deletions

View File

@@ -8,12 +8,12 @@
## Features ## Features
- Select multiple metrics [by using Regex](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/gettingstarted/#multiple-items-on-one-graph) - Select multiple metrics [by using Regex](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/guides/gettingstarted/#multiple-items-on-one-graph)
- Create interactive and reusable dashboards with [template variables](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/templating/) - Create interactive and reusable dashboards with [template variables](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/guides/templating/)
- Show events on graphs with [Annotations](http://docs.grafana.org/reference/annotations/) - Show events on graphs with [Annotations](http://docs.grafana.org/reference/annotations/)
- Display active problems with Triggers panel - Display active problems with Triggers panel
- Transform and shape your data with [metric processing functions](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/functions/) (Avg, Median, Min, Max, Multiply, Summarize, Time shift, Alias) - Transform and shape your data with [metric processing functions](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/reference/functions/) (Avg, Median, Min, Max, Multiply, Summarize, Time shift, Alias)
- Find problems faster with [Alerting](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/alerting/) feature - Find problems faster with [Alerting](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/reference/alerting/) feature
- Mix metrics from multiple data sources in the same dashboard or even graph - Mix metrics from multiple data sources in the same dashboard or even graph
- Discover and share [dashboards](https://grafana.com/dashboards) in the official library - Discover and share [dashboards](https://grafana.com/dashboards) in the official library
@@ -32,16 +32,16 @@ Or see more installation options in [docs](https://grafana.com/docs/plugins/alex
## Getting started ## Getting started
First, [configure](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/configuration/) Zabbix data source. Then you can create your first dashboard with step-by-step [Getting started guide](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/gettingstarted/). First, [configure](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/configuration/) Zabbix data source. Then you can create your first dashboard with step-by-step [Getting started guide](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/guides/gettingstarted/).
## Documentation ## Documentation
- [About](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/) - [About](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/)
- [Installation](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/installation) - [Installation](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/installation)
- [Getting Started](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/gettingstarted) - [Getting Started](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/guides/gettingstarted)
- [Templating](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/templating) - [Templating](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/guides/templating)
- [Alerting](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/alerting/) - [Alerting](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/reference/alerting/)
- [Metric processing functions](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/functions/) - [Metric processing functions](https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/reference/functions/)
## Community Resources, Feedback, and Support ## Community Resources, Feedback, and Support

View File

@@ -49,4 +49,4 @@ Starting from version 4.0, each plugin release on GitHub contains packaged plugi
## Building from sources ## Building from sources
If you want to build a package yourself, or contribute - read [building instructions](./run-from-main). If you want to build a package yourself, or contribute - read [building instructions](./building-from-sources).

View File

@@ -1,6 +1,6 @@
--- ---
title: Run Grafana-Zabbix from main branch title: Building from sources
menuTitle: Run Grafana-Zabbix from main branch menuTitle: Building from sources
description: Building instructions for Grafana-Zabbix. description: Building instructions for Grafana-Zabbix.
aliases: aliases:
keywords: keywords:

View File

@@ -2,7 +2,7 @@ import React from 'react';
import { Icon } from '@grafana/ui'; import { Icon } from '@grafana/ui';
import { MetricFunc } from '../../types'; import { MetricFunc } from '../../types';
const DOCS_FUNC_REF_URL = 'https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/functions/'; const DOCS_FUNC_REF_URL = 'https://grafana.com/docs/plugins/alexanderzobnin-zabbix-app/latest/reference/functions/';
export interface FunctionEditorControlsProps { export interface FunctionEditorControlsProps {
onMoveLeft: (func: MetricFunc) => void; onMoveLeft: (func: MetricFunc) => void;