Skip to content

Instantly share code, notes, and snippets.

@shazeline
Created December 9, 2022 22:41
Show Gist options
  • Save shazeline/ac07356b28165ad38497e2ad52096a9c to your computer and use it in GitHub Desktop.
Save shazeline/ac07356b28165ad38497e2ad52096a9c to your computer and use it in GitHub Desktop.
data = [
'go_gc_duration_seconds{host="A",cluster="B",quantile="0.5"} 0.0004',
'go_gc_duration_seconds{host="A",cluster="B",quantile="0.75"} 0.0005',
'go_gc_duration_seconds{host="A",cluster="B",quantile="0.99"} 0.010',
'go_gc_duration_seconds{host="A",cluster="B",quantile="1"} 0.023',
'go_gc_duration_seconds_sum{host="A",cluster="B"} 1.442',
'go_gc_duration_seconds_count{host="A",cluster="B"} 2115',
'go_gc_duration_seconds{host="B",cluster="C",quantile="0.5"} 0.0002',
'go_gc_duration_seconds{host="B",cluster="C",quantile="0.75"} 0.0004',
'go_gc_duration_seconds{host="B",cluster="C",quantile="0.99"} 0.012',
'go_gc_duration_seconds{host="B",cluster="C",quantile="1"} 0.019',
'go_gc_duration_seconds_sum{host="A",cluster="B"} 1.442',
'go_gc_duration_seconds_count{host="A",cluster="B"} 2115',
'http_request_count{host="A",cluster="B",status="5xx"} 4910',
'http_request_count{host="B",cluster="C",status="5xx"} 12',
'http_request_count{host="C",cluster="D",status="5xx"} 9888',
'http_request_count{host="A",cluster="B",status="2xx"} 10291',
'http_request_count{host="B",cluster="C",status="2xx"} 51',
'http_request_count{host="C",cluster="D",status="2xx"} 9122'
]
while True:
for d in data:
print(d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment