------------------
* added Telemetry method add_telemetry_counter
* Added ``TelemetryCounter`` class that can be used to make prefedined objects
that can be added to the Telemetry instance with the add_telemetry_counter
method. This will improve readibilty of your code::
from pipeline_telemetry import TelemetryCounter
YOUR_PREDFINED_COUNTER = (
process_type=ProcessTypes.CREATE_DATA_FROM_API,
sub_process='RETRIEVE_RAW_DATA',
counter_name='my_custom_counter',
)
telemetry.add_telemetry_counter(YOUR_PREDFINED_COUNTER)