Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/1560#discussion_r70809388
--- Diff:
storm-core/src/jvm/org/apache/storm/metric/MetricsConsumerBolt.java ---
@@ -43,19 +44,21 @@
OutputCollector _collector;
Object _registrationArgument;
private final int _maxRetainMetricTuples;
- private Predicate<IMetricsConsumer.DataPoint> _filterPredicate;
+ private final Predicate<IMetricsConsumer.DataPoint> _filterPredicate;
+ private final DataPointExpander _populator;
private final BlockingQueue<MetricsTask> _taskQueue;
private Thread _taskExecuteThread;
private volatile boolean _running = true;
public MetricsConsumerBolt(String consumerClassName, Object
registrationArgument, int maxRetainMetricTuples,
- Predicate<IMetricsConsumer.DataPoint>
filterPredicate) {
+ Predicate<IMetricsConsumer.DataPoint>
filterPredicate, DataPointExpander populator) {
--- End diff --
Oh I missed that. Thanks!
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---