'Process log for logstash pipelines

My goal is to make process log for any running process in ELK stack. Initially processes can be logged from Logstash pipelines and different Java processes.

Sample index in elastic for process logs could be something like this:

StartTime | EndTime | ProcessName | Outcome

Question: As logstash pipelines are adding each "event" in defined output index, such as

   output {
        elasticsearch {
            index => "my-index"
            hosts => "localhost:8080"
        }
    }

is there actually possibility to create Started log before pipeline starts and ended after pipeline ends/fails?



Solution 1:[1]

When you close your application execute:

import sys  # Import the module sys in order to be able to use exit()

sys.exit() 

The sys.exit() function allows the developer to exit from Python.

I had the same problem some time ago with serial communication, and that's how I fixed it

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Edher Carbajal