Skip to content

Commit fbda25d

Browse files
committed
Translated to Spanish the day77 file
Signed-off-by: Manuel Vergara <manuel@vergaracarmona.es>
1 parent 3de2e65 commit fbda25d

1 file changed

Lines changed: 31 additions & 31 deletions

File tree

2022/es/Days/day77.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
1-
## The Big Picture: Monitoring
1+
## El panorama general: Monitoreo
22

3-
In this section we are going to talk about monitoring, what is it and why do we need it?
3+
En esta sección hablaremos sobre el monitoreo, ¿qué es y por qué lo necesitamos?
44

5-
### What is Monitoring?
5+
### ¿Qué es el monitoreo?
66

7-
Monitoring is the process of keeping a close eye on the entire infrastructure
7+
El monitoreo es el proceso de vigilar de cerca toda la infraestructura.
88

9-
### and why do we need it?
9+
### ¿Y por qué lo necesitamos?
1010

11-
Let's assume we're managing a thousand servers these include a variety of specialised servers like application servers, database servers and web servers. We could also complicate this further with additional services and different platforms including public cloud offerings and Kubernetes.
11+
Supongamos que estamos administrando mil servidores, que incluyen una variedad de servidores especializados como servidores de aplicaciones, servidores de bases de datos y servidores web. También podríamos complicar esto aún más con servicios adicionales y diferentes plataformas, incluidas ofertas de nube pública y Kubernetes.
1212

1313
![](Images/Day77_Monitoring1.png)
1414

15-
We are responsible for ensuring that all the services, applications and resources on the servers are running as they should be.
15+
Somos responsables de asegurarnos de que todos los servicios, aplicaciones y recursos en los servidores estén funcionando como deberían.
1616

1717
![](Images/Day77_Monitoring2.png)
1818

19-
How do we do it? there are three ways:
19+
¿Cómo lo hacemos? Hay tres formas:
2020

21-
- Login manually to all of our servers and check all the data about service processes and resources.
22-
- Write a script that logs in to the servers for us and checks on the data.
21+
- Iniciar sesión manualmente en todos nuestros servidores y verificar todos los datos sobre los procesos de servicio y los recursos.
22+
- Escribir un script que inicie sesión en los servidores por nosotros y verifique los datos.
2323

24-
Both of these options would require a considerable amount of work on our part,
24+
Ambas opciones requerirían una cantidad considerable de trabajo de nuestra parte.
2525

26-
The third option is easier, we could use a monitoring solution that is available in the market.
26+
La tercera opción es más fácil: podríamos utilizar una solución de monitoreo disponible en el mercado.
2727

28-
Nagios and Zabbix are possible solutions that are readily available which allow us to upscale our monitoring infrastructure to include as many servers as we want.
28+
Nagios y Zabbix son posibles soluciones que están fácilmente disponibles y nos permiten ampliar nuestra infraestructura de monitoreo para incluir tantos servidores como deseemos.
2929

3030
### Nagios
3131

