Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: splunk/docker-splunk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9.2.3
Choose a base ref
...
head repository: splunk/docker-splunk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop
Choose a head ref
  • 10 commits
  • 5 files changed
  • 4 contributors

Commits on Oct 21, 2024

  1. fix(logging): handle file rotation of splunkd_sterr.log (#684)

    Fix issue with logging of standard error messages where standard error
    logs would be lost when logging large amount of data to stadard error.
    
    Splunk logs to splunkd_stdout.log as the Unix standard error device.
    This file is rotated. According to [What Splunk software logs about itself](https://docs.splunk.com/Documentation/Splunk/9.2.1/Troubleshooting/WhatSplunklogsaboutitself), "The historical rotation for most internal logs is 5 files of 25MB each".
    
    docker-splunk container tails the output of splunkd_stdout.log to
    standard output. The existing behavior is that the container receives
    Splunk's standard error messages until splunkd_stdout.log is about 25MB.
    When the log files passes 25MB, Splunk rotates the log file by rename
    splunkd_stdout.log to something like splunkd_stoudt1.log and creating a
    new splunkd_stdout.log.
    
    By default, tail follows the file descriptor of argument file. I believe
    that if the file is renamed, it continutes to track the file descriptor
    of argument file, if that is available. This is not the behavior we want
    for file rotation, since we always want to follow the information that
    goes to splunkd_stdout.log and not splunkd_stdout1.log,
    splunkd_stdout2.log, etc.
    
    Fix standard error logs not surfacing by passing `-F` option to unix
    tail command. This causes tail to keep retrying to open argument file
    name if it becomes unavailable.
    
    Change in behavior to print standard error logs to standard out for
    entire lifetime of the program, instead of stopping after the first file
    rotation.
    
    Fix #626
    
    Co-authored-by: Zach Arend <imzach@amazon.com>
    zarend and Zach Arend authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    2b6b9d8 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Configuration menu
    Copy the full SHA
    49fa23c View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Configuration menu
    Copy the full SHA
    3e5427a View commit details
    Browse the repository at this point in the history
  2. revert uf example

    jmeixensperger committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    507fa78 View commit details
    Browse the repository at this point in the history
  3. fix indent

    jmeixensperger committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    661d9ad View commit details
    Browse the repository at this point in the history
  4. Merge pull request #688 from splunk/license-sgt-link

    update --accept-license check
    jmeixensperger authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    6f85613 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2024

  1. working image

    jmeixensperger committed Dec 17, 2024
    Configuration menu
    Copy the full SHA
    17cef9d View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2024

  1. Merge pull request #689 from splunk/py-3.6-vulns

    resolve py3.6 CVEs
    jmeixensperger authored Dec 18, 2024
    Configuration menu
    Copy the full SHA
    316187a View commit details
    Browse the repository at this point in the history
  2. update build name

    jmeixensperger committed Dec 18, 2024
    Configuration menu
    Copy the full SHA
    9ee26ab View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2024

  1. Merge pull request #691 from splunk/build-name-9.4.0

    9.4.0 build naming
    jmeixensperger authored Dec 20, 2024
    Configuration menu
    Copy the full SHA
    e753738 View commit details
    Browse the repository at this point in the history
Loading