쉐도잉 연습: An Introduction to Basic Zabbix Concepts. Part One - Hosts, Items, and Triggers - YouTube로 영어 말하기 배우기

C2
Hosts, items, and triggers are the basic building blocks for data collection and problem detection in Zabbix.
⏸ 일시 정지
112 문장
문장이 너무 짧거나 길면 Edit를 눌러 조정하세요.
1
Hosts, items, and triggers are the basic building blocks for data collection and problem detection in Zabbix.
2
Let's see how we can configure our first host and create a couple of items and triggers for it.
3
We will begin by creating a host.
4
Hosts represent our monitoring endpoints,
5
anything from servers, network hardware,
6
IoT devices, websites, applications, and any other type of endpoint.
7
Hosts needs to have a unique host name.
8
Host also must belong to at least a single host group.
9
Host groups are used for grouping and filtering and are essential for configuring Zabbix user access permissions.
10
A host can belong to an unlimited number of host groups.
11
For our first example, we will use the Cisco SNMP template to monitor our Cisco switch.
12
The template contains a pre-configured set of items and triggers,
13
and any changes made on the template will be applied on the hosts utilizing this template.
14
For SNMP checks to work,
15
we also need to define an SNMP interface.
16
An interface represents the endpoint address,
17
which the values will be polled at by Zabbix.
18
Zabbix has four types of interfaces,
19
Zabbix Agent, SNMP, IPMI, and JMX for the corresponding item types.
20
Not all items use interfaces,
21
but for these four item types, interfaces are mandatory.
22
Let's create an SNMP interface,
23
provide an address and port,
24
select the SNMP version, and provide an SNMP community.
25
There are various other settings that we can define for the host,
26
such as host-level macros, tags,
27
value maps, inventory, encryption, and IPMI settings.
28
I will add a tag for my host,
29
which will provide additional information about the host environment,
30
and skip the other settings.
31
Now let's add the host and navigate to monitoring latest data,
32
where we will be able to see the items and their values collected on this host.
33
Now let's create another host.
34
This time I will be creating a Linux host with an agent interface without any templates assigned to it.
35
Zabbix agent is already deployed on this host,
36
and we will create items and triggers for it manually.
37
Let's provide the agent interface information,
38
tag the host, and add it.
39
Now let's open host items and create our first item.
40
We will begin by creating a simple ping item to check our host availability.
41
Let's give our item a name and select its type, simple check.
42
Pings, port checks and other simple check items are executed directly by Zabbix server and do not require an agent.
43
Zabbix provides a variety of item types utilizing different data collection approaches,
44
but for now we will focus on simple check and agent items.
45
Let's select the ICMP ping key.
46
For most items, item keys are used to define what type of metric needs to be collected on a host a host.
47
For this key, all of the parameters are optional,
48
so we can remove them.
49
Items also requires selecting the correct type of information.
50
Zabbix will attempt to automatically select the correct type of information,
51
and in this case, it's numeric unsigned,
52
since the collected value will be equal either to 0 or 1.
53
The item will ping the selected host interface address.
54
Let's set the update interval to 1 minute.
55
This defines how often the ping value is collected.
56
History and trend storage periods are defined for how long do we wish to store the collected values and trends,
57
value hourly aggregates.
58
Let's also tag this item with component availability so we can use this tag to easier filter for the item value.
59
Let's add the item and proceed with adding our second item, CPU Utilization.
60
CPU Utilization on our Linux host can be retrieved by Zabbix Agent.
61
Let's select the Zabbix agent item type and select the System CPU util key.
62
This key also has various optional parameters.
63
We can click on the question mark next to the item
64
key to read more about their possible values in the Zabbix documentation.
65
Let's add the key without any parameters.
66
This way the item will use the parameter defaults to collect our values.
67
We will use the numeric float type of information,
68
since the item will collect CPU utilization in percent with fractional parts.
69
Next we will select our agent interface.
70
This will represent the address of the Zabbix agent,
71
which will be polled by Zabbix server to retrieve the item values.
72
Let's set the update interval to 30 seconds,
73
tag the item with component CPU, and create the item.
74
Now, if we navigate to latest data,
75
we can see that both of our items are successfully returning values.
76
Go back to data collection hosts and click on triggers next to our Linux server host.
77
Click Create Trigger in the top right corner of the page to create a trigger.
78
Let's create a trigger which reacts to our host being unreachable via ping.
79
Give the trigger a short name,
80
and now let's specify how the problem will be presented by configuring the EventName field.
81
I will use the builtin host.host macro in myEventName.
82
Using a built-in macro like this can be extremely useful when creating triggers on templates.
83
Instead of specifying a static event name,
84
the macro will be automatically resolved as the host name of the host on which the problem is detected.
85
Currently we're creating a trigger directly on a host,
86
so we could be using a static name here,
87
but I prefer to follow the best practice,
88
since in real life you will mostly be creating items and triggers on templates,
89
and then applying the templates on hosts.
90
Let's set the severity to high and press add to create our first trigger expression.
91
First, select the ping item,
92
then select the function which you wish to use for analyzing the collected values.
93
Zabbix provides a vast selection of functions for different kinds of use cases.
94
For our first example, we will use the last function,
95
reacting if the last collected value is equal to zero.
96
Let's insert the expression and add the trigger.
97
Now let's add our second trigger.
98
We will generate a problem if our CPU utilization is over 90%.
99
Populate the trigger and event name fields and set the severity.
100
Click Add to add the new expression.
101
Let's select the CPU utilization item and this time use the average function.
102
We will detect an issue if the average CPU utilization value over the last 5 minutes is over 90%.
103
Using the average function makes the trigger a lot less sensitive compared to using the last function.
104
Using functions fit for your use case is vital for reducing trigger flapping and preventing alert floods.
105
Let's finish the exercise by adding the trigger.
106
In total, we have created two hosts,
107
one for Cisco device monitoring via SNMP using the official Xabix template
108
and one for our Linux server with two items and triggers for ping and CPU monitoring created directly on the host.
109
But this is just the beginning.
110
Feel free to explore our documentation,
111
videos and blog articles to find more information about various types of items,
112
trigger function use cases and much more.