32-
Nagios is an infrastructure monitoring tool that is made by a company that goes by the same name. The open-source version of this tool is called Nagios core while the commercial version is called Nagios XI. [Nagios Website](https://www.nagios.org/)
32+
Nagios es una herramienta de monitoreo de infraestructura creada por una empresa que lleva el mismo nombre. La versión de código abierto de esta herramienta se llama Nagios Core, mientras que la versión comercial se llama Nagios XI. Sitio [web de Nagios](ttps://www.nagios.org/)
3333

34-
The tool allows us to monitor our servers and see if they are being sufficiently utilised or if there are any tasks of failure that need addressing.
34+
Esta herramienta nos permite monitorear nuestros servidores y ver si se están utilizando de manera adecuada o si hay tareas o fallas que deben abordarse.
3535

3636
![](Images/Day77_Monitoring3.png)
3737

38-
Essentially monitoring allows us to achieve these two goals, check the status of our servers and services and determine the health of our infrastructure it also gives us a 40,000ft view of the complete infrastructure to see if our servers are up and running if the applications are working properly and the web servers are reachable or not.
38+
Básicamente, el monitoreo nos permite lograr estos dos objetivos: verificar el estado de nuestros servidores y servicios, y determinar la salud de nuestra infraestructura. También nos brinda una vista panorámica completa de la infraestructura para ver si nuestros servidores están funcionando, si las aplicaciones están funcionando correctamente y si los servidores web son accesibles o no.
3939

40-
It will tell us that our disk has been increasing by 10 per cent for the last 10 weeks in a particular server, that it will exhaust entirely within the next four or five days and we'll fail to respond soon it will alert us when your disk or server is in a critical state so that we can take appropriate actions to avoid possible outages.
40+
Nos dirá, por ejemplo, que nuestro disco ha aumentado un 10 por ciento en las últimas 10 semanas en un servidor en particular, que se agotará por completo en los próximos cuatro o cinco días y que pronto fallaremos si no respondemos. Nos alertará cuando nuestro disco o servidor esté en un estado crítico para que podamos tomar las medidas adecuadas y evitar posibles interrupciones.
4141

42-
In this case, we can free up some disk space and ensure that our servers don't fail and that our users are not affected.
42+
En este caso, podemos liberar algo de espacio en el disco y asegurarnos de que nuestros servidores no fallen y que nuestros usuarios no se vean afectados.
4343

44-
The difficult question for most monitoring engineers is what do we monitor? and alternately what do we not?
44+
La pregunta difícil para la mayoría de los ingenieros de monitoreo es ¿qué debemos monitorear? y, alternativamente, ¿qué no debemos?
4545

46-
Every system has several resources, which of these should we keep a close eye on and which ones can we turn a blind eye to for instance is it necessary to monitor CPU usage the answer is yes obviously nevertheless it is still a decision that has to be made is it necessary to monitor the number of open ports in the system we may or may not have to depend on the situation if it is a general-purpose server we probably won't have to but then again if it is a webserver we probably would have to.
46+
Cada sistema tiene varios recursos, ¿en cuáles debemos vigilar de cerca y en cuáles podemos hacer la vista gorda? Por ejemplo, ¿es necesario monitorear el uso de la CPU? La respuesta es sí, obviamente. Sin embargo, sigue siendo una decisión que debe tomarse. ¿Es necesario monitorear el número de puertos abiertos en el sistema? Puede que sí o puede que no, dependiendo de la situación. Si es un servidor de propósito general, probablemente no sea necesario, pero si es un servidor web, probablemente sí lo sea.
4747

48-
### Continuous Monitoring
48+
### Monitoreo Continuo
4949

50-
Monitoring is not a new item and even continuous monitoring has been an ideal that many enterprises have adopted for many years.
50+
El monitoreo no es algo nuevo, e incluso el monitoreo continuo ha sido un ideal que muchas empresas han adoptado durante muchos años.
5151

52-
There are three key areas of focus when it comes to monitoring.
52+
Hay tres áreas clave de enfoque en lo que respecta al monitoreo:
5353

54-
- Infrastructure Monitoring
55-
- Application Monitoring
56-
- Network Monitoring
54+
- Monitoreo de la infraestructura
55+
- Monitoreo de aplicaciones
56+
- Monitoreo de redes
5757

58-
The important thing to note is that there are many tools available we have mentioned two generic systems and tools in this session but there are lots. The real benefit of a monitoring solution comes when you have spent the time making sure you are answering the question of what should we be monitoring and what shouldn't we?
58+
Lo importante es tener en cuenta que hay muchas herramientas disponibles. Hemos mencionado dos sistemas y herramientas genéricas en esta sesión, pero hay muchas más. El verdadero beneficio de una solución de monitoreo se produce cuando has invertido tiempo en asegurarte de responder a la pregunta de ¿qué debemos monitorear y qué no?
5959

60-
We could turn on a monitoring solution in any of our platforms and it will start grabbing information but if that information is simply too much then you are going to struggle to benefit from that solution, you have to spend the time to configure it.
60+
Podemos activar una solución de monitoreo en cualquiera de nuestras plataformas y comenzará a recopilar información, pero si esa información es simplemente demasiada, tendrás dificultades para aprovechar esa solución. Debes dedicar tiempo a configurarla correctamente.
6161

62-
In the next session, we will get hands-on with a monitoring tool and see what we can start monitoring.
62+
En la próxima sesión, nos pondremos manos a la obra con una herramienta de monitoreo y veremos qué podemos comenzar a monitorear.
6363

64-
## Resources
64+
## Recursos
6565

6666
- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/)
6767
- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b)
@@ -70,4 +70,4 @@ In the next session, we will get hands-on with a monitoring tool and see what we
7070
- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg)
7171
- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8)
7272

73-
See you on [Day 78](day78.md)
73+
Nos vemos en el [Día 78](day78.md)

0 commit comments

Comments
 (0)