[jira] [Commented] (KAFKA-5890) records.lag should use tags for topic and partition rather than using metric name.

2018-01-15 Thread Charly Molter (JIRA)

[ 
https://issues.apache.org/jira/browse/KAFKA-5890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16326053#comment-16326053
 ] 

Charly Molter commented on KAFKA-5890:
--

This got merged and I opened KAFKA-6445 to track the removing the old metrics.

> records.lag should use tags for topic and partition rather than using metric 
> name.
> --
>
> Key: KAFKA-5890
> URL: https://issues.apache.org/jira/browse/KAFKA-5890
> Project: Kafka
>  Issue Type: Bug
>  Components: clients
>Affects Versions: 0.10.2.0
>Reporter: Charly Molter
>Assignee: Charly Molter
>Priority: Major
> Fix For: 1.1.0
>
>
> As part of KIP-92[1] a per partition lag metric was added.
> These metrics are really useful, however in the implementation  it was 
> implemented as a prefix to the metric name: 
> https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/clients/consumer/internals/Fetcher.java#L1321-L1344
> Usually these kind of metrics use tags and the name is constant for all 
> topics, partitions.
> We have a custom reporter which aggregates topics/partitions together to 
> avoid explosion of the number of KPIs and this KPI doesn't support this as it 
> doesn't have tags but a complex name.
> [1] 
> https://cwiki.apache.org/confluence/display/KAFKA/KIP-92+-+Add+per+partition+lag+metrics+to+KafkaConsumer



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (KAFKA-5890) records.lag should use tags for topic and partition rather than using metric name.

2017-11-10 Thread Charly Molter (JIRA)

[ 
https://issues.apache.org/jira/browse/KAFKA-5890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16247837#comment-16247837
 ] 

Charly Molter commented on KAFKA-5890:
--

Hey [~wushujames] I've finally got around to open a kip about this if you want 
to have a look: 
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74686649

> records.lag should use tags for topic and partition rather than using metric 
> name.
> --
>
> Key: KAFKA-5890
> URL: https://issues.apache.org/jira/browse/KAFKA-5890
> Project: Kafka
>  Issue Type: Bug
>  Components: clients
>Affects Versions: 0.10.2.0
>Reporter: Charly Molter
>
> As part of KIP-92[1] a per partition lag metric was added.
> These metrics are really useful, however in the implementation  it was 
> implemented as a prefix to the metric name: 
> https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/clients/consumer/internals/Fetcher.java#L1321-L1344
> Usually these kind of metrics use tags and the name is constant for all 
> topics, partitions.
> We have a custom reporter which aggregates topics/partitions together to 
> avoid explosion of the number of KPIs and this KPI doesn't support this as it 
> doesn't have tags but a complex name.
> [1] 
> https://cwiki.apache.org/confluence/display/KAFKA/KIP-92+-+Add+per+partition+lag+metrics+to+KafkaConsumer



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (KAFKA-5890) records.lag should use tags for topic and partition rather than using metric name.

2017-09-24 Thread Charly Molter (JIRA)

[ 
https://issues.apache.org/jira/browse/KAFKA-5890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16178207#comment-16178207
 ] 

Charly Molter commented on KAFKA-5890:
--

That's what I was expecting. I'll try to get a KIP written this week.

> records.lag should use tags for topic and partition rather than using metric 
> name.
> --
>
> Key: KAFKA-5890
> URL: https://issues.apache.org/jira/browse/KAFKA-5890
> Project: Kafka
>  Issue Type: Bug
>  Components: clients
>Affects Versions: 0.10.2.0
>Reporter: Charly Molter
>
> As part of KIP-92[1] a per partition lag metric was added.
> These metrics are really useful, however in the implementation  it was 
> implemented as a prefix to the metric name: 
> https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/clients/consumer/internals/Fetcher.java#L1321-L1344
> Usually these kind of metrics use tags and the name is constant for all 
> topics, partitions.
> We have a custom reporter which aggregates topics/partitions together to 
> avoid explosion of the number of KPIs and this KPI doesn't support this as it 
> doesn't have tags but a complex name.
> [1] 
> https://cwiki.apache.org/confluence/display/KAFKA/KIP-92+-+Add+per+partition+lag+metrics+to+KafkaConsumer



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (KAFKA-5890) records.lag should use tags for topic and partition rather than using metric name.

2017-09-15 Thread James Cheng (JIRA)

[ 
https://issues.apache.org/jira/browse/KAFKA-5890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16168759#comment-16168759
 ] 

James Cheng commented on KAFKA-5890:


I noticed the same thing in https://github.com/apache/kafka/pull/2993

Metric names are a public API, and so would require a KIP before changes could 
be made. Is that something you want to take on?

> records.lag should use tags for topic and partition rather than using metric 
> name.
> --
>
> Key: KAFKA-5890
> URL: https://issues.apache.org/jira/browse/KAFKA-5890
> Project: Kafka
>  Issue Type: Bug
>  Components: clients
>Affects Versions: 0.10.2.0
>Reporter: Charly Molter
>
> As part of KIP-92[1] a per partition lag metric was added.
> These metrics are really useful, however in the implementation  it was 
> implemented as a prefix to the metric name: 
> https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/clients/consumer/internals/Fetcher.java#L1321-L1344
> Usually these kind of metrics use tags and the name is constant for all 
> topics, partitions.
> We have a custom reporter which aggregates topics/partitions together to 
> avoid explosion of the number of KPIs and this KPI doesn't support this as it 
> doesn't have tags but a complex name.
> [1] 
> https://cwiki.apache.org/confluence/display/KAFKA/KIP-92+-+Add+per+partition+lag+metrics+to+KafkaConsumer



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)