-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataops-get-job-metrics.py
executable file
·69 lines (48 loc) · 1.79 KB
/
dataops-get-job-metrics.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
'''
This script gets the metrics for a Job on StreamSets DataOps Platform
Prerequisites:
- Python 3.6+; Python 3.9+ preferred
- StreamSets DataOps Platform SDK for Python v5.1+
See: https://docs.streamsets.com/platform-sdk/latest/learn/installation.html
- DataOps Platform API Credentials for a user with Organization Administrator role
- To avoid including API Credentials in the script, export these two environment variables
prior to running the script:
export CRED_ID=<your CRED_ID>>
export CRED_TOKEN=<your CRED_TOKEN>
- Set the variable JOB_ID at the top of the script for the Job to get metrics for
'''
import datetime,os,sys
from streamsets.sdk import ControlHub
# Job to get metrics for
JOB_ID= '<your-job-id>'
# Get CRED_ID from the environment
CRED_ID = os.getenv('CRED_ID')
# Get CRED_TOKEN from the environment
CRED_TOKEN = os.getenv('CRED_TOKEN')
# print_message method which writes a timestamp message ot the console
def print_message(message):
print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") + ' ' + message)
# Connect to Control Hub
print_message('Connecting to Control Hub')
sch = ControlHub(
credential_id=CRED_ID,
token=CRED_TOKEN)
# Get the Job
job = None
try:
job = sch.jobs.get(job_id = JOB_ID)
except:
sys.exit('Error: Job with ID \'' + JOB_ID + '\' not found.')
print_message('Found Job with name \'' + job.job_name + '\'')
## Get the Job metrics
job.refresh()
metrics = job.metrics
for metric in metrics:
print('----------')
print('Run Number: ' + str(metric.run_count))
print('Input Count: ' + str(metric.input_count))
print('Output Count: ' + str(metric.output_count))
print('Total Error Count: ' + str(metric.total_error_count))
print('----------')
print_message('Done')