Editing Prometheus

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
[[wikipedia:Prometheus (software)|Prometheus]] is an open-source systems [[monitoring]] and [[alerting]] toolkit <ref>https://prometheus.io/docs/introduction/overview/</ref> released in [[2012]]. Prometheus design is focused to [[collect]] and process metrics, not as an event logging system for [[Prometheus logs|logs]].<ref>https://prometheus.io/docs/introduction/faq/#how-to-feed-logs-into-prometheus?</ref>. [[Grafana]] is usually used to produce [[dashboards]].
+
[[wikipedia:Prometheus (software)|Prometheus]] is an open-source systems [[monitoring]] and alerting toolkit<ref>https://prometheus.io/docs/introduction/overview/</ref> released in [[2012]]. Prometheus design is focused to collect and process metrics, not as an event logging system for logs.<ref>https://prometheus.io/docs/introduction/faq/#how-to-feed-logs-into-prometheus?</ref>. [[Grafana]] is usually used to produce dashboards.
*  https://prometheus.io/
 
  
== [[Prometheus Installation]]==
 
* http://localhost:9090
 
* [[Node exporter]]: [[curl -sSL http://localhost:9100/metrics]]
 
  
[[Kubernetes]]
+
==Install Prometheus==
* <code>[[helm repo add prometheus-community https://prometheus-community.github.io/helm-charts]]</code>
+
* Linux:
* <code>[[helm install myprometheus  prometheus-community/prometheus]]</code>
+
**  [[How To Install Prometheus in Linux]]
 +
 
 +
* [[macOS]]:
 +
** <code>[[brew]] install prometheus && brew services start prometheus</code>
 +
** <code>brew install [[node_exporter]]</code>. Connect to: http://localhost:9101/metrics
 +
 
 +
* Using Docker containers:
 +
** <code>docker pull prom/prometheus &&  docker run -p 9090:9090 prom/prometheus</code><ref>https://prometheus.io/docs/prometheus/latest/installation/</ref> and connect to http://localhost:9090/
 +
** <code>docker pull prom/[[node-exporter]]</code> although it's not recommended to deploy it as a Docker container because it requires access to the host system<ref>https://github.com/prometheus/node_exporter</ref>
  
 
== Configuration files ==
 
== Configuration files ==
* Linux: <code>[[/etc/prometheus/prometheus.yml]]</code>
+
* Linux: <code>/etc/prometheus/prometheus.yml</code>
* macOS: <code>[[/usr/local/etc/prometheus.args]]</code>
+
* macOS: <code>/usr/local/etc/prometheus.args </code>
* [[Prometheus storage]]: <code>[[/var/lib/prometheus/]]</code>
 
  
 
== Binaries ==
 
== Binaries ==
 
* <code>[[prometheus]]</code>
 
* <code>[[prometheus]]</code>
 
* <code>[[promtool]]</code>
 
* <code>[[promtool]]</code>
* <code>[[tsdb]]</code>
 
  
== Alternatives ==
+
==Configuring Prometheus==
* [[Thanos]]
 
* [[VictoriaMetrics]]
 
* [[Grafana Mimir]] (Mar 2022)
 
  
== Configuration ==
+
* In the /etc/prometheus directory, use nano or your favorite text editor to create a configuration file named prometheus.yml. For now, this file will contain just enough information to run Prometheus for the first time.
 +
 
 +
:<code>sudo nano /etc/prometheus/[[prometheus.yml]]</code>
  
* Configuration file: <code>[[/etc/prometheus/prometheus.yml]]</code>
 
  
 
* In the '''global''' settings, define the default interval for scraping metrics. Note that Prometheus will apply these settings to every exporter unless an individual exporter's own settings override the global.
 
* In the '''global''' settings, define the default interval for scraping metrics. Note that Prometheus will apply these settings to every exporter unless an individual exporter's own settings override the global.
  
* This '''[[scrape_interval]]''' value tells Prometheus to collect metrics from its exporters every 15 seconds, which is long enough for most exporters. Now, add Prometheus itself to the list of exporters to scrape from with the following s'''crape_configs''' directive:
 
  
* Prometheus uses the '''job_name''' to label exporters in queries and on graphs, so be sure to pick something descriptive here. And, as Prometheus exports important data about itself that you can use for monitoring performance and debugging, we've overridden the global '''scrape_interval''' directive from 15 seconds to 5 seconds for more frequent updates. Lastly, Prometheus uses the '''static_configs''' and '''targets''' directives to determine where exporters are running. Since this particular exporter is running on the same server as Prometheus itself, we can use localhost instead of an IP address along with the default port, '''[[9090]]'''.
+
* This '''scrape_interval''' value tells Prometheus to collect metrics from its exporters every 15 seconds, which is long enough for most exporters. Now, add Prometheus itself to the list of exporters to scrape from with the following s'''crape_configs''' directive:
 +
 
 +
 
 +
* Prometheus uses the '''job_name''' to label exporters in queries and on graphs, so be sure to pick something descriptive here. And, as Prometheus exports important data about itself that you can use for monitoring performance and debugging, we've overridden the global '''scrape_interval''' directive from 15 seconds to 5 seconds for more frequent updates. Lastly, Prometheus uses the '''static_configs''' and '''targets''' directives to determine where exporters are running. Since this particular exporter is running on the same server as Prometheus itself, we can use localhost instead of an IP address along with the default port, '''9090'''.
  
  
Line 49: Line 51:
 
</pre>
 
</pre>
  
== Linux Basic Prometheus Operations ==
+
==Basic Prometheus Operations==
* '''Start''' Prometheus: :<code>[[sudo systemctl start prometheus]]</code>
+
* '''Start''' Prometheus: :<code>sudo systemctl start prometheus</code>
* '''Reload''' systemd:  :<code>[[sudo systemctl daemon-reload prometheus]]</code>
+
* '''Reload''' systemd:  :<code>sudo systemctl daemon-reload prometheus</code>
* '''Verify''' the service's status: :<code>sudo [[systemctl status prometheus]]</code>
+
* '''Verify''' the service's status: :<code>sudo systemctl status prometheus</code>
 
 
* Delete all data:
 
Enable <code>--web.enable-admin-api</code> and execute:
 
:: http://prometheus.domain.com:9090/api/v2/admin/tsdb/delete_series
 
:: http://prometheus.domain.com:9090/api/v2/admin/tsdb/clean_tombstones
 
  
 
==Activities==
 
==Activities==
Line 63: Line 60:
 
# Read [[Prometheus changelog]]: https://github.com/prometheus/prometheus/blob/master/CHANGELOG.md
 
# Read [[Prometheus changelog]]: https://github.com/prometheus/prometheus/blob/master/CHANGELOG.md
 
# Read Stackoverflow prometheus questions: https://stackoverflow.com/questions/tagged/prometheus?tab=Frequent
 
# Read Stackoverflow prometheus questions: https://stackoverflow.com/questions/tagged/prometheus?tab=Frequent
# Export <code>[[dockerd]]</code> metrics to Prometheus: https://docs.docker.com/config/daemon/prometheus/, modify <code>[[/etc/docker/daemon.json]]</code>
 
 
== Related terms ==
 
* [[PromQL]]
 
* [[Elasticsearch]]
 
* Exporters: [[Nginx]] ([https://github.com/nginxinc/nginx-prometheus-exporter nginx-prometheus-exporter]), [[Node exporter]]
 
* [[Cortex]], Prometheus as a service
 
* [[Loki]]
 
* [[CKA]]: [[Understand how to monitor applications in Kubernetes]]
 
* <code>[[.tpl]]</code>
 
* <code>[[alert:]]</code>
 
* [[AWS CloudWatch Container Insights]]
 
* [[Amazon Managed Service for Prometheus]]
 
* [[Kubernetes Metrics Server]]
 
* [[Fluent Bit]]
 
* [[GitLab 12.5]] Automatically close GitLab issues with recovery alerts from [[Prometheus]]
 
* [[Prometheus-node-exporter Debian configuration file]]
 
* <code>[[/metrics]]</code>
 
* [[Amazon Managed Prometheus]]
 
* [[Google Cloud Managed Prometheus]]
 
* <code>[[level=error]] ... [[no space left on device]]</code>
 
* [[Prometheus API]]
 
* [[Logz.io]]
 
  
== See also ==
+
==See also==
* {{Prometheus alternatives}}
 
 
* {{Prometheus}}
 
* {{Prometheus}}
 +
* {{Grafana}}
 
* {{monitoring software}}
 
* {{monitoring software}}
* {{TSDB}}
+
* [[Prometheus alertmanager]] with support for email, [[PagerDuty]] or [[OpsGenie]]
 +
 
  
 +
[[Category:Information technology]]
 +
[[Category:Server administration]]
 
[[Category:Monitoring]]
 
[[Category:Monitoring]]
 
[[Category:Prometheus]]
 
[[Category:Prometheus]]
[[Category:CNCF]]
+
 
  
  
 
{{CC license}}
 
{{CC license}}
 
Source: https://en.wikiversity.org/wiki/Prometheus_monitoring
 
Source: https://en.wikiversity.org/wiki/Prometheus_monitoring

Please note that all contributions to wikieduonline may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Wikieduonline:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Advertising: