-
Notifications
You must be signed in to change notification settings - Fork 231
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
Add a section for Login examples #990
Comments
Another example https://community.k6.io/t/unique-login-for-each-virtual-user/5563/9, in this case not of a token that expires. Though it seems it's not super clear to some users how to get a token for each user. |
Login, data parametrization, and correlation and dynamic data is one of the most common cases and where many new users struggle with. I suggest handling this issue holistically: review current examples, add new ones, improve structure, add common pitfalls, etc. Is there more doc issues related to this one? |
Thanks @ppcano I'll review the forums for older similar topics and we can figure out if a tutorial or blog can help with a more complete example. Maybe separate APIs from websites (httpx sessions can help here as well). |
Another example that is trying to get the cookies under |
I'm repurposing this to discuss where we could fit a section/tutorial that helps users with login options. Maybe something similar to https://k6.io/blog/ways-to-visualize-k6-results/ for login.
etc. |
Nice issue. Here's my thoughts about the structure and information flow. In short, I think we have two things two do:
Also, no need to overthink it. Anything we do that addresses common, real questions will fill an information gap. If it's useful, we'll find a place and format for it :-) Example vs. blog tutorialI don't think this is an either/or situation. For short workflows, we can add an example. For longer, step-by-step procedures, a tutorial works better. In both cases, it's nice to provide context of a plausible case from real life and use examples that can be reproduced on a local machine. We also don't have any nested sidebar sections in the examples page, but I don't see why we couldn't. For example "Login and authentication." (Not recommending anything specific). The main difference is that a tutorial proceeds from one logical step to another. The reader should be able to follow along and learn by doing. An example is more "grab and go"; it assumes the reader will more or less know what to do. For the tutorial, I think the Grafana Tutorial template is totally fine. For an example, this seems like a good starting structure:
In both forms, it's probably good to avoid explanation. These should be fast to read and overexplanation drags the pace down. Ideally we should have a separate conceptual doc of any important concepts. Let the introductory sentences of the procedure be the explanation itself. Don't take that structure so seriously. You might see a more logical way. Let the information and document goal tell you what to do :-) . Linking things togetherThis is maybe something we need to be more mindful about. In all of these examples, I think the information more or less already exists in the docs, but they require too much inference from the reader. So whenever we add a tutorial, or example we should link to it from other relevant docs and vice versa. This will create a "connective tissue" throughout the docs to enforce the relationships between general functionality and specific solutions. I think the docs more or less have the information, but it requires readers to figure too much out. Having some explicit examples could really save work, not only for readers but also for us in reducing repetitive support queries. Don't overthink itI think I typed too much. |
This is another example of a user asking how to manage expiring tokens during test, that we can add https://community.k6.io/t/calling-token-api-every-hour/5881 |
Another example when needing to refresh a token: https://community.k6.io/t/generated-token-every-10-mins-and-use-it-during-load-test/5978 |
We'll do some examples in the docs to solve this. |
Another example from the forums: https://community.k6.io/t/cant-update-variable-in-default-function/6987. I will check if it makes sense to open a feature request to make this scenario more integrated with k6 somehow. |
Another example from Stackoverflow: https://stackoverflow.com/questions/76853366/update-variable-to-every-vu-on-k6-refresh-token. |
Based on the older https://stackoverflow.com/questions/69016260/is-there-any-way-to-rerun-the-setup-step-every-few-minutes-in-a-long-duration-te I was thinking we could provide an example similar to https://community.k6.io/t/caching-access-tokens/5508/3. To showcase what happens if the authorization token has a short expiration.
Add what we need to do to update the
token
being used by that VU if a request returns a 403, to continue the iterations. I've seen some users having doubts that they could do that.What can't be done is update the token for all VUs. However, if each VU gets its own token, we can also update it if it expires.
Would that be a useful example? If not we can just close this issue. Opening for feedback.
The text was updated successfully, but these errors were encountered: