forked from netdata/netdata
-
Notifications
You must be signed in to change notification settings - Fork 0
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
[pull] master from netdata:master #374
Merged
Merged
Conversation
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
* log all DYNCFG user actions that alter data * do not show sensitive user info when the user is not logged in * log template actions * add DYNFG message id to annotations --------- Co-authored-by: Ilya Mashchenko <[email protected]>
Reviewer's Guide by SourceryThis pull request introduces logging of user actions performed through the DYNCFG, enhances security by redacting sensitive user information when accessed anonymously, and refactors code for better organization and maintainability. It also updates tests to reflect changes in the source string format. Sequence diagram for DYNCFG user action loggingsequenceDiagram
participant User
participant WebAPI
participant DYNCFG
participant Logger
User->>WebAPI: Sends request to update DYNCFG
WebAPI->>DYNCFG: Calls dyncfg_function_intercept_cb
activate DYNCFG
DYNCFG->>DYNCFG: Processes request
DYNCFG->>DYNCFG: Checks user access and permissions
DYNCFG->>Logger: Logs user action with details (dyncfg_log_user_action)
activate Logger
Logger-->>DYNCFG: Returns
deactivate Logger
DYNCFG-->>WebAPI: Returns result
deactivate DYNCFG
WebAPI-->>User: Sends response
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.1)
Can you help keep this open source service alive? 💖 Please sponsor : )
Summary by Sourcery
This pull request introduces user action logging for the DYNCFG system, enhancing security and providing an audit trail for configuration changes. It also includes improvements to request source parsing and generation, and removes redundant information from the go.d plugin tests.
New Features:
Enhancements:
parse_request_source
function to parse the request source string and extract information such as the client IP address, user name, and cloud account ID.web_client_api_request_vX_source_to_buffer
function to generate the request source string based on the web client's authentication status and user role.Chores: