This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* split up updates vs adds. correctly categorize them * clarify and assure that all ES/cass operation (add, update, delete) metrics also include the memory part (which was already the case for most, but not all operations. and was not documented well) * operations on ES index (add/delete/update) turn into backend operations that get mingled into larger bulk operations, clarify the ambiguity. don't pretend it was an add, make it clear we can't tell for sure what kind of operation it was. * similar for Cassandra: the backend executes inserts (on behalf of adds and updates) and deletes (on behalf of updates and deletes) Even if we tied back query results to the original command, e.g. we could increment an update success counter when an insert succeeds, if we track that insert was due to an update, the update might still not be successfull if the delete fails. So the ok/fail counters should really be for queries. * also time prune operations * specify whether durations concern one metric, or several (e.g. a pattern delete) fix #304
- Loading branch information
Showing
3 changed files
with
81 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters