@grnsft/if 1.0.2 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/.dockerignore +10 -0
  2. package/CONTAINER.md +148 -0
  3. package/Dockerfile +73 -0
  4. package/HELM_CHART.md +96 -0
  5. package/README.md +56 -0
  6. package/bin/docker-entrypoint.sh +15 -0
  7. package/build/common/types/manifest.d.ts +1 -0
  8. package/build/common/types/manifest.js +1 -1
  9. package/build/common/util/debug-logger.js +4 -18
  10. package/build/common/util/storage.d.ts +9 -0
  11. package/build/common/util/storage.js +24 -0
  12. package/build/if-api/config/config.d.ts +9 -0
  13. package/build/if-api/config/config.js +58 -0
  14. package/build/if-api/config/index.d.ts +2 -0
  15. package/build/if-api/config/index.js +8 -0
  16. package/build/if-api/config/strings.d.ts +16 -0
  17. package/build/if-api/config/strings.js +20 -0
  18. package/build/if-api/index.d.ts +2 -0
  19. package/build/if-api/index.js +268 -0
  20. package/build/if-api/types/process-args.d.ts +18 -0
  21. package/build/if-api/types/process-args.js +3 -0
  22. package/build/if-api/util/args.d.ts +5 -0
  23. package/build/if-api/util/args.js +42 -0
  24. package/build/if-metadata-check/config/config.d.ts +5 -0
  25. package/build/if-metadata-check/config/config.js +26 -0
  26. package/build/if-metadata-check/config/strings.d.ts +5 -0
  27. package/build/if-metadata-check/config/strings.js +9 -0
  28. package/build/if-metadata-check/index.d.ts +2 -0
  29. package/build/if-metadata-check/index.js +30 -0
  30. package/build/if-metadata-check/types/plugin.d.ts +7 -0
  31. package/build/if-metadata-check/types/plugin.js +3 -0
  32. package/build/if-metadata-check/types/process-args.d.ts +5 -0
  33. package/build/if-metadata-check/types/process-args.js +3 -0
  34. package/build/if-metadata-check/util/args.d.ts +57 -0
  35. package/build/if-metadata-check/util/args.js +29 -0
  36. package/build/if-metadata-check/util/metadata-checker.d.ts +44 -0
  37. package/build/if-metadata-check/util/metadata-checker.js +99 -0
  38. package/build/if-run/index.js +1 -1
  39. package/build/if-run/lib/aggregate.d.ts +2 -2
  40. package/build/if-run/lib/aggregate.js +5 -19
  41. package/build/if-run/lib/compute.d.ts +1 -1
  42. package/build/if-run/lib/compute.js +10 -9
  43. package/build/if-run/lib/environment.d.ts +5 -1
  44. package/build/if-run/lib/environment.js +21 -16
  45. package/build/if-run/lib/initialize.d.ts +12 -0
  46. package/build/if-run/lib/initialize.js +37 -3
  47. package/build/if-run/lib/regroup.d.ts +3 -2
  48. package/build/if-run/lib/regroup.js +13 -9
  49. package/build/if-run/types/compute.d.ts +1 -1
  50. package/build/if-run/types/compute.js +1 -1
  51. package/helm-chart/.helmignore +23 -0
  52. package/helm-chart/Chart.yaml +24 -0
  53. package/helm-chart/templates/NOTES.txt +22 -0
  54. package/helm-chart/templates/_helpers.tpl +62 -0
  55. package/helm-chart/templates/additionalPlugins.yaml +13 -0
  56. package/helm-chart/templates/deployment.yaml +144 -0
  57. package/helm-chart/templates/disabledPlugins.yaml +11 -0
  58. package/helm-chart/templates/env-configmap.yaml +10 -0
  59. package/helm-chart/templates/env-secret.yaml +10 -0
  60. package/helm-chart/templates/hpa.yaml +32 -0
  61. package/helm-chart/templates/ingress.yaml +43 -0
  62. package/helm-chart/templates/npmrc.yaml +11 -0
  63. package/helm-chart/templates/service.yaml +24 -0
  64. package/helm-chart/templates/serviceaccount.yaml +13 -0
  65. package/helm-chart/templates/tests/test-connection.yaml +15 -0
  66. package/helm-chart/values.yaml +175 -0
  67. package/manifests/examples/bugs/aggregation-error-wrong-metric.yml +173 -0
  68. package/manifests/examples/bugs/input-error-missing-duration.yml +25 -0
  69. package/manifests/examples/bugs/mock-observations-failure-duration-is-zero.yml +33 -0
  70. package/manifests/examples/bugs/pipeline-error-naming-mismatch.yml +32 -0
  71. package/manifests/examples/bugs/pipeline-error-uninitialized-plugin.yml +33 -0
  72. package/manifests/examples/bugs/pipeline-ordering-error.yml +91 -0
  73. package/manifests/examples/builtins/divide/success-denominator-equal-zero.yml +36 -0
  74. package/manifests/examples/builtins/mock-observations/failure-invalid-config-cpu-range.yml +0 -1
  75. package/manifests/examples/builtins/mock-observations/failure-invalid-memory-utilization-range.yml +0 -1
  76. package/manifests/examples/builtins/mock-observations/failure-missing-timestamp-from-param.yml +0 -1
  77. package/manifests/examples/builtins/mock-observations/success.yml +0 -1
  78. package/manifests/examples/builtins/sci/failure-invalid-config-value.yml +0 -1
  79. package/manifests/examples/builtins/sci/failure-missing-input-param.yml +0 -1
  80. package/manifests/examples/builtins/sci/success.yml +0 -1
  81. package/manifests/examples/builtins/sci-embodied/failure-invalid-default-emission-value.yml +22 -0
  82. package/manifests/examples/builtins/time-sync/failure-missing-config.yml +0 -2
  83. package/manifests/examples/builtins/time-sync/success.yml +0 -2
  84. package/manifests/examples/features/aggregate-failure-invalid-metrics.yml +50 -0
  85. package/manifests/examples/features/aggregate-failure-missing-metric-in-inputs.yml +50 -0
  86. package/manifests/examples/features/aggregate-horizontal.yml +58 -0
  87. package/manifests/examples/features/aggregate-vertical.yml +58 -0
  88. package/manifests/examples/features/aggregate.yml +58 -0
  89. package/manifests/examples/pipelines/cloud-metadata-divide.yml +36 -0
  90. package/manifests/examples/pipelines/pipeline-with-mocks.yml +0 -1
  91. package/manifests/examples/pipelines/scenario-5.yml +0 -1
  92. package/manifests/outputs/bugs/mock-observations-failure-duration-is-zero.yaml +0 -1
  93. package/manifests/outputs/builtins/mock-observations/failure-invalid-config-cpu-range.yaml +0 -1
  94. package/manifests/outputs/builtins/mock-observations/failure-invalid-memory-utilization-range.yaml +0 -1
  95. package/manifests/outputs/builtins/mock-observations/failure-missing-timestamp-from-param.yaml +0 -1
  96. package/manifests/outputs/builtins/sci/failure-invalid-config-value.yaml +0 -1
  97. package/manifests/outputs/builtins/sci/failure-missing-input-param.yaml +0 -1
  98. package/manifests/outputs/builtins/time-sync/failure-missing-config.yaml +0 -2
  99. package/manifests/outputs/features/regroup/success.yaml +72 -0
  100. package/manifests/outputs/pipelines/pipeline-with-aggregate.yaml +1291 -0
  101. package/manifests/outputs/pipelines/scenario-3.yaml +126 -0
  102. package/openapi.yaml +424 -0
  103. package/package.json +8 -3
  104. package/with-plugins/Dockerfile +59 -0
  105. package/manifests/outputs/builtins/interpolation/interpolation.yaml +0 -81
  106. package/manifests/outputs/features/failure-invalid-regroup.yaml +0 -87
  107. package/manifests/outputs/features/failure-missing-cloud-instance-type.yaml +0 -86
