Class ChunkedBulkSender.Result
java.lang.Object
ai.attackframework.tools.burp.utils.opensearch.ChunkedBulkSender.Result
- Enclosing class:
ChunkedBulkSender
Result of one chunked bulk request: success count and total documents sent.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal longEstimated payload bytes attempted in this bulk request.final intTotal number of documents sent in this bulk request.final longEstimated payload bytes for successful documents in this bulk request.final intNumber of documents that were successfully indexed.Failed traffic documents grouped by source bucket.Successful traffic documents grouped by source bucket.Failed traffic documents grouped by tool type.Successful traffic documents grouped by tool type. -
Constructor Summary
ConstructorsConstructorDescriptionResult(int successCount, int attemptedCount, long attemptedBytes, long successBytes) Result(int successCount, int attemptedCount, long attemptedBytes, long successBytes, Map<String, Integer> trafficToolTypeSuccessCounts, Map<String, Integer> trafficToolTypeFailureCounts, Map<String, Integer> trafficSourceSuccessCounts, Map<String, Integer> trafficSourceFailureCounts) -
Method Summary
-
Field Details
-
successCount
public final int successCountNumber of documents that were successfully indexed. -
attemptedCount
public final int attemptedCountTotal number of documents sent in this bulk request. -
attemptedBytes
public final long attemptedBytesEstimated payload bytes attempted in this bulk request. -
successBytes
public final long successBytesEstimated payload bytes for successful documents in this bulk request. -
trafficToolTypeSuccessCounts
Successful traffic documents grouped by tool type. -
trafficToolTypeFailureCounts
Failed traffic documents grouped by tool type. -
trafficSourceSuccessCounts
Successful traffic documents grouped by source bucket. -
trafficSourceFailureCounts
Failed traffic documents grouped by source bucket.
-
-
Constructor Details
-
Result
public Result(int successCount, int attemptedCount, long attemptedBytes, long successBytes) -
Result
-
-
Method Details
-
isFullSuccess
public boolean isFullSuccess()
-