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

Example of how to send metrics to the log. #4218

Closed
wants to merge 1 commit into from

Conversation

dlmarion
Copy link
Contributor

@dlmarion dlmarion commented Feb 2, 2024

This adds an example of how to create a MeterRegistryFactory that
emits metrics to the log. In this example the metrics are emitted to
the process log every 1 minute using the logger name LoggingMeterRegistry.

@dlmarion dlmarion requested a review from keith-turner February 2, 2024 18:45
@dlmarion dlmarion self-assigned this Feb 2, 2024
@dlmarion
Copy link
Contributor Author

dlmarion commented Feb 2, 2024

I'm torn on whether or not we should merge this. The IT doesn't really test anything, it uses MAC to generate the log entries. Maybe there is a better place to put this? Maybe we just mark the test as Disabled so that it doesn't increase the build times?

@EdColeman
Copy link
Contributor

I've been working on a Prometheus example for metrics that will live in accumulo-examples. I could expand that to also demo the LoggingMetrics. That way it would exist, but not be part of the code base.

@dlmarion
Copy link
Contributor Author

dlmarion commented Feb 2, 2024

Ok, I'm fine with parking this here for now until we have somewhere to put it.

@dlmarion
Copy link
Contributor Author

dlmarion commented Feb 7, 2024

Suggestion from @ctubbsii is to make this the reference implementation, but disabled by default.

@EdColeman EdColeman assigned EdColeman and unassigned dlmarion Feb 7, 2024
*/
package org.apache.accumulo.test.metrics;

import org.apache.accumulo.core.metrics.MeterRegistryFactory;
Copy link
Member

Choose a reason for hiding this comment

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

I just noticed that the factory is in not in a public API package, or an SPI package. It should probably be in core/spi/metrics, not just core/metrics.

If users are expected to implement this SPI class, MeterRegistryFactory should be in the SPI package.

* <p>
* Property.GENERAL_MICROMETER_FACTORY = TestLoggingRegistryFactory.class.getName()
*/
public class TestLoggingRegistryFactory implements MeterRegistryFactory {
Copy link
Member

Choose a reason for hiding this comment

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

I think this is a good basic implementation for a reference implementation. This class name could be set as the default value for the factory property, and this class could also live in the core/spi/metrics package.

I'd suggest renaming it to "BasicLoggingMeterRegistryFactory"

cfg.setProperty(Property.GC_CYCLE_DELAY, "1s");
cfg.setProperty(Property.MANAGER_FATE_METRICS_MIN_UPDATE_INTERVAL, "1s");

// Tell the server processes to use a StatsDMeterRegistry that will be configured
Copy link
Member

Choose a reason for hiding this comment

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

This incorrectly says StatsD when its a Logging impl.

// we need the test to take longer than 1m
for (int i = 0; i < 10; i++) {
doWorkToGenerateMetrics();
Thread.sleep(10_000);
Copy link
Member

Choose a reason for hiding this comment

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

How are the logs verified?

Comment on lines -155 to -177
property.metricsFilename = ./target/test-metrics

# appender.metrics.type = Console
appender.metrics.type = RollingFile
appender.metrics.name = LoggingMetricsOutput
appender.metrics.fileName = ${metricsFilename}.metrics
appender.metrics.filePattern = ${metricsFilename}-%d{MM-dd-yy-HH}-%i.metrics.gz
appender.metrics.layout.type = PatternLayout
appender.metrics.layout.pattern = METRICS: %d{ISO8601}, %m%n
appender.metrics.policies.type = Policies
appender.metrics.policies.time.type = TimeBasedTriggeringPolicy
appender.metrics.policies.time.interval = 1
appender.metrics.policies.time.modulate = true
appender.metrics.policies.size.type = SizeBasedTriggeringPolicy
appender.metrics.policies.size.size=100MB
appender.metrics.strategy.type = DefaultRolloverStrategy
appender.metrics.strategy.max = 10

logger.metrics.name = org.apache.accumulo.metrics
logger.metrics.level = info
logger.metrics.additivity = false
logger.metrics.appenderRef.metrics.ref = LoggingMetricsOutput

Copy link
Member

Choose a reason for hiding this comment

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

👍 I love seeing this stuff go away from our config, even though it's just test config. I'm not really sure how it was previously being used, though.

Copy link
Contributor

Choose a reason for hiding this comment

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

This was a vestige when metric logs were read / confirmed with a file tailer that has been removed.

@dlmarion
Copy link
Contributor Author

Closing in favor of #4459

@dlmarion dlmarion closed this Apr 24, 2024
@ctubbsii ctubbsii modified the milestones: 3.1.0, 2.1.3 Jul 12, 2024
@ctubbsii ctubbsii removed this from the 2.1.3 milestone Jul 25, 2024
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