Skip to content
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
wants to merge 14 commits into
base: master
Choose a base branch
from

Commits on Dec 3, 2024

  1. Remove yarn.lock from frontend-ng

    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.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    a5a1654 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91d6ebd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1fa3124 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9f8b400 View commit details
    Browse the repository at this point in the history
  5. Fix developemnt documents

    Markdown formatting, typos.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    2bc11c7 View commit details
    Browse the repository at this point in the history
  6. Add a .gitattribute file

    Makes the repository handle file line endings.
    This helps to make it cross-platform, asserting some files are Unix-ended.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    dba8284 View commit details
    Browse the repository at this point in the history
  7. Rename the development Compose file

    Uses the prefeed name of the Compose specification.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    4cdba0d View commit details
    Browse the repository at this point in the history
  8. Enhance the development Compose file

    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).
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    23029ce View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3a96545 View commit details
    Browse the repository at this point in the history
  10. Update .dockerignore

    Adds .gitignore files.
    Dramatically improves an image build in a development context.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    4a5e4cd View commit details
    Browse the repository at this point in the history
  11. Updates development sigma rules

    Adapts the list to the latest version of the repository:
    - Fixes moved ones,
    - Deletes removed ones.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    35e6143 View commit details
    Browse the repository at this point in the history
  12. Enhance the Compose development set-up

    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.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    3f8cf2b View commit details
    Browse the repository at this point in the history
  13. Use a virtualenv in the development Docker image

    Avoids using the system environment.
    jbaptperez committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    08e8de9 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2024

  1. WIP Allow showing processing timeline events

    For now, there is no setting to switch with previous behaviour.
    jbaptperez committed Dec 5, 2024
    Configuration menu
    Copy the full SHA
    de22d67 View commit details
    Browse the repository at this point in the history