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
jobsis been processed? - How much
timeit is taking to process an onejob? - In each
jobhow muchamount of datait is processing?
Run the application
go build -o repl main.go
