Questions tagged [process-management]

Process management is the ensemble of activities of planning and monitoring the performance of a process. The term usually refers to the management of business processes and manufacturing processes. Business process management (BPM) and business process reengineering are interrelated, but not identical.

Process management is the application of knowledge, skills, tools, techniques and systems to define, visualize, measure, control, report and improve processes with the goal to meet customer requirements profitably. It can be differentiated from program management in that program management is concerned with managing a group of inter-dependent projects. But from another viewpoint, process management includes program management. In project management, process management is the use of a repeatable process to improve the outcome of the project.

153 questions
1
vote
2 answers

Is there any code to modify raw data in excel to event log which is required for process mining

The problem that I am going through is that I want to do process mining in a set of data. But I am facing difficulties to covert the raw data in excel to an event log required for any process mining software.is there any way to modify the data from…
1
vote
0 answers

Why is PM2 watching but not catching changes to code?

I read related posts on this question, but they don't help. I'm running a Node-Express app in a windows environment using PM2 with pm2-windows-service. Until today it's been running node just fine and reloading Node when I save changes to my…
208_man
  • 1,440
  • 3
  • 28
  • 59
1
vote
1 answer

Process Synchronization using a flag

I am learning operating systems through an online course and I came across some software solutions for Process Synchronization. The teacher is explaining all software solutions starting from using a single turn variable upto Peterson's solution. I…
Aosis
  • 311
  • 6
  • 17
1
vote
1 answer

Strategies for waiting for an external process to initialize

I have 3 functions to perform: Launch tcpdump Perform network activity so that tcpdump can generate a pcap for it Kill tcpdump after network activity in step 2 is complete. Launch def launch_tcpdump(output_filename): import subprocess as sp …
Lelouch Lamperouge
  • 8,171
  • 8
  • 49
  • 60
1
vote
2 answers

How to keep service alive?

Any application that has a service going obviousely counts on it to be always running. It's part of the product and if it's a paid app - the user expects it. However, it seems that there is no way for a service not to get wacked if the Android OS…
kidalex
  • 1,437
  • 2
  • 12
  • 14
1
vote
0 answers

How to get notified on each memory allocation/deallocation?

I want to make a module that will analyze memory usage of different processes. my idea was to parse ps -eo pid,vsz,rss. But I was wondering if it is possible to make the kernel call my module on each memory allocation/deallocation. Is it possible in…
yukashima huksay
  • 5,834
  • 7
  • 45
  • 78
1
vote
1 answer

C++ - Forked Process Can't Read from Shared Memory

I'm learning about process management and shared memory, and I was wondering if someone could help me out. I'm trying to read in a large-ish text file (2MB) with a forked parent process and feed it to the corresponding child process to be ... well…
1
vote
1 answer

C: How to print parent process at the end of child?

How to modify this code so that the parent process prints out its information, after all, child process done with execution. #include #include #include int main (int argc, char *argv[]) { pid_t…
JKLM
  • 1,470
  • 3
  • 28
  • 66
1
vote
2 answers

Creating process mining diagrams in R

I am new to Process Mining and was conducting study to create process maps in R. I wrote the following script with loaded packages but cannot observe the plot. Now, while installing the processMapR package, I get an error mentioned below the script.…
AK94
  • 325
  • 1
  • 5
  • 11
1
vote
0 answers

Node.js Spawn: How to check if the process Exited Immediately

In my app, I need to spawn a debugger process given a dump file to debug, say "example.dmp". If the dump file is not found or not it is not a dump file. The process will be successfully spawned but it will exit immediately. I would like to throw an…
Rui
  • 249
  • 2
  • 4
  • 10
1
vote
0 answers

How to infer the possible error in a DNN job based on its CPU/GPU/memory usage?

While the DNN job encounters an error, is there any possible way that I can write a program to detect the potential error(or warning) only based on the CPU, GPU and memory usage of the DNN job? The solution doesn't need to be perfect. It's fine if…
1
vote
1 answer

Kill all processes launched inside an xterm when exit

I'm using Cygwin to start some servers. Each server is launched inside an xterm with a bunch of command like this one: xterm -e $my_cmd /C & Is there an easy way to kill all launched children (xterm and their running commands) in a row ? I want…
Guillaume
  • 5,488
  • 11
  • 47
  • 83
1
vote
1 answer

Correct way to restar/reload application for a different release

I have following folder structure: current releases 2192091029019/ 1029012901920/ Latest release gets pushed to current folder, and I afterwards start it wiht pm2 start, however If I upload new release with different folder name and do pm2…
Ilja
  • 44,142
  • 92
  • 275
  • 498
1
vote
4 answers

Does the UNIX init process always run

I have a question regarding how the init process in UNIX works. As i understand it the init process is the first to start and then other processes fork off it. Say we start the init process then fork a child process which we call exec on with a new…
BenJacob
  • 957
  • 10
  • 31
1
vote
1 answer

Process management: To be killed or Not to be killed

An observation: While I was developing my app on android, I noticed following two lines in LogCat. These occurred because of too much memory requirements of my own app. I have read that Android can decide when to get rid of a process that are not…
ankitjaininfo
  • 11,961
  • 7
  • 52
  • 75