앱 다운로드

당신이 말하는 모든 문장을 AI가 채점

TRENDING

인기 동영상

맥락 및 배경

이 비디오는 Zabbix의 기본 개념에 대한 소개로, 호스트, 아이템 및 트리거라는 세 가지 주요 구성 요소를 중심으로 진행됩니다. Zabbix는 데이터 수집과 문제 탐지를 위한 모니터링 도구로, 다양한 엔드포인트를 처리할 수 있는 기능을 제공합니다. 호스트는 서버, 네트워크 장비, IoT 장치 및 웹사이트 등 다양한 형태로 존재할 수 있으며, 이들을 효율적으로 관리하기 위해 호스트 그룹과 같은 다양한 설정을 활용합니다. 이번 영상에서는 네트워크 모니터링을 위해 Cisco SNMP 템플릿을 사용하는 방법과 함께 Linux 호스트를 수동으로 생성하는 방법을 설명합니다.

일상 커뮤니케이션을 위한 5가지 유용한 표현

  • 호스트 추가하기: 호스트를 추가하려면 먼저 고유한 호스트 이름을 설정해야 합니다.
  • 템플릿 설정하기: Cisco SNMP 템플릿을 사용하면 미리 구성된 아이템과 트리거를 쉽게 적용할 수 있습니다.
  • SNMP 인터페이스 정의하기: SNMP 체크를 위해 인터페이스 주소와 포트를 지정해야 합니다.
  • 아이템 생성하기: 새로운 아이템을 추가하려면 물리적인 체크 매개변수를 정의해야 합니다.
  • 모니터링하기: 생성한 아이템과 그 값들을 최신 데이터 모니터링을 통해 확인할 수 있습니다.

단계별 음성 따라하기 가이드

영상의 내용을 더욱 효과적으로 이해하고 영어 회화를 연습하기 위해, 다음과 같은 shadow speech 기술을 활용할 수 있습니다. 이는 유튜브 영어 공부IELTS 스피킹에서 유용한 방법입니다.

  1. 영상의 처음부터 끝까지 주의 깊게 시청하여 전체 내용을 파악합니다.
  2. 각 주요 문장이나 표현을 반복적으로 듣고 따라 말해보세요. 처음에는 천천히, 이후에는 속도를 높입니다.
  3. 비디오의 내용을 요약하고, 알지 못했던 부분이나 어려운 표현을 적어보세요. 이를 통해 자신이 이해하지 못한 부분을 확인할 수 있습니다.
  4. 제시된 표현들을 사용하여 실제 대화처럼 연습해 보세요. 친구와 함께하거나 스스로 대사를 듣고 그에 맞춰 대답하는 방식으로 진행할 수 있습니다.
  5. 정기적으로 이런 연습을 통해 자신의 발음을 점검하고, shadowspeaks 또는 영어 회화 연습에 도움이 되는 좋은 습관을 기를 수 있습니다.

쉐도잉이란? 영어 실력을 빠르게 키우는 과학적 방법

쉐도잉(Shadowing)은 원래 전문 통역사 훈련을 위해 개발된 언어 학습 기법으로, 다언어 학자인 Dr. Alexander Arguelles에 의해 대중화된 방법입니다. 핵심 원리는 간단하지만 매우 강력합니다: 원어민의 영어를 들으면서 1~2초의 짧은 지연으로 즉시 소리 내어 따라 말하는 것——마치 '그림자(shadow)'처럼 화자를 따라가는 것입니다. 문법 공부나 수동적인 청취와 달리, 쉐도잉은 뇌와 입 근육이 동시에 실시간으로 영어를 처리하고 재현하도록 훈련합니다. 연구에 따르면 이 방법은 발음 정확도, 억양, 리듬, 연음, 청취력, 말하기 유창성을 크게 향상시킵니다. IELTS 스피킹 준비와 자연스러운 영어 소통을 원하는 분들에게 특히 효과적입니다.

커피 한 잔 사주기