From 9b85635a07e9d03177130c50b17a5a842a34f250 Mon Sep 17 00:00:00 2001 From: Alessandro Puccetti Date: Mon, 21 Nov 2016 17:30:43 +0100 Subject: [PATCH] site/plugins: change reference name in "Defining the Reporter Interface section" --- site/plugins.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/plugins.md b/site/plugins.md index 11b924b932..fbffba0926 100644 --- a/site/plugins.md +++ b/site/plugins.md @@ -16,7 +16,7 @@ The following topics are discussed: * [Naming Nodes](#naming-nodes) * [A Guide to Developing Plugins](#plugins-developing-guide) * [Setting up the Structure](#structure) - * [Defining the Reporter Interface](#reporter-interface) + * [Defining the Reporter Interface](#defining-reporter-interface) * [Report Data Structures](#report-data-structures) Any kind of metrics can be generated and inserted into Scope using custom plugins. Metrics generated through your plugin are displayed in the user interface alongside the standard set of metrics that are found in Weave Scope. @@ -335,7 +335,7 @@ func main() { ``` -### Defining the Reporter Interface +### Defining the Reporter Interface As stated in the [How Plugins Communicate with Scope](#plugins-internals) section, the reporter interface is mandatory. Implementing the reporter interface means handling `GET /report` requests.