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

Query for topics metrics #794

Merged
merged 7 commits into from
Jul 11, 2017
Merged

Conversation

faderskd
Copy link
Contributor

@faderskd faderskd commented Jul 11, 2017

This pull request adds additional endpoint (/query/topics/metrics) which handle POST method for fetching list of topics metrics. Two new options for filtering data were added. They are GRATER_THAN and LOWER_THAN operator. Simple example for filtering topics metrics using one of them:

POST /query/topics/metrics
{
"query": {"rate": {"gt": 0}}
}

@Test(dataProvider = "topicsMetricsFilteringData")
public void shouldQueryTopicsMetrics(String query, List<String> qualifiedNames) {
// given
operations.buildTopic(topic("testGroup", "testTopic1").withContentType(JSON).withTrackingEnabled(false).build());
Copy link
Collaborator

Choose a reason for hiding this comment

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

no need for .withTrackingEnabled()

import org.apache.commons.jxpath.JXPathException;
import pl.allegro.tech.hermes.management.infrastructure.query.graph.ObjectGraph;

public class GraterThanMatcher implements Matcher {
Copy link
Contributor

Choose a reason for hiding this comment

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

That's duplicated with LowerThanMatcher. How about creating a ComparisonMatcher which would receive an operator function of (double, double) => boolean as parameter? Then implementing GreaterThanMatcher and LowerThanMatcher would just mean configuring it in a proper way, e.g.:

  • greater: new ComparisonMatcher(path, parser.parseValue(node), (a, b) -> a > b);
  • lower: new ComparisonMatcher(path, parser.parseValue(node), (a, b) -> a < b);

import org.apache.commons.jxpath.JXPathException;
import pl.allegro.tech.hermes.management.infrastructure.query.graph.ObjectGraph;

public class GraterThanMatcher implements Matcher {
Copy link
Contributor

Choose a reason for hiding this comment

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

typo: greater.

@@ -0,0 +1,7 @@
package pl.allegro.tech.hermes.management.infrastructure.query.matcher;

public class MatcherInputException extends RuntimeException {
Copy link
Contributor

Choose a reason for hiding this comment

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

please extend ManagementException, so you'll be able to get rid of MatcherExceptionMapper

import pl.allegro.tech.hermes.api.Subscription;
import pl.allegro.tech.hermes.api.Topic;
import pl.allegro.tech.hermes.api.Query;
import pl.allegro.tech.hermes.api.*;
Copy link
Contributor

Choose a reason for hiding this comment

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

IMO these wildcards are too greedy :) please tune your IDE, so explicit imports will be left instead.


public String getQualifiedName() {
return topicName.qualifiedName();
}
Copy link
Contributor

Choose a reason for hiding this comment

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

missing equals + hashcode ?

import javax.ws.rs.ext.Provider;

@Provider
public class MatcherExceptionMapper extends AbstractExceptionMapper<MatcherInputException> {
Copy link
Contributor

Choose a reason for hiding this comment

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

this class can be removed, see comment for MatcherInputException

return query.filter(
getAllTopics()
.stream()
.map(t -> {
Copy link
Contributor

Choose a reason for hiding this comment

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

A private method doing this map() logic here would be nice so we could method-reference it


@Override
public boolean match(Object value) {
try {
Copy link
Contributor

Choose a reason for hiding this comment

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

this try-catch is a bit wide, maybe we should divide it into smaller parts (separated graph navigation, greater-than decision logic)?

@druminski druminski merged commit caad707 into allegro:develop Jul 11, 2017
@adamdubiel adamdubiel added this to the 0.12.1 milestone Jul 11, 2017
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.

5 participants