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

ingest: correctly measure chained pipeline stats #33912

Merged
merged 9 commits into from
Sep 27, 2018

Commits on Sep 20, 2018

  1. ingest: pipeline to pipeline stats

    Prior to this change when a pipeline processor called another
    pipeline, only the stats for the first processor were recorded.
    The stats for the subsequent pipelines were ignored. This change
    properly accounts for pipelines irregardless if they are the first
    or subsequently called pipelines.
    
    This change moves the state of the stats from the IngestService
    to the pipeline itself. Cluster updates are safe since the pipelines
    map is now a ConcurrentHashMap, and if a cluster update happens
    while iterating over stats (now read directly from the pipeline)
    a slightly stale view of stats may shown.
    jakelandis committed Sep 20, 2018
    Configuration menu
    Copy the full SHA
    cab6dbf View commit details
    Browse the repository at this point in the history
  2. add missing license header

    jakelandis committed Sep 20, 2018
    Configuration menu
    Copy the full SHA
    4d782b2 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2018

  1. review updates

    jakelandis committed Sep 21, 2018
    Configuration menu
    Copy the full SHA
    526ae4b View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2018

  1. Configuration menu
    Copy the full SHA
    a4c44d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bc7403f View commit details
    Browse the repository at this point in the history
  3. remove unused imports

    jakelandis committed Sep 26, 2018
    Configuration menu
    Copy the full SHA
    5d2adf9 View commit details
    Browse the repository at this point in the history
  4. remove unused import

    jakelandis committed Sep 26, 2018
    Configuration menu
    Copy the full SHA
    cba6306 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2018

  1. minor javadoc fixes

    jakelandis committed Sep 27, 2018
    Configuration menu
    Copy the full SHA
    1408127 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e385159 View commit details
    Browse the repository at this point in the history