Conversation
3b48017 to
b431b3a
Compare
b431b3a to
8eac552
Compare
8eac552 to
683f2ac
Compare
|
| Branch | token_issued_at |
| Testbed | ubuntu-latest |
🚨 1 Alert
| Benchmark | Measure Units | View | Benchmark Result (Result Δ%) | Upper Boundary (Limit %) |
|---|---|---|---|---|
| fernet token/project | Latency microseconds (µs) | 📈 plot 🚷 threshold 🚨 alert (🔔) | 1.47 µs(+29.00%)Baseline: 1.14 µs | 1.28 µs (114.85%) |
Click to view all benchmark results
| Benchmark | Latency | Benchmark Result nanoseconds (ns) (Result Δ%) | Upper Boundary nanoseconds (ns) (Limit %) |
|---|---|---|---|
| fernet token/project | 📈 view plot 🚷 view threshold 🚨 view alert (🔔) | 1,467.90 ns(+29.00%)Baseline: 1,137.89 ns | 1,278.12 ns (114.85%) |
| get_fernet_token_timestamp/project | 📈 view plot 🚷 view threshold | 148.52 ns |
|
🦢 Load Test Results Goose Attack ReportPlan Overview
Request Metrics
Response Time Metrics
Status Code Metrics
Transaction Metrics
Scenario Metrics
Error Metrics
|
615dd1e to
5677421
Compare
`issued_at` property of the token in python Keystone is a timestamp of the fernet creation (part of the protocol). Due to the absence of the method in the fernet crate copy the logic (just a few steps) how to access it from the message (python keystone does it the same way even the public method exists).
5677421 to
9595015
Compare
Merged
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
issued_atproperty of the token in python Keystone is a timestamp ofthe fernet creation (part of the protocol). Due to the absence of the
method in the fernet crate copy the logic (just a few steps) how to
access it from the message (python keystone does it the same way even
the public method exists).