Its a text processing application. Following is the schematic of application
loop;
accept text input from STDIN;
process the text data;
print the processed output to STDOUT;
Each loop we consider it as a text processing Job
The application is refereed from https://github.com/census-instrumentation
export GO111MODULE=on
go build -o repl main.go
We want metrics
about
- Total number of
jobs
is been processed? - How much
time
it is taking to process an onejob
? - In each
job
how muchamount of data
it is processing?
Run the application
go build -o repl main.go