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

rrdcached dump support #1235

Merged
merged 7 commits into from
Oct 20, 2023
Merged

rrdcached dump support #1235

merged 7 commits into from
Oct 20, 2023

Commits on Oct 3, 2023

  1. add missing newlines (\n) for TUNE

    Help strings for TUNE command were lacking the trailing newline
    character. This causes the FLUSH syntax printed in the same line as
    TUNE's.
    thz committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    48f0e2d View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. fix sendall edge cases

    The `sendall` func is implemented as a loop over multiple send() calls until all bytes are sent. Previously on subsequent calls the incorrect buffer was used for sending.
    This change also forbids `allow_retry` when at least one byte was successfully sent already. This would otherwise mess up the protocol, when retrying from the start.
    thz committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    8903010 View commit details
    Browse the repository at this point in the history
  2. rrcached: implement DUMP

    thz committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    bdd16db View commit details
    Browse the repository at this point in the history
  3. update tests for remote dump support

    Previously, tests replaced the daemon-based dump use with a local use.
    This is changed in this commit as dump is now supported via daemon.
    thz committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    d2dc89d View commit details
    Browse the repository at this point in the history
  4. update doc/rrddump

    thz committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    1586178 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

  1. fix format argument type

    thz committed Oct 15, 2023
    Configuration menu
    Copy the full SHA
    2888988 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

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