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

Docs: trying to fix docs build error #28973

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/sources/developers/plugins/_index.md
Expand Up @@ -18,8 +18,8 @@ npx @grafana/toolkit plugin:create my-grafana-plugin

If you want a more guided introduction to plugin development, check out our tutorials:

- [Build a panel plugin]({{< relref "../../../../../tutorials/build-a-panel-plugin.md" >}})
- [Build a data source plugin]({{< relref "../../../../../tutorials/build-a-data-source-plugin.md" >}})
- [Build a panel plugin]({{< relref "../../../../../../tutorials/build-a-panel-plugin.md" >}})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I copied the files based on how it's done in the drone scripts and for me the original pathing for this line seems correct.

Copy link
Member Author

@torkelo torkelo Nov 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixes the paths for me, when I count where these files are in the website repo, and this fixes the build

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what drone script are you talking about? and where did you copy this? is this fixed in master already?

- [Build a data source plugin]({{< relref "../../../../../../tutorials/build-a-data-source-plugin.md" >}})

## Go further

Expand All @@ -29,13 +29,13 @@ Learn more about specific areas of plugin development.

If you're looking to build your first plugin, check out these introductory tutorials:

- [Build a panel plugin]({{< relref "../../../../../tutorials/build-a-panel-plugin.md" >}})
- [Build a data source plugin]({{< relref "../../../../../tutorials/build-a-data-source-plugin.md" >}})
- [Build a data source backend plugin]({{< relref "../../../../../tutorials/build-a-data-source-backend-plugin.md" >}})
- [Build a panel plugin]({{< relref "../../../../../../tutorials/build-a-panel-plugin.md" >}})
- [Build a data source plugin]({{< relref "../../../../../../tutorials/build-a-data-source-plugin.md" >}})
- [Build a data source backend plugin]({{< relref "../../../../../../tutorials/build-a-data-source-backend-plugin.md" >}})

Ready to learn more? Check out our other tutorials:

- [Build a panel plugin with D3.js]({{< relref "../../../../../tutorials/build-a-panel-plugin-with-d3.md" >}})
- [Build a panel plugin with D3.js]({{< relref "../../../../../../tutorials/build-a-panel-plugin-with-d3.md" >}})

### Guides

Expand Down
Expand Up @@ -6,7 +6,7 @@ title = "Add support for annotations"

This guide explains how to add support for [annotations]({{< relref "../../dashboards/annotations.md" >}}) to an existing data source plugin.

This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../tutorials/build-a-data-source-plugin.md" >}}).
This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../../tutorials/build-a-data-source-plugin.md" >}}).

Data sources in Grafana can support [Annotations]({{< relref "../../dashboards/annotations.md" >}}) by handling _annotation queries_.

Expand Down
Expand Up @@ -6,7 +6,7 @@ title = "Add support for Explore queries"

This guide explains how to improve support for [Explore]({{< relref "../../explore/index.md" >}}) to an existing data source plugin.

This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../tutorials/build-a-data-source-plugin.md" >}}).
This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../../tutorials/build-a-data-source-plugin.md" >}}).

With Explore, users can make ad-hoc queries without the use of a dashboard. This is useful when users want to troubleshoot or to learn more about the data.

Expand Down
Expand Up @@ -6,7 +6,7 @@ title = "Build a logs data source plugin"

This guide explains how to build a logs data source plugin.

Data sources in Grafana supports both metrics and log data. The steps to build a logs data source plugin are largely the same as for a metrics data source. This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../tutorials/build-a-data-source-plugin.md" >}}) for metrics.
Data sources in Grafana supports both metrics and log data. The steps to build a logs data source plugin are largely the same as for a metrics data source. This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../../tutorials/build-a-data-source-plugin.md" >}}) for metrics.

## Add logs support to your data source

Expand Down
Expand Up @@ -6,7 +6,7 @@ title = "Build a streaming data source plugin"

This guide explains how to build a streaming data source plugin.

This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../tutorials/build-a-data-source-plugin.md" >}}).
This guide assumes that you're already familiar with how to [Build a data source plugin]({{< relref "../../../../../../tutorials/build-a-data-source-plugin.md" >}}).

When monitoring critical applications, you want your dashboard to refresh as soon as your data does. In Grafana, you can set your dashboards to automatically refresh at a certain interval, no matter what data source you use. Unfortunately, this means that your queries are requesting all the data to be sent again, regardless of whether the data has actually changed.

Expand Down