@@ -0,0 +1,1291 @@
1
+ name: pipeline-with-aggregate
2
+ description: a full pipeline with the aggregate feature enabled
3
+ tags: null
4
+ aggregation:
5
+ metrics:
6
+ - carbon
7
+ type: both
8
+ initialize:
9
+ plugins:
10
+ interpolate:
11
+ path: builtin
12
+ method: Interpolation
13
+ config:
14
+ method: linear
15
+ x:
16
+ - 0
17
+ - 10
18
+ - 50
19
+ - 100
20
+ 'y':
21
+ - 0.12
22
+ - 0.32
23
+ - 0.75
24
+ - 1.02
25
+ input-parameter: cpu/utilization
26
+ output-parameter: cpu-factor
27
+ parameter-metadata:
28
+ inputs:
29
+ cpu/utilization:
30
+ unit: percentage
31
+ description: refers to CPU utilization.
32
+ aggregation-method:
33
+ time: avg
34
+ component: avg
35
+ outputs:
36
+ cpu-factor:
37
+ unit: kWh
38
+ description: result of interpolate
39
+ aggregation-method:
40
+ time: avg
41
+ component: avg
42
+ cpu-factor-to-wattage:
43
+ path: builtin
44
+ method: Multiply
45
+ config:
46
+ input-parameters:
47
+ - cpu-factor
48
+ - cpu/thermal-design-power
49
+ output-parameter: cpu-wattage
50
+ parameter-metadata:
51
+ inputs:
52
+ cpu-factor:
53
+ unit: kWh
54
+ description: result of interpolate
55
+ aggregation-method:
56
+ time: avg
57
+ component: avg
58
+ cpu/thermal-design-power:
59
+ unit: kWh
60
+ description: thermal design power for a processor
61
+ aggregation-method:
62
+ time: avg
63
+ component: avg
64
+ outputs:
65
+ cpu-wattage:
66
+ unit: kWh
67
+ description: the energy used by the CPU
68
+ aggregation-method:
69
+ time: sum
70
+ component: sum
71
+ wattage-times-duration:
72
+ path: builtin
73
+ method: Multiply
74
+ config:
75
+ input-parameters:
76
+ - cpu-wattage
77
+ - duration
78
+ output-parameter: cpu-wattage-times-duration
79
+ wattage-to-energy-kwh:
80
+ path: builtin
81
+ method: Divide
82
+ config:
83
+ numerator: cpu-wattage-times-duration
84
+ denominator: 3600000
85
+ output: cpu-energy-raw
86
+ parameter-metadata:
87
+ inputs:
88
+ cpu-wattage-times-duration:
89
+ unit: kWh
90
+ description: CPU wattage multiplied by duration
91
+ aggregation-method:
92
+ time: sum
93
+ component: sum
94
+ outputs:
95
+ cpu-energy-raw:
96
+ unit: kWh
97
+ description: Raw energy used by CPU in kWh
98
+ aggregation-method:
99
+ time: sum
100
+ component: sum
101
+ calculate-vcpu-ratio:
102
+ path: builtin
103
+ method: Divide
104
+ config:
105
+ numerator: vcpus-total
106
+ denominator: vcpus-allocated
107
+ output: vcpu-ratio
108
+ parameter-metadata:
109
+ inputs:
110
+ vcpus-total:
111
+ unit: count
112
+ description: total number of vcpus available on a particular resource
113
+ aggregation-method:
114
+ time: copy
115
+ component: copy
116
+ vcpus-allocated:
117
+ unit: count
118
+ description: number of vcpus allocated to particular resource
119
+ aggregation-method:
120
+ time: copy
121
+ component: copy
122
+ outputs:
123
+ vcpu-ratio:
124
+ unit: none
125
+ description: Ratio of vCPUs
126
+ aggregation-method:
127
+ time: copy
128
+ component: copy
129
+ correct-cpu-energy-for-vcpu-ratio:
130
+ path: builtin
131
+ method: Divide
132
+ config:
133
+ numerator: cpu-energy-raw
134
+ denominator: vcpu-ratio
135
+ output: cpu-energy-kwh
136
+ sci-embodied:
137
+ path: builtin
138
+ method: SciEmbodied
139
+ operational-carbon:
140
+ path: builtin
141
+ method: Multiply
142
+ config:
143
+ input-parameters:
144
+ - cpu-energy-kwh
145
+ - grid/carbon-intensity
146
+ output-parameter: carbon-operational
147
+ parameter-metadata:
148
+ inputs:
149
+ cpu-energy-kwh:
150
+ unit: kWh
151
+ description: Corrected CPU energy in kWh
152
+ aggregation-method:
153
+ time: sum
154
+ component: sum
155
+ grid/carbon-intensity:
156
+ unit: gCO2eq/kWh
157
+ description: Carbon intensity for the grid
158
+ aggregation-method:
159
+ time: avg
160
+ component: avg
161
+ outputs:
162
+ carbon-operational:
163
+ unit: gCO2eq
164
+ description: Operational carbon footprint
165
+ aggregation-method:
166
+ time: sum
167
+ component: sum
168
+ sci:
169
+ path: builtin
170
+ method: Sci
171
+ config:
172
+ functional-unit: requests
173
+ parameter-metadata:
174
+ inputs:
175
+ requests:
176
+ unit: none
177
+ description: expressed the final SCI value
178
+ aggregation-method:
179
+ time: sum
180
+ component: sum
181
+ sum-carbon:
182
+ path: builtin
183
+ method: Sum
184
+ config:
185
+ input-parameters:
186
+ - carbon-operational
187
+ - embodied-carbon
188
+ output-parameter: carbon
189
+ parameter-metadata:
190
+ outputs:
191
+ carbon:
192
+ unit: gCO2eq
193
+ description: product of carbon
194
+ aggregation-method:
195
+ time: sum
196
+ component: sum
197
+ time-sync:
198
+ path: builtin
199
+ method: TimeSync
200
+ config:
201
+ start-time: '2023-12-12T00:00:00.000Z'
202
+ end-time: '2023-12-12T00:01:00.000Z'
203
+ interval: 5
204
+ allow-padding: true
205
+ execution:
206
+ command: >-
207
+ /usr/bin/node /home/mitsuru/if/build/if-run -m
208
+ manifests/examples/pipelines/pipeline-with-aggregate.yml -o
209
+ manifests/outputs/pipelines/pipeline-with-aggregate.yaml
210
+ environment:
211
+ if-version: 1.0.2
212
+ os: Ubuntu
213
+ os-version: 24.04.2 LTS
214
+ node-version: 18.19.1
215
+ date-time: 2025-06-02T14:32:59.071Z (UTC)
216
+ dependencies:
217
+ - '@grnsft/if-core@0.0.30'
218
+ - axios@1.8.3
219
+ - csv-parse@5.5.6
220
+ - csv-stringify@6.4.6
221
+ - express@5.1.0
222
+ - js-yaml@4.1.0
223
+ - luxon@3.4.4
224
+ - ts-command-line-args@2.5.1
225
+ - typescript-cubic-spline@1.0.1
226
+ - winston@3.11.0
227
+ - zod@3.23.8
228
+ status: success
229
+ tree:
230
+ children:
231
+ child-1:
232
+ pipeline:
233
+ regroup:
234
+ - cloud/region
235
+ - cloud/instance-type
236
+ compute:
237
+ - interpolate
238
+ - cpu-factor-to-wattage
239
+ - wattage-times-duration
240
+ - wattage-to-energy-kwh
241
+ - calculate-vcpu-ratio
242
+ - correct-cpu-energy-for-vcpu-ratio
243
+ - sci-embodied
244
+ - operational-carbon
245
+ - sum-carbon
246
+ - time-sync
247
+ - sci
248
+ defaults:
249
+ cpu/thermal-design-power: 100
250
+ grid/carbon-intensity: 800
251
+ device/emissions-embodied: 1533.12
252
+ time-reserved: 3600
253
+ device/expected-lifespan: 94608000
254
+ vcpus-total: 8
255
+ vcpus-allocated: 1
256
+ children:
257
+ uk-west:
258
+ children:
259
+ A1:
260
+ inputs:
261
+ - timestamp: '2023-12-12T00:00:00.000Z'
262
+ cloud/instance-type: A1
263
+ cloud/region: uk-west
264
+ duration: 1
265
+ cpu/utilization: 10
266
+ requests: 10
267
+ cpu/thermal-design-power: 100
268
+ grid/carbon-intensity: 800
269
+ device/emissions-embodied: 1533.12
270
+ time-reserved: 3600
271
+ device/expected-lifespan: 94608000
272
+ vcpus-total: 8
273
+ vcpus-allocated: 1
274
+ - timestamp: '2023-12-12T00:00:01.000Z'
275
+ duration: 5
276
+ cpu/utilization: 20
277
+ cloud/instance-type: A1
278
+ cloud/region: uk-west
279
+ requests: 5
280
+ cpu/thermal-design-power: 100
281
+ grid/carbon-intensity: 800
282
+ device/emissions-embodied: 1533.12
283
+ time-reserved: 3600
284
+ device/expected-lifespan: 94608000
285
+ vcpus-total: 8
286
+ vcpus-allocated: 1
287
+ - timestamp: '2023-12-12T00:00:06.000Z'
288
+ duration: 7
289
+ cpu/utilization: 15
290
+ cloud/instance-type: A1
291
+ cloud/region: uk-west
292
+ requests: 15
293
+ cpu/thermal-design-power: 100
294
+ grid/carbon-intensity: 800
295
+ device/emissions-embodied: 1533.12
296
+ time-reserved: 3600
297
+ device/expected-lifespan: 94608000
298
+ vcpus-total: 8
299
+ vcpus-allocated: 1
300
+ - timestamp: '2023-12-12T00:00:13.000Z'
301
+ duration: 30
302
+ cloud/instance-type: A1
303
+ cloud/region: uk-west
304
+ cpu/utilization: 15
305
+ requests: 30
306
+ cpu/thermal-design-power: 100
307
+ grid/carbon-intensity: 800
308
+ device/emissions-embodied: 1533.12
309
+ time-reserved: 3600
310
+ device/expected-lifespan: 94608000
311
+ vcpus-total: 8
312
+ vcpus-allocated: 1
313
+ outputs:
314
+ - timestamp: '2023-12-12T00:00:00.000Z'
315
+ cloud/instance-type: A1
316
+ cloud/region: uk-west
317
+ duration: 5
318
+ cpu/utilization: 14
319
+ requests: 14
320
+ cpu/thermal-design-power: 80
321
+ grid/carbon-intensity: 640
322
+ device/emissions-embodied: 1533.12
323
+ time-reserved: 3600
324
+ device/expected-lifespan: 94608000
325
+ vcpus-total: 8
326
+ vcpus-allocated: 1
327
+ cpu-factor: 0.3205
328
+ cpu-wattage: 66.19999999999999
329
+ cpu-wattage-times-duration: 203
330
+ cpu-energy-raw: 0.0000563888888888889
331
+ vcpu-ratio: 8
332
+ cpu-energy-kwh: 0.000007048611111111113
333
+ vCPUs: 1
334
+ memory: 16
335
+ ssd: 0
336
+ hdd: 0
337
+ gpu: 0
338
+ usage-ratio: 1
339
+ embodied-carbon: 0.03963723997970573
340
+ carbon-operational: 0.0056388888888888895
341
+ carbon: 0.045276128868594626
342
+ sci: 0.0032340092048996163
343
+ - timestamp: '2023-12-12T00:00:05.000Z'
344
+ duration: 5
345
+ cpu/utilization: 13
346
+ cloud/instance-type: A1
347
+ cloud/region: uk-west
348
+ requests: 9.571428571428571
349
+ cpu/thermal-design-power: 80
350
+ grid/carbon-intensity: 640
351
+ device/emissions-embodied: 1533.12
352
+ time-reserved: 3600
353
+ device/expected-lifespan: 94608000
354
+ vcpus-total: 8
355
+ vcpus-allocated: 1
356
+ cpu-factor: 0.30975
357
+ cpu-wattage: 29.907142857142862
358
+ cpu-wattage-times-duration: 192.25
359
+ cpu-energy-raw: 0.00005340277777777778
360
+ vcpu-ratio: 8
361
+ cpu-energy-kwh: 0.000006675347222222222
362
+ vCPUs: 1
363
+ memory: 16
364
+ ssd: 0
365
+ hdd: 0
366
+ gpu: 0
367
+ usage-ratio: 1
368
+ embodied-carbon: 0.03963723997970574
369
+ carbon-operational: 0.005340277777777777
370
+ carbon: 0.044977517757483515
371
+ sci: 0.004699143646304248
372
+ - timestamp: '2023-12-12T00:00:10.000Z'
373
+ duration: 5
374
+ cpu/utilization: 12
375
+ cloud/instance-type: A1
376
+ cloud/region: uk-west
377
+ requests: 8.428571428571429
378
+ cpu/thermal-design-power: 80
379
+ grid/carbon-intensity: 640
380
+ device/emissions-embodied: 1533.12
381
+ time-reserved: 3600
382
+ device/expected-lifespan: 94608000
383
+ vcpus-total: 8
384
+ vcpus-allocated: 1
385
+ cpu-factor: 0.29900000000000004
386
+ cpu-wattage: 18.50952380952381
387
+ cpu-wattage-times-duration: 186.875
388
+ cpu-energy-raw: 0.00005190972222222222
389
+ vcpu-ratio: 8
390
+ cpu-energy-kwh: 0.0000064887152777777775
391
+ vCPUs: 1
392
+ memory: 16
393
+ ssd: 0
394
+ hdd: 0
395
+ gpu: 0
396
+ usage-ratio: 1
397
+ embodied-carbon: 0.03963723997970574
398
+ carbon-operational: 0.005190972222222222
399
+ carbon: 0.04482821220192795
400
+ sci: 0.005318601447686367
401
+ - timestamp: '2023-12-12T00:00:15.000Z'
402
+ duration: 5
403
+ cloud/instance-type: A1
404
+ cloud/region: uk-west
405
+ cpu/utilization: 12
406
+ requests: 5
407
+ cpu/thermal-design-power: 80
408
+ grid/carbon-intensity: 640
409
+ device/emissions-embodied: 1533.12
410
+ time-reserved: 3600
411
+ device/expected-lifespan: 94608000
412
+ vcpus-total: 8
413
+ vcpus-allocated: 1
414
+ cpu-factor: 0.29900000000000004
415
+ cpu-wattage: 6.229166666666667
416
+ cpu-wattage-times-duration: 186.875
417
+ cpu-energy-raw: 0.00005190972222222223
418
+ vcpu-ratio: 8
419
+ cpu-energy-kwh: 0.000006488715277777778
420
+ vCPUs: 1
421
+ memory: 16
422
+ ssd: 0
423
+ hdd: 0
424
+ gpu: 0
425
+ usage-ratio: 1
426
+ embodied-carbon: 0.03963723997970573
427
+ carbon-operational: 0.005190972222222222
428
+ carbon: 0.04482821220192795
429
+ sci: 0.00896564244038559
430
+ - timestamp: '2023-12-12T00:00:20.000Z'
431
+ duration: 5
432
+ cloud/instance-type: A1
433
+ cloud/region: uk-west
434
+ cpu/utilization: 12
435
+ requests: 5
436
+ cpu/thermal-design-power: 80
437
+ grid/carbon-intensity: 640
438
+ device/emissions-embodied: 1533.12
439
+ time-reserved: 3600
440
+ device/expected-lifespan: 94608000
441
+ vcpus-total: 8
442
+ vcpus-allocated: 1
443
+ cpu-factor: 0.29900000000000004
444
+ cpu-wattage: 6.229166666666667
445
+ cpu-wattage-times-duration: 186.875
446
+ cpu-energy-raw: 0.00005190972222222223
447
+ vcpu-ratio: 8
448
+ cpu-energy-kwh: 0.000006488715277777778
449
+ vCPUs: 1
450
+ memory: 16
451
+ ssd: 0
452
+ hdd: 0
453
+ gpu: 0
454
+ usage-ratio: 1
455
+ embodied-carbon: 0.03963723997970573
456
+ carbon-operational: 0.005190972222222222
457
+ carbon: 0.04482821220192795
458
+ sci: 0.00896564244038559
459
+ - timestamp: '2023-12-12T00:00:25.000Z'
460
+ duration: 5
461
+ cloud/instance-type: A1
462
+ cloud/region: uk-west
463
+ cpu/utilization: 12
464
+ requests: 5
465
+ cpu/thermal-design-power: 80
466
+ grid/carbon-intensity: 640
467
+ device/emissions-embodied: 1533.12
468
+ time-reserved: 3600
469
+ device/expected-lifespan: 94608000
470
+ vcpus-total: 8
471
+ vcpus-allocated: 1
472
+ cpu-factor: 0.29900000000000004
473
+ cpu-wattage: 6.229166666666667
474
+ cpu-wattage-times-duration: 186.875
475
+ cpu-energy-raw: 0.00005190972222222223
476
+ vcpu-ratio: 8
477
+ cpu-energy-kwh: 0.000006488715277777778
478
+ vCPUs: 1
479
+ memory: 16
480
+ ssd: 0
481
+ hdd: 0
482
+ gpu: 0
483
+ usage-ratio: 1
484
+ embodied-carbon: 0.03963723997970573
485
+ carbon-operational: 0.005190972222222222
486
+ carbon: 0.04482821220192795
487
+ sci: 0.00896564244038559
488
+ - timestamp: '2023-12-12T00:00:30.000Z'
489
+ duration: 5
490
+ cloud/instance-type: A1
491
+ cloud/region: uk-west
492
+ cpu/utilization: 12
493
+ requests: 5
494
+ cpu/thermal-design-power: 80
495
+ grid/carbon-intensity: 640
496
+ device/emissions-embodied: 1533.12
497
+ time-reserved: 3600
498
+ device/expected-lifespan: 94608000
499
+ vcpus-total: 8
500
+ vcpus-allocated: 1
501
+ cpu-factor: 0.29900000000000004
502
+ cpu-wattage: 6.229166666666667
503
+ cpu-wattage-times-duration: 186.875
504
+ cpu-energy-raw: 0.00005190972222222223
505
+ vcpu-ratio: 8
506
+ cpu-energy-kwh: 0.000006488715277777778
507
+ vCPUs: 1
508
+ memory: 16
509
+ ssd: 0
510
+ hdd: 0
511
+ gpu: 0
512
+ usage-ratio: 1
513
+ embodied-carbon: 0.03963723997970573
514
+ carbon-operational: 0.005190972222222222
515
+ carbon: 0.04482821220192795
516
+ sci: 0.00896564244038559
517
+ - timestamp: '2023-12-12T00:00:35.000Z'
518
+ duration: 5
519
+ cloud/instance-type: A1
520
+ cloud/region: uk-west
521
+ cpu/utilization: 12
522
+ requests: 5
523
+ cpu/thermal-design-power: 80
524
+ grid/carbon-intensity: 640
525
+ device/emissions-embodied: 1533.12
526
+ time-reserved: 3600
527
+ device/expected-lifespan: 94608000
528
+ vcpus-total: 8
529
+ vcpus-allocated: 1
530
+ cpu-factor: 0.29900000000000004
531
+ cpu-wattage: 6.229166666666667
532
+ cpu-wattage-times-duration: 186.875
533
+ cpu-energy-raw: 0.00005190972222222223
534
+ vcpu-ratio: 8
535
+ cpu-energy-kwh: 0.000006488715277777778
536
+ vCPUs: 1
537
+ memory: 16
538
+ ssd: 0
539
+ hdd: 0
540
+ gpu: 0
541
+ usage-ratio: 1
542
+ embodied-carbon: 0.03963723997970573
543
+ carbon-operational: 0.005190972222222222
544
+ carbon: 0.04482821220192795
545
+ sci: 0.00896564244038559
546
+ - timestamp: '2023-12-12T00:00:40.000Z'
547
+ duration: 5
548
+ cloud/instance-type: A1
549
+ cloud/region: uk-west
550
+ cpu/utilization: 9
551
+ requests: 3
552
+ cpu/thermal-design-power: 60
553
+ grid/carbon-intensity: 480
554
+ device/emissions-embodied: 1533.12
555
+ time-reserved: 1
556
+ device/expected-lifespan: 94608000
557
+ vcpus-total: 8
558
+ vcpus-allocated: 1
559
+ cpu-factor: 0.22425
560
+ cpu-wattage: 3.7375
561
+ cpu-wattage-times-duration: 112.125
562
+ cpu-energy-raw: 0.000031145833333333336
563
+ vcpu-ratio: 8
564
+ cpu-energy-kwh: 0.000003893229166666667
565
+ vCPUs: 1
566
+ memory: 16
567
+ ssd: 0
568
+ hdd: 0
569
+ gpu: 0
570
+ usage-ratio: 1
571
+ embodied-carbon: 0.02378234398782344
572
+ carbon-operational: 0.0031145833333333334
573
+ carbon: 0.02689692732115677
574
+ sci: 0.00896564244038559
575
+ - timestamp: '2023-12-12T00:00:45.000Z'
576
+ duration: 5
577
+ cloud/instance-type: A1
578
+ cloud/region: uk-west
579
+ cpu/utilization: 0
580
+ requests: 0
581
+ cpu/thermal-design-power: 0
582
+ grid/carbon-intensity: 0
583
+ device/emissions-embodied: 1533.12
584
+ time-reserved: 1
585
+ device/expected-lifespan: 94608000
586
+ vcpus-total: 8
587
+ vcpus-allocated: 1
588
+ cpu-factor: 0
589
+ cpu-wattage: 0
590
+ cpu-wattage-times-duration: 0
591
+ cpu-energy-raw: 0
592
+ vcpu-ratio: 8
593
+ cpu-energy-kwh: 0
594
+ vCPUs: 1
595
+ memory: 16
596
+ ssd: 0
597
+ hdd: 0
598
+ gpu: 0
599
+ usage-ratio: 1
600
+ embodied-carbon: 0
601
+ carbon-operational: 0
602
+ carbon: 0
603
+ sci: 0
604
+ - timestamp: '2023-12-12T00:00:50.000Z'
605
+ duration: 5
606
+ cloud/instance-type: A1
607
+ cloud/region: uk-west
608
+ cpu/utilization: 0
609
+ requests: 0
610
+ cpu/thermal-design-power: 0
611
+ grid/carbon-intensity: 0
612
+ device/emissions-embodied: 1533.12
613
+ time-reserved: 1
614
+ device/expected-lifespan: 94608000
615
+ vcpus-total: 8
616
+ vcpus-allocated: 1
617
+ cpu-factor: 0
618
+ cpu-wattage: 0
619
+ cpu-wattage-times-duration: 0
620
+ cpu-energy-raw: 0
621
+ vcpu-ratio: 8
622
+ cpu-energy-kwh: 0
623
+ vCPUs: 1
624
+ memory: 16
625
+ ssd: 0
626
+ hdd: 0
627
+ gpu: 0
628
+ usage-ratio: 1
629
+ embodied-carbon: 0
630
+ carbon-operational: 0
631
+ carbon: 0
632
+ sci: 0
633
+ - timestamp: '2023-12-12T00:00:55.000Z'
634
+ duration: 5
635
+ cloud/instance-type: A1
636
+ cloud/region: uk-west
637
+ cpu/utilization: 0
638
+ requests: 0
639
+ cpu/thermal-design-power: 0
640
+ grid/carbon-intensity: 0
641
+ device/emissions-embodied: 1533.12
642
+ time-reserved: 1
643
+ device/expected-lifespan: 94608000
644
+ vcpus-total: 8
645
+ vcpus-allocated: 1
646
+ cpu-factor: 0
647
+ cpu-wattage: 0
648
+ cpu-wattage-times-duration: 0
649
+ cpu-energy-raw: 0
650
+ vcpu-ratio: 8
651
+ cpu-energy-kwh: 0
652
+ vCPUs: 1
653
+ memory: 16
654
+ ssd: 0
655
+ hdd: 0
656
+ gpu: 0
657
+ usage-ratio: 1
658
+ embodied-carbon: 0
659
+ carbon-operational: 0
660
+ carbon: 0
661
+ sci: 0
662
+ aggregated:
663
+ carbon: 0.38611984715880265
664
+ outputs:
665
+ - carbon: 0.045276128868594626
666
+ timestamp: '2023-12-12T00:00:00.000Z'
667
+ duration: 5
668
+ - carbon: 0.044977517757483515
669
+ timestamp: '2023-12-12T00:00:05.000Z'
670
+ duration: 5
671
+ - carbon: 0.04482821220192795
672
+ timestamp: '2023-12-12T00:00:10.000Z'
673
+ duration: 5
674
+ - carbon: 0.04482821220192795
675
+ timestamp: '2023-12-12T00:00:15.000Z'
676
+ duration: 5
677
+ - carbon: 0.04482821220192795
678
+ timestamp: '2023-12-12T00:00:20.000Z'
679
+ duration: 5
680
+ - carbon: 0.04482821220192795
681
+ timestamp: '2023-12-12T00:00:25.000Z'
682
+ duration: 5
683
+ - carbon: 0.04482821220192795
684
+ timestamp: '2023-12-12T00:00:30.000Z'
685
+ duration: 5
686
+ - carbon: 0.04482821220192795
687
+ timestamp: '2023-12-12T00:00:35.000Z'
688
+ duration: 5
689
+ - carbon: 0.02689692732115677
690
+ timestamp: '2023-12-12T00:00:40.000Z'
691
+ duration: 5
692
+ - carbon: 0
693
+ timestamp: '2023-12-12T00:00:45.000Z'
694
+ duration: 5
695
+ - carbon: 0
696
+ timestamp: '2023-12-12T00:00:50.000Z'
697
+ duration: 5
698
+ - carbon: 0
699
+ timestamp: '2023-12-12T00:00:55.000Z'
700
+ duration: 5
701
+ aggregated:
702
+ carbon: 0.38611984715880265
703
+ outputs:
704
+ - carbon: 0.045276128868594626
705
+ timestamp: '2023-12-12T00:00:00.000Z'
706
+ duration: 5
707
+ - carbon: 0.044977517757483515
708
+ timestamp: '2023-12-12T00:00:05.000Z'
709
+ duration: 5
710
+ - carbon: 0.04482821220192795
711
+ timestamp: '2023-12-12T00:00:10.000Z'
712
+ duration: 5
713
+ - carbon: 0.04482821220192795
714
+ timestamp: '2023-12-12T00:00:15.000Z'
715
+ duration: 5
716
+ - carbon: 0.04482821220192795
717
+ timestamp: '2023-12-12T00:00:20.000Z'
718
+ duration: 5
719
+ - carbon: 0.04482821220192795
720
+ timestamp: '2023-12-12T00:00:25.000Z'
721
+ duration: 5
722
+ - carbon: 0.04482821220192795
723
+ timestamp: '2023-12-12T00:00:30.000Z'
724
+ duration: 5
725
+ - carbon: 0.04482821220192795
726
+ timestamp: '2023-12-12T00:00:35.000Z'
727
+ duration: 5
728
+ - carbon: 0.02689692732115677
729
+ timestamp: '2023-12-12T00:00:40.000Z'
730
+ duration: 5
731
+ - carbon: 0
732
+ timestamp: '2023-12-12T00:00:45.000Z'
733
+ duration: 5
734
+ - carbon: 0
735
+ timestamp: '2023-12-12T00:00:50.000Z'
736
+ duration: 5
737
+ - carbon: 0
738
+ timestamp: '2023-12-12T00:00:55.000Z'
739
+ duration: 5
740
+ aggregated:
741
+ carbon: 0.38611984715880265
742
+ child-2:
743
+ pipeline:
744
+ regroup:
745
+ - cloud/region
746
+ - cloud/instance-type
747
+ compute:
748
+ - interpolate
749
+ - cpu-factor-to-wattage
750
+ - wattage-times-duration
751
+ - wattage-to-energy-kwh
752
+ - calculate-vcpu-ratio
753
+ - correct-cpu-energy-for-vcpu-ratio
754
+ - sci-embodied
755
+ - operational-carbon
756
+ - sum-carbon
757
+ - time-sync
758
+ - sci
759
+ defaults:
760
+ cpu/thermal-design-power: 100
761
+ grid/carbon-intensity: 800
762
+ device/emissions-embodied: 1533.12
763
+ time-reserved: 3600
764
+ device/expected-lifespan: 94608000
765
+ vcpus-total: 8
766
+ vcpus-allocated: 1
767
+ children:
768
+ uk-west:
769
+ children:
770
+ A1:
771
+ inputs:
772
+ - timestamp: '2023-12-12T00:00:00.000Z'
773
+ duration: 1
774
+ cpu/utilization: 30
775
+ cloud/instance-type: A1
776
+ cloud/region: uk-west
777
+ requests: 100
778
+ cpu/thermal-design-power: 100
779
+ grid/carbon-intensity: 800
780
+ device/emissions-embodied: 1533.12
781
+ time-reserved: 3600
782
+ device/expected-lifespan: 94608000
783
+ vcpus-total: 8
784
+ vcpus-allocated: 1
785
+ - timestamp: '2023-12-12T00:00:01.000Z'
786
+ duration: 5
787
+ cpu/utilization: 28
788
+ cloud/instance-type: A1
789
+ cloud/region: uk-west
790
+ requests: 150
791
+ cpu/thermal-design-power: 100
792
+ grid/carbon-intensity: 800
793
+ device/emissions-embodied: 1533.12
794
+ time-reserved: 3600
795
+ device/expected-lifespan: 94608000
796
+ vcpus-total: 8
797
+ vcpus-allocated: 1
798
+ - timestamp: '2023-12-12T00:00:06.000Z'
799
+ duration: 7
800
+ cpu/utilization: 40
801
+ cloud/instance-type: A1
802
+ cloud/region: uk-west
803
+ requests: 110
804
+ cpu/thermal-design-power: 100
805
+ grid/carbon-intensity: 800
806
+ device/emissions-embodied: 1533.12
807
+ time-reserved: 3600
808
+ device/expected-lifespan: 94608000
809
+ vcpus-total: 8
810
+ vcpus-allocated: 1
811
+ - timestamp: '2023-12-12T00:00:13.000Z'
812
+ duration: 30
813
+ cpu/utilization: 33
814
+ cloud/instance-type: A1
815
+ cloud/region: uk-west
816
+ requests: 180
817
+ cpu/thermal-design-power: 100
818
+ grid/carbon-intensity: 800
819
+ device/emissions-embodied: 1533.12
820
+ time-reserved: 3600
821
+ device/expected-lifespan: 94608000
822
+ vcpus-total: 8
823
+ vcpus-allocated: 1
824
+ outputs:
825
+ - timestamp: '2023-12-12T00:00:00.000Z'
826
+ duration: 5
827
+ cpu/utilization: 22.8
828
+ cloud/instance-type: A1
829
+ cloud/region: uk-west
830
+ requests: 220
831
+ cpu/thermal-design-power: 80
832
+ grid/carbon-intensity: 640
833
+ device/emissions-embodied: 1533.12
834
+ time-reserved: 3600
835
+ device/expected-lifespan: 94608000
836
+ vcpus-total: 8
837
+ vcpus-allocated: 1
838
+ cpu-factor: 0.41509999999999997
839
+ cpu-wattage: 94.57999999999998
840
+ cpu-wattage-times-duration: 258.9
841
+ cpu-energy-raw: 0.00007191666666666668
842
+ vcpu-ratio: 8
843
+ cpu-energy-kwh: 0.000008989583333333334
844
+ vCPUs: 1
845
+ memory: 16
846
+ ssd: 0
847
+ hdd: 0
848
+ gpu: 0
849
+ usage-ratio: 1
850
+ embodied-carbon: 0.03963723997970573
851
+ carbon-operational: 0.007191666666666666
852
+ carbon: 0.046828906646372404
853
+ sci: 0.00021285866657442002
854
+ - timestamp: '2023-12-12T00:00:05.000Z'
855
+ duration: 5
856
+ cpu/utilization: 29.6
857
+ cloud/instance-type: A1
858
+ cloud/region: uk-west
859
+ requests: 92.85714285714285
860
+ cpu/thermal-design-power: 80
861
+ grid/carbon-intensity: 640
862
+ device/emissions-embodied: 1533.12
863
+ time-reserved: 3600
864
+ device/expected-lifespan: 94608000
865
+ vcpus-total: 8
866
+ vcpus-allocated: 1
867
+ cpu-factor: 0.48819999999999997
868
+ cpu-wattage: 46.98428571428572
869
+ cpu-wattage-times-duration: 308.35
870
+ cpu-energy-raw: 0.00008565277777777778
871
+ vcpu-ratio: 8
872
+ cpu-energy-kwh: 0.000010706597222222223
873
+ vCPUs: 1
874
+ memory: 16
875
+ ssd: 0
876
+ hdd: 0
877
+ gpu: 0
878
+ usage-ratio: 1
879
+ embodied-carbon: 0.03963723997970574
880
+ carbon-operational: 0.008565277777777778
881
+ carbon: 0.04820251775748351
882
+ sci: 0.0005191040373882839
883
+ - timestamp: '2023-12-12T00:00:10.000Z'
884
+ duration: 5
885
+ cpu/utilization: 30.6
886
+ cloud/instance-type: A1
887
+ cloud/region: uk-west
888
+ requests: 59.14285714285714
889
+ cpu/thermal-design-power: 80
890
+ grid/carbon-intensity: 640
891
+ device/emissions-embodied: 1533.12
892
+ time-reserved: 3600
893
+ device/expected-lifespan: 94608000
894
+ vcpus-total: 8
895
+ vcpus-allocated: 1
896
+ cpu-factor: 0.49894999999999995
897
+ cpu-wattage: 31.31738095238095
898
+ cpu-wattage-times-duration: 306.2
899
+ cpu-energy-raw: 0.00008505555555555556
900
+ vcpu-ratio: 8
901
+ cpu-energy-kwh: 0.000010631944444444445
902
+ vCPUs: 1
903
+ memory: 16
904
+ ssd: 0
905
+ hdd: 0
906
+ gpu: 0
907
+ usage-ratio: 1
908
+ embodied-carbon: 0.03963723997970574
909
+ carbon-operational: 0.008505555555555556
910
+ carbon: 0.04814279553526128
911
+ sci: 0.0008140086201614227
912
+ - timestamp: '2023-12-12T00:00:15.000Z'
913
+ duration: 5
914
+ cpu/utilization: 26.4
915
+ cloud/instance-type: A1
916
+ cloud/region: uk-west
917
+ requests: 30
918
+ cpu/thermal-design-power: 80
919
+ grid/carbon-intensity: 640
920
+ device/emissions-embodied: 1533.12
921
+ time-reserved: 3600
922
+ device/expected-lifespan: 94608000
923
+ vcpus-total: 8
924
+ vcpus-allocated: 1
925
+ cpu-factor: 0.45380000000000004
926
+ cpu-wattage: 9.454166666666667
927
+ cpu-wattage-times-duration: 283.625
928
+ cpu-energy-raw: 0.00007878472222222222
929
+ vcpu-ratio: 8
930
+ cpu-energy-kwh: 0.000009848090277777778
931
+ vCPUs: 1
932
+ memory: 16
933
+ ssd: 0
934
+ hdd: 0
935
+ gpu: 0
936
+ usage-ratio: 1
937
+ embodied-carbon: 0.03963723997970573
938
+ carbon-operational: 0.007878472222222222
939
+ carbon: 0.04751571220192795
940
+ sci: 0.0015838570733975983
941
+ - timestamp: '2023-12-12T00:00:20.000Z'
942
+ duration: 5
943
+ cpu/utilization: 26.4
944
+ cloud/instance-type: A1
945
+ cloud/region: uk-west
946
+ requests: 30
947
+ cpu/thermal-design-power: 80
948
+ grid/carbon-intensity: 640
949
+ device/emissions-embodied: 1533.12
950
+ time-reserved: 3600
951
+ device/expected-lifespan: 94608000
952
+ vcpus-total: 8
953
+ vcpus-allocated: 1
954
+ cpu-factor: 0.45380000000000004
955
+ cpu-wattage: 9.454166666666667
956
+ cpu-wattage-times-duration: 283.625
957
+ cpu-energy-raw: 0.00007878472222222222
958
+ vcpu-ratio: 8
959
+ cpu-energy-kwh: 0.000009848090277777778
960
+ vCPUs: 1
961
+ memory: 16
962
+ ssd: 0
963
+ hdd: 0
964
+ gpu: 0
965
+ usage-ratio: 1
966
+ embodied-carbon: 0.03963723997970573
967
+ carbon-operational: 0.007878472222222222
968
+ carbon: 0.04751571220192795
969
+ sci: 0.0015838570733975983
970
+ - timestamp: '2023-12-12T00:00:25.000Z'
971
+ duration: 5
972
+ cpu/utilization: 26.4
973
+ cloud/instance-type: A1
974
+ cloud/region: uk-west
975
+ requests: 30
976
+ cpu/thermal-design-power: 80
977
+ grid/carbon-intensity: 640
978
+ device/emissions-embodied: 1533.12
979
+ time-reserved: 3600
980
+ device/expected-lifespan: 94608000
981
+ vcpus-total: 8
982
+ vcpus-allocated: 1
983
+ cpu-factor: 0.45380000000000004
984
+ cpu-wattage: 9.454166666666667
985
+ cpu-wattage-times-duration: 283.625
986
+ cpu-energy-raw: 0.00007878472222222222
987
+ vcpu-ratio: 8
988
+ cpu-energy-kwh: 0.000009848090277777778
989
+ vCPUs: 1
990
+ memory: 16
991
+ ssd: 0
992
+ hdd: 0
993
+ gpu: 0
994
+ usage-ratio: 1
995
+ embodied-carbon: 0.03963723997970573
996
+ carbon-operational: 0.007878472222222222
997
+ carbon: 0.04751571220192795
998
+ sci: 0.0015838570733975983
999
+ - timestamp: '2023-12-12T00:00:30.000Z'
1000
+ duration: 5
1001
+ cpu/utilization: 26.4
1002
+ cloud/instance-type: A1
1003
+ cloud/region: uk-west
1004
+ requests: 30
1005
+ cpu/thermal-design-power: 80
1006
+ grid/carbon-intensity: 640
1007
+ device/emissions-embodied: 1533.12
1008
+ time-reserved: 3600
1009
+ device/expected-lifespan: 94608000
1010
+ vcpus-total: 8
1011
+ vcpus-allocated: 1
1012
+ cpu-factor: 0.45380000000000004
1013
+ cpu-wattage: 9.454166666666667
1014
+ cpu-wattage-times-duration: 283.625
1015
+ cpu-energy-raw: 0.00007878472222222222
1016
+ vcpu-ratio: 8
1017
+ cpu-energy-kwh: 0.000009848090277777778
1018
+ vCPUs: 1
1019
+ memory: 16
1020
+ ssd: 0
1021
+ hdd: 0
1022
+ gpu: 0
1023
+ usage-ratio: 1
1024
+ embodied-carbon: 0.03963723997970573
1025
+ carbon-operational: 0.007878472222222222
1026
+ carbon: 0.04751571220192795
1027
+ sci: 0.0015838570733975983
1028
+ - timestamp: '2023-12-12T00:00:35.000Z'
1029
+ duration: 5
1030
+ cpu/utilization: 26.4
1031
+ cloud/instance-type: A1
1032
+ cloud/region: uk-west
1033
+ requests: 30
1034
+ cpu/thermal-design-power: 80
1035
+ grid/carbon-intensity: 640
1036
+ device/emissions-embodied: 1533.12
1037
+ time-reserved: 3600
1038
+ device/expected-lifespan: 94608000
1039
+ vcpus-total: 8
1040
+ vcpus-allocated: 1
1041
+ cpu-factor: 0.45380000000000004
1042
+ cpu-wattage: 9.454166666666667
1043
+ cpu-wattage-times-duration: 283.625
1044
+ cpu-energy-raw: 0.00007878472222222222
1045
+ vcpu-ratio: 8
1046
+ cpu-energy-kwh: 0.000009848090277777778
1047
+ vCPUs: 1
1048
+ memory: 16
1049
+ ssd: 0
1050
+ hdd: 0
1051
+ gpu: 0
1052
+ usage-ratio: 1
1053
+ embodied-carbon: 0.03963723997970573
1054
+ carbon-operational: 0.007878472222222222
1055
+ carbon: 0.04751571220192795
1056
+ sci: 0.0015838570733975983
1057
+ - timestamp: '2023-12-12T00:00:40.000Z'
1058
+ duration: 5
1059
+ cpu/utilization: 19.8
1060
+ cloud/instance-type: A1
1061
+ cloud/region: uk-west
1062
+ requests: 18
1063
+ cpu/thermal-design-power: 60
1064
+ grid/carbon-intensity: 480
1065
+ device/emissions-embodied: 1533.12
1066
+ time-reserved: 1
1067
+ device/expected-lifespan: 94608000
1068
+ vcpus-total: 8
1069
+ vcpus-allocated: 1
1070
+ cpu-factor: 0.34035000000000004
1071
+ cpu-wattage: 5.6725
1072
+ cpu-wattage-times-duration: 170.175
1073
+ cpu-energy-raw: 0.00004727083333333333
1074
+ vcpu-ratio: 8
1075
+ cpu-energy-kwh: 0.000005908854166666666
1076
+ vCPUs: 1
1077
+ memory: 16
1078
+ ssd: 0
1079
+ hdd: 0
1080
+ gpu: 0
1081
+ usage-ratio: 1
1082
+ embodied-carbon: 0.02378234398782344
1083
+ carbon-operational: 0.004727083333333333
1084
+ carbon: 0.02850942732115677
1085
+ sci: 0.0015838570733975985
1086
+ - timestamp: '2023-12-12T00:00:45.000Z'
1087
+ duration: 5
1088
+ cpu/utilization: 0
1089
+ cloud/instance-type: A1
1090
+ cloud/region: uk-west
1091
+ requests: 0
1092
+ cpu/thermal-design-power: 0
1093
+ grid/carbon-intensity: 0
1094
+ device/emissions-embodied: 1533.12
1095
+ time-reserved: 1
1096
+ device/expected-lifespan: 94608000
1097
+ vcpus-total: 8
1098
+ vcpus-allocated: 1
1099
+ cpu-factor: 0
1100
+ cpu-wattage: 0
1101
+ cpu-wattage-times-duration: 0
1102
+ cpu-energy-raw: 0
1103
+ vcpu-ratio: 8
1104
+ cpu-energy-kwh: 0
1105
+ vCPUs: 1
1106
+ memory: 16
1107
+ ssd: 0
1108
+ hdd: 0
1109
+ gpu: 0
1110
+ usage-ratio: 1
1111
+ embodied-carbon: 0
1112
+ carbon-operational: 0
1113
+ carbon: 0
1114
+ sci: 0
1115
+ - timestamp: '2023-12-12T00:00:50.000Z'
1116
+ duration: 5
1117
+ cpu/utilization: 0
1118
+ cloud/instance-type: A1
1119
+ cloud/region: uk-west
1120
+ requests: 0
1121
+ cpu/thermal-design-power: 0
1122
+ grid/carbon-intensity: 0
1123
+ device/emissions-embodied: 1533.12
1124
+ time-reserved: 1
1125
+ device/expected-lifespan: 94608000
1126
+ vcpus-total: 8
1127
+ vcpus-allocated: 1
1128
+ cpu-factor: 0
1129
+ cpu-wattage: 0
1130
+ cpu-wattage-times-duration: 0
1131
+ cpu-energy-raw: 0
1132
+ vcpu-ratio: 8
1133
+ cpu-energy-kwh: 0
1134
+ vCPUs: 1
1135
+ memory: 16
1136
+ ssd: 0
1137
+ hdd: 0
1138
+ gpu: 0
1139
+ usage-ratio: 1
1140
+ embodied-carbon: 0
1141
+ carbon-operational: 0
1142
+ carbon: 0
1143
+ sci: 0
1144
+ - timestamp: '2023-12-12T00:00:55.000Z'
1145
+ duration: 5
1146
+ cpu/utilization: 0
1147
+ cloud/instance-type: A1
1148
+ cloud/region: uk-west
1149
+ requests: 0
1150
+ cpu/thermal-design-power: 0
1151
+ grid/carbon-intensity: 0
1152
+ device/emissions-embodied: 1533.12
1153
+ time-reserved: 1
1154
+ device/expected-lifespan: 94608000
1155
+ vcpus-total: 8
1156
+ vcpus-allocated: 1
1157
+ cpu-factor: 0
1158
+ cpu-wattage: 0
1159
+ cpu-wattage-times-duration: 0
1160
+ cpu-energy-raw: 0
1161
+ vcpu-ratio: 8
1162
+ cpu-energy-kwh: 0
1163
+ vCPUs: 1
1164
+ memory: 16
1165
+ ssd: 0
1166
+ hdd: 0
1167
+ gpu: 0
1168
+ usage-ratio: 1
1169
+ embodied-carbon: 0
1170
+ carbon-operational: 0
1171
+ carbon: 0
1172
+ sci: 0
1173
+ aggregated:
1174
+ carbon: 0.4092622082699138
1175
+ outputs:
1176
+ - carbon: 0.046828906646372404
1177
+ timestamp: '2023-12-12T00:00:00.000Z'
1178
+ duration: 5
1179
+ - carbon: 0.04820251775748351
1180
+ timestamp: '2023-12-12T00:00:05.000Z'
1181
+ duration: 5
1182
+ - carbon: 0.04814279553526128
1183
+ timestamp: '2023-12-12T00:00:10.000Z'
1184
+ duration: 5
1185
+ - carbon: 0.04751571220192795
1186
+ timestamp: '2023-12-12T00:00:15.000Z'
1187
+ duration: 5
1188
+ - carbon: 0.04751571220192795
1189
+ timestamp: '2023-12-12T00:00:20.000Z'
1190
+ duration: 5
1191
+ - carbon: 0.04751571220192795
1192
+ timestamp: '2023-12-12T00:00:25.000Z'
1193
+ duration: 5
1194
+ - carbon: 0.04751571220192795
1195
+ timestamp: '2023-12-12T00:00:30.000Z'
1196
+ duration: 5
1197
+ - carbon: 0.04751571220192795
1198
+ timestamp: '2023-12-12T00:00:35.000Z'
1199
+ duration: 5
1200
+ - carbon: 0.02850942732115677
1201
+ timestamp: '2023-12-12T00:00:40.000Z'
1202
+ duration: 5
1203
+ - carbon: 0
1204
+ timestamp: '2023-12-12T00:00:45.000Z'
1205
+ duration: 5
1206
+ - carbon: 0
1207
+ timestamp: '2023-12-12T00:00:50.000Z'
1208
+ duration: 5
1209
+ - carbon: 0
1210
+ timestamp: '2023-12-12T00:00:55.000Z'
1211
+ duration: 5
1212
+ aggregated:
1213
+ carbon: 0.4092622082699138
1214
+ outputs:
1215
+ - carbon: 0.046828906646372404
1216
+ timestamp: '2023-12-12T00:00:00.000Z'
1217
+ duration: 5
1218
+ - carbon: 0.04820251775748351
1219
+ timestamp: '2023-12-12T00:00:05.000Z'
1220
+ duration: 5
1221
+ - carbon: 0.04814279553526128
1222
+ timestamp: '2023-12-12T00:00:10.000Z'
1223
+ duration: 5
1224
+ - carbon: 0.04751571220192795
1225
+ timestamp: '2023-12-12T00:00:15.000Z'
1226
+ duration: 5
1227
+ - carbon: 0.04751571220192795
1228
+ timestamp: '2023-12-12T00:00:20.000Z'
1229
+ duration: 5
1230
+ - carbon: 0.04751571220192795
1231
+ timestamp: '2023-12-12T00:00:25.000Z'
1232
+ duration: 5
1233
+ - carbon: 0.04751571220192795
1234
+ timestamp: '2023-12-12T00:00:30.000Z'
1235
+ duration: 5
1236
+ - carbon: 0.04751571220192795
1237
+ timestamp: '2023-12-12T00:00:35.000Z'
1238
+ duration: 5
1239
+ - carbon: 0.02850942732115677
1240
+ timestamp: '2023-12-12T00:00:40.000Z'
1241
+ duration: 5
1242
+ - carbon: 0
1243
+ timestamp: '2023-12-12T00:00:45.000Z'
1244
+ duration: 5
1245
+ - carbon: 0
1246
+ timestamp: '2023-12-12T00:00:50.000Z'
1247
+ duration: 5
1248
+ - carbon: 0
1249
+ timestamp: '2023-12-12T00:00:55.000Z'
1250
+ duration: 5
1251
+ aggregated:
1252
+ carbon: 0.4092622082699138
1253
+ outputs:
1254
+ - carbon: 0.09210503551496703
1255
+ timestamp: '2023-12-12T00:00:00.000Z'
1256
+ duration: 5
1257
+ - carbon: 0.09318003551496702
1258
+ timestamp: '2023-12-12T00:00:05.000Z'
1259
+ duration: 5
1260
+ - carbon: 0.09297100773718923
1261
+ timestamp: '2023-12-12T00:00:10.000Z'
1262
+ duration: 5
1263
+ - carbon: 0.0923439244038559
1264
+ timestamp: '2023-12-12T00:00:15.000Z'
1265
+ duration: 5
1266
+ - carbon: 0.0923439244038559
1267
+ timestamp: '2023-12-12T00:00:20.000Z'
1268
+ duration: 5
1269
+ - carbon: 0.0923439244038559
1270
+ timestamp: '2023-12-12T00:00:25.000Z'
1271
+ duration: 5
1272
+ - carbon: 0.0923439244038559
1273
+ timestamp: '2023-12-12T00:00:30.000Z'
1274
+ duration: 5
1275
+ - carbon: 0.0923439244038559
1276
+ timestamp: '2023-12-12T00:00:35.000Z'
1277
+ duration: 5
1278
+ - carbon: 0.05540635464231354
1279
+ timestamp: '2023-12-12T00:00:40.000Z'
1280
+ duration: 5
1281
+ - carbon: 0
1282
+ timestamp: '2023-12-12T00:00:45.000Z'
1283
+ duration: 5
1284
+ - carbon: 0
1285
+ timestamp: '2023-12-12T00:00:50.000Z'
1286
+ duration: 5
1287
+ - carbon: 0
1288
+ timestamp: '2023-12-12T00:00:55.000Z'
1289
+ duration: 5
1290
+ aggregated:
1291
+ carbon: 0.7953820554287163