Skip to content

Universal Metrics Collection for OpenTelemetry

License

Notifications You must be signed in to change notification settings

iguitton/metricshub

 
 

Repository files navigation

MetricsHub

GitHub release (with filter) Build GitHub top language License

Structure

This is a multi-module project:

  • /: The root (parent of all submodules)
  • metricshub-engine: The brain, the heart of this project. It houses the core logic and essential functionalities that power the entire system.
  • hardware: Hardware Energy and Sustainability module, dedicated to managing and monitoring hardware-related metrics, focusing on energy consumption and sustainability aspects.
  • metricshub-agent: The MetricsHub Agent module includes a Command-Line Interface (CLI) and is responsible for interacting with the MetricsHub engine. It acts as an entry point, collecting and transmitting data to the OpenTelemetry Collector.
  • metricshub-windows: Builds the MSI (Microsoft Installer) package for MetricsHub on Windows platforms.
  • metricshub-rhel: Builds the RPM (Red Hat Package Manager) package.
  • metricshub-debian: Builds the Debian package of MetricsHub.
  • metricshub-doc: Houses the documentation for MetricsHub.

How to build the Project

Requirements

Build

To build the MetricsHub package, from ./metricshub:

$ mvn clean package

Building Windows Packages (.MSI)

  • Host: Windows
  • WiXToolSet Installation: Download and install WiX Toolset under C:\Program Files (x86)\WiX Toolset v3.11.
  • Execute the mvn package command within the MetricsHub root directory (metricshub). You can find the .msi package in the metricshub/metricshub-windows/target directory upon completion (metricshub-windows-<version>.msi).

Building Debian Packages (.DEB)

  • Host: Debian Linux
  • Additional Packages: Install the following packages:
    • fakeroot (/usr/bin/fakeroot)
    • gcc-multilib
  • Execute the mvn package command within the MetricsHub root directory (metricshub). You can find the .deb package in the metricshub/metricshub-debian/target directory upon completion (metricshub-debian-<version>-amd64.deb).
    • The Docker package that is compatible with the debian:latest image will also be generated under the metricshub/metricshub-debian/target directory (metricshub-debian-<version>-docker.tar.gz).

Building RHEL Packages (.RPM)

  • Host: Red Hat Enterprise Linux (Centos, etc.)
  • Additional Packages: Install the rpm-build package (/usr/bin/rpmbuild).
  • Execute the mvn package command within the MetricsHub root directory (metricshub). You can find the .rpm package in the metricshub/metricshub-rhel/target directory upon completion (metricshub-rhel-<version>-1.x86_64.rpm).

Checkstyle

In this project, we use Checkstyle to ensure consistent and clean Java code across our codebase.

Maven Checkstyle Plugin is configured globally in the main pom.xml file, and it verifies the Java code during the build process:

	<plugin>
		<artifactId>maven-checkstyle-plugin</artifactId>
		<version>3.3.0</version>
		<configuration>
			<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
			<configLocation>checkstyle.xml</configLocation>
		</configuration>
		<executions>
			<execution>
				<id>validate</id>
				<phase>validate</phase>
				<goals>
					<goal>checkstyle</goal>
					<goal>check</goal>
				</goals>
			</execution>
		</executions>
	</plugin>

The Checkstyle rules that govern our code quality and style are defined in the ./checkstyle.xml file. It's important to adhere to these rules to maintain code consistency and quality throughout the project.

The build will fail if one or more Checkstyle rules are violated.

To perform Checkstyle analysis and generate a report on violations, navigate to the directory of the Maven project you wish check and run the following mvn command:

mvn checkstyle:checkstyle

All the encountered Checkstyle issues are reported under the target/site directory.

To perform Checkstyle analysis and output violations to the console, navigate to the directory of the Maven project you wish check and run the following mvn command:

mvn checkstyle:check

Code Formatting

In this project, we maintain code formatting using prettier-java, a tool that helps ensure clean and consistent Java code. It automatically formats your code according to a predefined set of rules.

Prettier Maven Plugin

To automatically format the Java code in a specific Maven module, navigate to the directory of the Maven project you wish to format and run the following mvn command:

mvn prettier:write

To validate the formatted code, navigate to the directory of the Maven project you wish to check and run the following mvn command:

mvn prettier:check

The build will fail if you forgot to run Prettier.

Submitting a PR

Before you submit a PR, make sure to use the available tools for code formatting, and ensure that the style checks and unit tests pass.

License

License is GNU Affero General Public License v3.0. Each source file must include the AGPL-3.0 header (build will fail otherwise). To update source files with the proper header, simply execute the below command:

mvn license:update-file-header

About

Universal Metrics Collection for OpenTelemetry

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 81.8%
  • Awk 18.1%
  • Other 0.1%