Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Prometheus monitoring API and Docker configuration for #72 #266

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

lareinahu-2023
Copy link

Description

This PR adds a generic metrics API and Docker configuration for monitoring ERDDAP instances with Prometheus and Grafana.

Features

  • Generic Java API for metrics collection with Prometheus implementation
  • Docker Compose configuration for Prometheus and Grafana
  • Example Grafana dashboard for ERDDAP metrics
  • Documentation for setup and configuration

Implementation

  • Added a metrics API package under gov.noaa.pfel.erddap.monitoring
  • Created Docker configuration in docker/prometheus/
  • Added supporting documentation

This addresses the project requirements to build a Prometheus Server configuration that can monitor multiple ERDDAP instances.

Testing

  • Tested the Docker configuration locally with a running ERDDAP instance
  • Verified metrics collection and visualization in Grafana

Copy link
Contributor

@srstsavage srstsavage left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your contribution! Please see my initial comments below (this is only a partial review, more to follow).

- ./grafana/dashboards:/var/lib/grafana/dashboards
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=erddapadmin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Users should be able to specify a custom value, falling back to a default.

Suggested change
- GF_SECURITY_ADMIN_PASSWORD=erddapadmin
- GF_SECURITY_ADMIN_PASSWORD=${GF_SECURITY_ADMIN_PASSWORD:-erddapadmin}

@@ -0,0 +1,41 @@
version: '3.8'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Specification of compose file version is considered obsolete, see https://docs.docker.com/reference/compose-file/version-and-name/#version-top-level-element-obsolete

Suggested change
version: '3.8'

Comment on lines +43 to +52
```bash
# Create Java API directories
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/src/main/java/gov/noaa/pfel/erddap/monitoring/config"
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/src/main/java/gov/noaa/pfel/erddap/monitoring/servlet"

# Create Docker configuration directories
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/docker/prometheus/grafana/provisioning/datasources"
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/docker/prometheus/grafana/provisioning/dashboards"
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/docker/prometheus/grafana/dashboards"

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Users shouldn't need to create these directories since they are being created by this pull request.

Suggested change
```bash
# Create Java API directories
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/src/main/java/gov/noaa/pfel/erddap/monitoring/config"
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/src/main/java/gov/noaa/pfel/erddap/monitoring/servlet"
# Create Docker configuration directories
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/docker/prometheus/grafana/provisioning/datasources"
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/docker/prometheus/grafana/provisioning/dashboards"
mkdir -p "/Users/lareina/Desktop/erddp test/erddap/docker/prometheus/grafana/dashboards"

@@ -0,0 +1,41 @@
version: '3.8'

services:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest adding these containers to the docker-compose.yml file at the root of the project, perhaps in a profile that can be enabled or disabled specifically. Then prometheus.yml could target erddap:8080 by default and users wouldn't have to edit any files to get monitoring on their local stack.

@ChrisJohnNOAA
Copy link
Contributor

Description

This PR adds a generic metrics API and Docker configuration for monitoring ERDDAP instances with Prometheus and Grafana.

Features

  • Generic Java API for metrics collection with Prometheus implementation
  • Docker Compose configuration for Prometheus and Grafana
  • Example Grafana dashboard for ERDDAP metrics
  • Documentation for setup and configuration

Implementation

  • Added a metrics API package under gov.noaa.pfel.erddap.monitoring
  • Created Docker configuration in docker/prometheus/
  • Added supporting documentation

This addresses the project requirements to build a Prometheus Server configuration that can monitor multiple ERDDAP instances.

Testing

  • Tested the Docker configuration locally with a running ERDDAP instance
  • Verified metrics collection and visualization in Grafana

We already have support for prometheus metrics available at erddap/metrics through the prometheus-metrics-exporter-servlet-jakarta. Are the java classes you added currently used for anything?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants