-
Notifications
You must be signed in to change notification settings - Fork 589
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
Get processing timeline events #3241
Draft
jbaptperez
wants to merge
14
commits into
google:master
Choose a base branch
from
jbaptperez:get-processing-timeline-events
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Get processing timeline events #3241
jbaptperez
wants to merge
14
commits into
google:master
from
jbaptperez:get-processing-timeline-events
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
The yarn.lock file speed-ups an initial set-up but freezes the registry URL, which can be different in the ~/.npmrc file when developing in a company.
Markdown formatting, typos.
Makes the repository handle file line endings. This helps to make it cross-platform, asserting some files are Unix-ended.
Uses the prefeed name of the Compose specification.
Changes: - Removes the deprecated "version" field, - Adds a toplevel "name" field (prefix of container names nad network), - Adds a toplevel "network" field, with a common "timesketch-dev" network, - Removes container names (depends on and toplevel name and service names), - Do not bind to the 127.0.0.1 interface only (0.0.0.0), - Removes useless "links" (common network), - Refactors environment variables to don't use a YAML array, - Removes "restart" fields to detect undesired crashes in development, - Binds ports of other services to the host (opensearch, redis).
Adds .gitignore files. Dramatically improves an image build in a development context.
Adapts the list to the latest version of the repository: - Fixes moved ones, - Deletes removed ones.
Changes are: - Allows Docker image builds in a restricted company context (limited access to remote Ubuntu, Python or Node repositories) using variables, - Centralizes variables in a .env file (not versioned), - Adds a .env.template file as .env template with predefined variables, - Use a distinct directory for every service dependencies, - Use named volumes to avoid anonymous ones (PostgreSQL, Redis and Prometheus), - Use a per-service environment file, - Simplifies how development configuration files are transferred to Timesketch, - Simplifies manipulation of containers using Compose CLI instead of the Docker one, - Simplify and optimizes the Timesketch entrypoint, - Updates the Bash scripts to start frontend-ng, - Updates related documentation. Use named volumes in Compose development PostgreSQL, Redis and Prometheus declare volumes in their Dockerfile. This leads to anonymous volume creations if they are not declared in Compose.
Avoids using the system environment.
jbaptperez
force-pushed
the
get-processing-timeline-events
branch
from
December 5, 2024 16:24
3d33c11
to
42403d9
Compare
For now, there is no setting to switch with previous behaviour.
jbaptperez
force-pushed
the
get-processing-timeline-events
branch
from
December 5, 2024 17:09
42403d9
to
de22d67
Compare
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.
IMPORTANT: All Pull Requests should be connected to an issue, if you don't
have an issue, please start by creating an issue and link it to the PR.
Please provide enough information so that others can review your pull request:
Sketch
model, theactive_timelines
property includes timelines with a status set toprocessing
,utils.py
, theget_validated_indices
function includes timelines with a status set toprocessing
,POST /sketches/{{sketch_id}}/aggregation/explore/
endpoint includes indices which timeline has a status set toprocessing
.Checks
Closing issues
Closes #3219.