🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)
🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)

🔧 Programmierung 🕛 kürzlich 6 Min Lesezeit
0

Observability(Metrics, Monitoring & Prometheus) -2

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

The blog explains metrics and monitoring in observability, focusing on Prometheus as a popular tool. It covers the definition of metrics, the difference between metrics and monitoring, and how to install and configure Prometheus and Grafana for effective visualization and alerting. Real-life examples illustrate the importance of metrics in system health assessment.






What are the key differences between metrics and monitoring?



The key differences between metrics and monitoring can be summarized as follows:





  1. Definition:





    • Metrics: Quantitative measurements that provide data points about a system's performance, behavior, or resource usage over time. They are often numerical and can include metrics like CPU usage, memory consumption, request counts, and error rates.


    • Monitoring: The process of collecting, analyzing, and using metrics (among other data) to understand the state of a system, detect anomalies, and ensure systems are operating as expected.




  2. Purpose:





    • Metrics: Serve as the raw data that provide insights into specific aspects of a system.


    • Monitoring: Involves observability practices that utilize metrics to provide a holistic view of system health, performance, and availability, often incorporating alerts and visualizations.




  3. Actionability:





    • Metrics: By themselves, they may not indicate any issues; they require context and comparison over time to provide useful insights.


    • Monitoring: Leverages metrics to detect problems, trigger alerts, and facilitate proactive responses to maintain system reliability.




  4. Scope:





    • Metrics: Typically focus on specific data points or KPIs (Key Performance Indicators) and can be tracked individually.


    • Monitoring: Encompasses a broader range of activities, including real-time data collection, analysis, alerting, and visualization that provides context and actionable insights.




  5. Examples:





    • Metrics: A graph showing the number of requests per second, error rates, or database query response times.


    • Monitoring: A dashboard displaying metrics over time with thresholds that trigger alerts when performance deviates from expected norms.





In summary, metrics are the individual data points that describe system performance, while monitoring is the overarching practice that utilizes those metrics to assess, analyze, and respond to the system's health and behavior.






How does Prometheus collect metrics from applications?



Prometheus collects metrics from applications using a combination of methods, primarily through a process called "scraping." Here’s how it works:




  1. Scraping Mechanism: Prometheus can pull metrics from various sources at specified intervals. This is often referred to as the "pull" mechanism. Prometheus queries the endpoints of applications or exporters to gather metrics data.



  2. Exporters: To facilitate the collection of metrics, Prometheus uses exporters. These are components that expose metrics in a format that Prometheus can scrape. There are different types of exporters:





    • Node Exporter: This exporter collects metrics related to the infrastructure, such as CPU, memory, and disk usage from the nodes in a Kubernetes cluster or AWS virtual machines.


    • Kube State Metrics: This exporter provides metrics about the state of Kubernetes objects, such as pod status, deployment status, and other resource-related metrics.


    • Application-Specific Metrics: Developers can implement a metrics endpoint (e.g., /metrics) in their applications. Prometheus can be configured to scrape these endpoints to collect application-specific metrics, such as HTTP request counts, error rates, and user activity metrics.



  3. Service Discovery: Prometheus can automatically discover targets to scrape using service discovery mechanisms. This allows it to dynamically find and scrape metrics from multiple applications running in a Kubernetes cluster or other environments.


  4. Configuration: Prometheus is configured to know which endpoints to scrape and how often to do so. This configuration can be done in the Prometheus configuration file, where you specify the targets and the scraping intervals.




In summary, Prometheus collects metrics by scraping designated endpoints from applications and exporters, using a pull mechanism, and leveraging service discovery to dynamically identify targets. This allows it to gather a wide range of metrics for monitoring the health and performance of applications and infrastructure.






What are the components of Prometheus architecture?



The Prometheus architecture comprises several key components that work together to monitor systems, store metrics, and provide alerting capabilities. Here’s an overview of each main component:





  1. Prometheus Server:




    • The core of Prometheus, responsible for scraping and storing metrics data. It periodically pulls metrics data from configured endpoints, processes it, and stores it in a time-series database (TSDB) optimized for efficient querying and storage of time-stamped data.

    • The server also handles querying for data, typically using the PromQL query language, enabling efficient and flexible data analysis.




  2. Exporters:




    • Exporters are services or binaries that expose metrics from various systems and applications in a format Prometheus can scrape. Common exporters include the Node Exporter (for system metrics), Blackbox Exporter (for endpoint monitoring), and database-specific exporters (e.g., MySQL or Redis Exporter).

    • Exporters allow Prometheus to monitor non-Prometheus native applications by exposing data in a standard format.




  3. Push Gateway:




    • This component is used for short-lived jobs that do not persist long enough for Prometheus to scrape them. Instead of being scraped, these jobs push their metrics data to the Push Gateway, which retains the data temporarily until Prometheus can retrieve it.

    • The Push Gateway is typically used for batch jobs or ephemeral workloads.




  4. Alertmanager:




    • The Alertmanager is responsible for handling alerts generated by the Prometheus server based on predefined alerting rules. It manages alert lifecycle (sending notifications and grouping or silencing alerts) and routes them to various receivers such as email, Slack, or PagerDuty.

    • This separation of alert handling from the Prometheus server helps centralize alerting configuration and provides flexible alerting strategies.




  5. Service Discovery:




    • Prometheus supports various service discovery mechanisms to identify targets dynamically within cloud and container environments (such as Kubernetes, Consul, or EC2).

    • This allows Prometheus to automatically discover and scrape new instances or containers without manual configuration, making it highly adaptable to dynamic environments.




  6. Prometheus Query Language (PromQL):




    • PromQL is a powerful, flexible query language used to extract, analyze, and aggregate data from Prometheus’s time-series database. It is integral for creating queries and alerts based on complex expressions and is one of the core features that make Prometheus versatile for custom metrics analysis.




  7. Prometheus Console and Web UI:




    • The built-in web interface provides a way to visualize metrics, run queries, and troubleshoot data directly within Prometheus. The Console templates allow creating custom dashboards and graphs using PromQL to visualize time-series data directly.





Together, these components make Prometheus a robust, self-sufficient monitoring and alerting solution well-suited for distributed, dynamic environments like containerized or cloud-native architectures.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
3 Quellen
GPT-6 Astra Release Today? OpenAI’s Next Major AI Model Is Almost Here
1 Quelle
Apple accuses OpenAI of destroying evidence as trade-secrets fight intensifies
1 Quelle
Major AI platforms go down in unprecedented simultaneous outage
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Observability(Metrics, Monitoring & Prometheus) -2

Thematisch verwandte Begriffe: ObservabilityMetrics, Monitoring, Prometheus · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...