Creating Monitoring Dashboards

https://medium.com/expedia-group-tech/creating-monitoring-dashboards-1f3fbe0ae1ac

In this article we went through best practices on monitoring metrics and dashboards and showed you how to create Grafana dashboards based on Prometheus metrics. These examples can be used as a starting point to craft more complex queries and more visualisations. However, always keep in mind that less is more, and simple is better than complex!

Note: Thanks to Vinod Canumalla and Fabian Piau for reviewing the blogpost.

Опенсорсные альтернативы Google Analytics на своём хостинге

https://habr.com/ru/company/vdsina/blog/518158/

Другие опенсорсные инструменты похожей функциональности:

Как выявить угрозы кибербезопасности и уязвимости в системе webinar links.

blog.dvankevich.pp.ua.ssl.conf

ServerName blog.dvankevich.pp.ua

#This directive toggles the usage of the SSL/TLS Protocol Engine for proxy. Without this you cannot use HTTPS URL as your Origin Server
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off

# To prevent SSL Offloading
# Set the X-Forwarded-Proto to be https for your Origin Server to understand that this request is made over HTTPS #https://httpd.apache.org/docs/2.2/mod/mod_headers.html#requestheader.
RequestHeader set X-Forwarded-Proto “https”
RequestHeader set X-Forwarded-Port “443”

# The ProxyPass directive specifies the mapping of incoming requests to the backend server (or a cluster of servers known as a Balancer group).
# It proxies the requests only with matching URI “/blog”

ProxyPass / https://192.168.191.112/

#To ensure that and Location: headers generated from the backend are modified to point to the reverse proxy, instead of back to itself, #the ProxyPassReverse directive is most often required:

ProxyPassReverse / https://192.168.191.112/

# The CacheDisable directive instructs mod_cache to not cache urls
#CacheDisable *