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

Percentile filter #1

Merged
merged 21 commits into from
Mar 11, 2020
Merged

Percentile filter #1

merged 21 commits into from
Mar 11, 2020

Commits on Dec 5, 2019

  1. Return number of written bytes in Float converter

    Added some unit tests to support refactoring
    eperott committed Dec 5, 2019
    Configuration menu
    Copy the full SHA
    d6061db View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2e2ea2 View commit details
    Browse the repository at this point in the history
  3. Extract exposition logic

    eperott committed Dec 5, 2019
    Configuration menu
    Copy the full SHA
    9a403dc View commit details
    Browse the repository at this point in the history
  4. Use ChunkedNioStream for metric exposion

    This exposion implementation is compatible with both Netty 4.0 and 4.1.
    This also makes it possible to use the same exposion implementation
    for Cassandra 4.0 as well as legacy versions.
    
    Closes #39
    eperott committed Dec 5, 2019
    Configuration menu
    Copy the full SHA
    456ee36 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2019

  1. Fix potential NPE in Labels.finalize()

    Add unit test to demonstrate issue #46
    
    Closes #47
    eperott committed Dec 12, 2019
    Configuration menu
    Copy the full SHA
    bf4a6fe View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2020

  1. Mute 'Broken pipe' IOExceptions

    Closes #38
    eperott authored and zegelin committed Feb 7, 2020
    Configuration menu
    Copy the full SHA
    bf9ac3a View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2020

  1. Configuration menu
    Copy the full SHA
    3ddb30f View commit details
    Browse the repository at this point in the history
  2. Add ThreadPool missing metrics

    serban21 authored and zegelin committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    d802552 View commit details
    Browse the repository at this point in the history
  3. Add support for SSL/TLS

    Closes #52
    zegelin committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    7bfb0a5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    99d883c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    76f74d9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f304ff0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0b5e2c0 View commit details
    Browse the repository at this point in the history
  8. Add exception handling for MBean disappearing between listing and eva…

    …luation
    
    Closes #27.
    
    Squashed commit of the following:
    
    commit c8eafefc7732d84114c990f81d6ad70489dafcec
    Author: Adam Zegelin <adam@zegelin.com>
    Date:   Fri Feb 21 15:20:55 2020 -0800
    
        Code cleanup.
    
    commit 425df4699f963213c5498b3f1eedec5fdb38a609
    Merge: 0b5e2c0 21307ab
    Author: Adam Zegelin <adam@zegelin.com>
    Date:   Fri Feb 21 15:11:05 2020 -0800
    
        Merge branch 'fix-mbean-jmx-harvester' of https://github.com/suhailpatel/cassandra-exporter into suhailpatel-fix-mbean-jmx-harvester
    
    commit 21307ab
    Author: Suhail Patel <me@suhailpatel.com>
    Date:   Tue Jul 9 16:46:24 2019 +0100
    
        Dynamically update the set of current MBeans as we go along
    
        Again, if exceptions occur in other parts of the pipeline, MBeans are
        registered but are not removed which causes other bugs.
    
        Note that we use an immutable copy of the sets because the currentMBeans
        set is being updated constantly.
    
    commit c4b46dc
    Author: Suhail Patel <me@suhailpatel.com>
    Date:   Sat Jul 6 20:51:06 2019 +0100
    
        Add exception handling for MBean disappearing between listing and evaluation
    
        There was a condition where evaluating the set of added MBean can cause
        an exception. This would occur if the MBean had disappeared between
        listing the MBean and extracting the MBean info. If this happened in the
        middle of a set of added MBeans, it would mean our current MBeans set in
        the JMXHarvester isn't up to date with the current MBeans.
    
        This has cascading impact down the line because there are MBeans
        registered from previous runs that are not correctly associated with the
        set of current MBeans. This means they will never be cleaned up. This
        has impact on the collect stage which then results in other exceptions.
    
        We found this occur during Repair jobs when the repair durations are
        very small.
    zegelin committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    87b939c View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2020

  1. Configuration menu
    Copy the full SHA
    cb3e231 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2020

  1. More options added

    Enhanced code to filter quantiles based on user choice
    Included --cql-ssl option to crated encrypted native connection
    Added latest version of jars as the older version are having some
    vulnerabilities
    n660955 committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    6a417ae View commit details
    Browse the repository at this point in the history
  2. Used netty 4.1.42.Final

    Used netty 4.1.42.Final to be inline with another PR
    n660955 committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    858f9a5 View commit details
    Browse the repository at this point in the history
  3. Merge https://github.com/instaclustr/cassandra-exporter into percenti…

    …le-filter
    
    The master branch contains some important fixes.
    n660955 committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    39e6009 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2020

  1. Addressed all review comments

    Applied quantile filtering while writing metrics into socket.
    Corrected formating.
    Reverted netty jar version changes.
    n660955 committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    b5b15ed View commit details
    Browse the repository at this point in the history
  2. Formatting

    Appended the new line at the end of files which removed while restoring
    previous changes from repo.
    n660955 committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    a3c581c View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2020

  1. Corrected formatting issues

    n660955 committed Mar 6, 2020
    Configuration menu
    Copy the full SHA
    9f9823c View commit details
    Browse the repository at this point in the history