Introduction to configuration parameters of Grafana monitoring large screen (1)

Grafana series of articles, version: OOS v9.3.1

  1. Introduction and installation of Grafana

In the last article, we have installed Grafana and seen its initial appearance. In this article, we take a simple large screen as an example to understand Grafana's large screen configuration parameters.

Create the first big screen

Here, take the time series icon as an example to create the first large screen.

Dashboards > New Dashboard > Add a new panel

insert image description here

After selection, enter the chart configuration interface. At present, there is no data. The chart selects Time series by default , that is, the time series chart

insert image description here

In order to have test data, we choose the Grafan data source and use Random Walk , so that it will display a chart generated by random numbers for us to test.

insert image description here

Introduction to Configuration Parameters

After creating the chart, click Apply in the upper right corner , save and exit, and return to the big screen page, the newly configured chart has been displayed

insert image description here

Next, let's go back to the edit chart page, look at the configuration parameters in detail, click the chart title>Edit

insert image description here
We divide the chart configuration page into 4 parts and introduce them separately
insert image description here

① Chart header

On the left is the name of the large screen/Edit Panel
Discard : cancel editing, do not save
Save : save, do not exit
Apply : save, and exit

② Visual preview part

Table view : converts the chart into a table form, very useful for troubleshooting

Show results:

insert image description here

Fill : The space is automatically filled, and the chart will be automatically filled with the change of the window.
Actual : The fixed-size chart will not change with the change of the window.

Show results:

insert image description here
Time range controls : chart time range selector

insert image description here

③ Chart visualization configuration part

Panel options

Configure the title and description of the panel, whether to use a transparent background, panel link jump, and automatic copy options

insert image description here

  • Panel links effect:

insert image description here
insert image description here

  • Repeat options:
    To realize this function, you must first partially configure the large screen variables, first return to the large screen>Setting>Variables , as shown in the figure, I configure two platforms, the variable name is platform , and the variable will be referenced in the panel to
    insert image description here
    enter the panel edit On the page, we can see that the newly configured data has appeared in the upper left corner, and the variable reference is used ${变量名称}. Here I have quoted it in the title. At the same time, select the configured variable in Repeat options, and select Vertical (vertical display) as the display mode.
    insert image description here
    Let's see the effect:
    insert image description here

Tooltip

Hover display when the mouse moves over the chart, showing single, all, and hidden respectively

insert image description here
Here I take another panel as an example to illustrate:

insert image description here

Legend

Legend options, used to configure the display method, display position, and statistical information of the legend

insert image description here

  • Visibility: Whether to display the legend
  • Model: List Parallel display Table table display
  • Placement: Bottom legend is at the bottom Right legend is at the right
  • Values: Select the calculation method of the value displayed in the legend. This is an option provided by the official website. It is actually more than

insert image description here

Show results:

insert image description here

So far we have shown how to create the first large screen, the first panel, and introduced the chart header, the visual preview part, and the chart visualization configuration part. Since the chart visualization configuration part has a lot of configuration content, it will be explained in two parts , the second part introduces Axis, Graph styles, Standard options, etc. The subsequent configuration will also be more powerful and more fun.

Monitoring related other articles:

  1. Spring Boot Admin Reference Guide
  2. The problem that the SpringBoot Admin service is offline and does not display health information
  3. Loading of Spring Boot Admin2 @EnableAdminServer
  4. Detailed Explanation of Spring Boot Admin2 AdminServerAutoConfiguration
  5. Detailed Explanation of Spring Boot Admin2 Instance Status Monitoring
  6. Spring Boot Admin2 custom JVM monitoring notification
  7. Spring Boot Admin2 custom exception monitoring
  8. Spring Boot Admin monitoring indicators connected to Grafana visualization

Guess you like

Origin blog.csdn.net/weixin_40972073/article/details/128280232