@grnsft/if 0.5.0-beta.0 → 0.6.0-beta.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.
- package/README.md +5 -17
- package/Refactor-migration-guide.md +110 -164
- package/build/common/config/index.d.ts +1 -0
- package/build/common/config/index.js +6 -0
- package/build/common/config/strings.d.ts +8 -0
- package/build/common/config/strings.js +16 -0
- package/build/common/lib/load.d.ts +6 -0
- package/build/common/lib/load.js +18 -0
- package/build/{types → common/types}/manifest.d.ts +4 -1
- package/build/common/types/manifest.js +3 -0
- package/build/common/util/debug-logger.js +115 -0
- package/build/common/util/fs.js +94 -0
- package/build/common/util/helpers.d.ts +15 -0
- package/build/common/util/helpers.js +80 -0
- package/build/{util → common/util}/logger.js +1 -1
- package/build/{util → common/util}/validations.d.ts +149 -47
- package/build/common/util/validations.js +141 -0
- package/build/common/util/yaml.js +59 -0
- package/build/if-check/config/config.d.ts +6 -0
- package/build/if-check/config/config.js +31 -0
- package/build/{config → if-check/config}/index.d.ts +0 -1
- package/build/if-check/config/index.js +8 -0
- package/build/if-check/config/strings.d.ts +12 -0
- package/build/if-check/config/strings.js +16 -0
- package/build/if-check/index.js +98 -0
- package/build/if-check/types/process-args.d.ts +4 -0
- package/build/if-check/types/process-args.js +3 -0
- package/build/if-check/util/args.d.ts +10 -0
- package/build/if-check/util/args.js +56 -0
- package/build/if-check/util/helpers.d.ts +4 -0
- package/build/if-check/util/helpers.js +18 -0
- package/build/if-check/util/npm.d.ts +4 -0
- package/build/if-check/util/npm.js +59 -0
- package/build/if-csv/config/config.d.ts +6 -0
- package/build/if-csv/config/config.js +37 -0
- package/build/if-csv/config/index.d.ts +2 -0
- package/build/if-csv/config/index.js +8 -0
- package/build/if-csv/config/strings.d.ts +4 -0
- package/build/if-csv/config/strings.js +8 -0
- package/build/if-csv/index.js +63 -0
- package/build/if-csv/types/csv.d.ts +7 -0
- package/build/if-csv/types/csv.js +3 -0
- package/build/if-csv/types/process-args.d.ts +5 -0
- package/build/if-csv/types/process-args.js +3 -0
- package/build/if-csv/util/args.d.ts +12 -0
- package/build/if-csv/util/args.js +51 -0
- package/build/if-csv/util/helpers.d.ts +9 -0
- package/build/if-csv/util/helpers.js +95 -0
- package/build/if-diff/config/config.d.ts +6 -0
- package/build/if-diff/config/config.js +31 -0
- package/build/if-diff/config/index.d.ts +2 -0
- package/build/if-diff/config/index.js +8 -0
- package/build/if-diff/config/strings.d.ts +6 -0
- package/build/if-diff/config/strings.js +10 -0
- package/build/if-diff/index.js +46 -0
- package/build/{lib → if-diff/lib}/compare.d.ts +1 -1
- package/build/if-diff/lib/compare.js +56 -0
- package/build/{lib → if-diff/lib}/load.d.ts +16 -18
- package/build/if-diff/lib/load.js +51 -0
- package/build/if-diff/types/args.js +3 -0
- package/build/if-diff/types/compare.js +3 -0
- package/build/if-diff/types/process-args.d.ts +4 -0
- package/build/if-diff/types/process-args.js +3 -0
- package/build/if-diff/util/args.d.ts +5 -0
- package/build/if-diff/util/args.js +51 -0
- package/build/if-diff/util/helpers.d.ts +13 -0
- package/build/if-diff/util/helpers.js +75 -0
- package/build/if-env/config/config.d.ts +6 -0
- package/build/if-env/config/config.js +37 -0
- package/build/if-env/config/index.d.ts +2 -0
- package/build/if-env/config/index.js +8 -0
- package/build/if-env/config/strings.d.ts +7 -0
- package/build/if-env/config/strings.js +11 -0
- package/build/if-env/index.js +40 -0
- package/build/if-env/types/if-env.js +3 -0
- package/build/if-env/types/npm.js +3 -0
- package/build/if-env/types/process-args.d.ts +5 -0
- package/build/if-env/types/process-args.js +3 -0
- package/build/if-env/util/args.d.ts +12 -0
- package/build/if-env/util/args.js +47 -0
- package/build/if-env/util/helpers.d.ts +20 -0
- package/build/if-env/util/helpers.js +94 -0
- package/build/{util → if-env/util}/npm.d.ts +0 -4
- package/build/if-env/util/npm.js +126 -0
- package/build/if-run/builtins/coefficient/index.d.ts +2 -0
- package/build/if-run/builtins/coefficient/index.js +67 -0
- package/build/if-run/builtins/copy-param/index.d.ts +2 -0
- package/build/if-run/builtins/copy-param/index.js +70 -0
- package/build/if-run/builtins/csv-lookup/index.d.ts +2 -0
- package/build/if-run/builtins/csv-lookup/index.js +190 -0
- package/build/if-run/builtins/divide/index.d.ts +2 -0
- package/build/if-run/builtins/divide/index.js +80 -0
- package/build/if-run/builtins/exponent/index.d.ts +2 -0
- package/build/if-run/builtins/exponent/index.js +60 -0
- package/build/{builtins → if-run/builtins}/export-log.d.ts +1 -1
- package/build/{builtins → if-run/builtins}/export-log.js +1 -1
- package/build/{builtins → if-run/builtins}/export-yaml.d.ts +1 -1
- package/build/if-run/builtins/export-yaml.js +30 -0
- package/build/{builtins → if-run/builtins}/index.d.ts +1 -2
- package/build/{builtins → if-run/builtins}/index.js +4 -6
- package/build/if-run/builtins/interpolation/index.d.ts +2 -0
- package/build/if-run/builtins/interpolation/index.js +151 -0
- package/build/if-run/builtins/mock-observations/helpers/common-generator.js +29 -0
- package/build/if-run/builtins/mock-observations/helpers/rand-int-generator.js +48 -0
- package/build/if-run/builtins/mock-observations/index.d.ts +2 -0
- package/build/if-run/builtins/mock-observations/index.js +116 -0
- package/build/if-run/builtins/mock-observations/interfaces/index.js +3 -0
- package/build/if-run/builtins/multiply/index.d.ts +2 -0
- package/build/if-run/builtins/multiply/index.js +59 -0
- package/build/if-run/builtins/regex/index.d.ts +2 -0
- package/build/if-run/builtins/regex/index.js +76 -0
- package/build/if-run/builtins/sci/config.js +44 -0
- package/build/if-run/builtins/sci/index.d.ts +2 -0
- package/build/if-run/builtins/sci/index.js +92 -0
- package/build/if-run/builtins/sci-embodied/index.d.ts +2 -0
- package/build/if-run/builtins/sci-embodied/index.js +156 -0
- package/build/if-run/builtins/shell/index.d.ts +2 -0
- package/build/if-run/builtins/shell/index.js +60 -0
- package/build/if-run/builtins/subtract/index.d.ts +2 -0
- package/build/if-run/builtins/subtract/index.js +61 -0
- package/build/if-run/builtins/sum/index.d.ts +2 -0
- package/build/if-run/builtins/sum/index.js +66 -0
- package/build/if-run/builtins/time-sync/index.d.ts +17 -0
- package/build/if-run/builtins/time-sync/index.js +339 -0
- package/build/if-run/config/config.d.ts +9 -0
- package/build/if-run/config/config.js +73 -0
- package/build/if-run/config/index.d.ts +2 -0
- package/build/if-run/config/index.js +8 -0
- package/build/{config → if-run/config}/strings.d.ts +28 -50
- package/build/if-run/config/strings.js +76 -0
- package/build/if-run/index.d.ts +2 -0
- package/build/if-run/index.js +63 -0
- package/build/if-run/lib/aggregate.d.ts +15 -0
- package/build/if-run/lib/aggregate.js +123 -0
- package/build/if-run/lib/compute.js +136 -0
- package/build/{lib → if-run/lib}/environment.d.ts +1 -1
- package/build/if-run/lib/environment.js +75 -0
- package/build/{lib → if-run/lib}/exhaust.d.ts +1 -1
- package/build/if-run/lib/exhaust.js +27 -0
- package/build/if-run/lib/explain.d.ts +9 -0
- package/build/if-run/lib/explain.js +43 -0
- package/build/if-run/lib/initialize.d.ts +6 -0
- package/build/if-run/lib/initialize.js +109 -0
- package/build/if-run/lib/regroup.d.ts +5 -0
- package/build/if-run/lib/regroup.js +64 -0
- package/build/if-run/types/aggregation.d.ts +5 -0
- package/build/if-run/types/aggregation.js +6 -0
- package/build/{types → if-run/types}/compute.d.ts +12 -8
- package/build/if-run/types/compute.js +3 -0
- package/build/if-run/types/environment.js +3 -0
- package/build/{types → if-run/types}/exhaust-plugin-interface.d.ts +1 -1
- package/build/if-run/types/exhaust-plugin-interface.js +3 -0
- package/build/if-run/types/explain.d.ts +10 -0
- package/build/if-run/types/explain.js +3 -0
- package/build/if-run/types/interface.d.ts +3 -0
- package/build/if-run/types/interface.js +6 -0
- package/build/if-run/types/plugin-storage.js +3 -0
- package/build/if-run/types/process-args.d.ts +25 -0
- package/build/if-run/types/process-args.js +3 -0
- package/build/if-run/types/time-sync.js +3 -0
- package/build/{util → if-run/util}/aggregation-helper.d.ts +2 -1
- package/build/if-run/util/aggregation-helper.js +47 -0
- package/build/if-run/util/args.d.ts +9 -0
- package/build/if-run/util/args.js +60 -0
- package/build/if-run/util/helpers.d.ts +14 -0
- package/build/if-run/util/helpers.js +57 -0
- package/build/if-run/util/log-memoize.js +19 -0
- package/build/if-run/util/os-checker.js +97 -0
- package/build/{util → if-run/util}/plugin-storage.d.ts +1 -1
- package/build/if-run/util/plugin-storage.js +34 -0
- package/jest.config.js +2 -6
- package/manifests/{plugins → examples/builtins}/coefficient/failure-invalid-config-input-param.yml +2 -2
- package/manifests/{plugins → examples/builtins}/coefficient/failure-output-param-is-null.yaml +3 -3
- package/manifests/{plugins → examples/builtins}/coefficient/success.yml +2 -2
- package/manifests/{plugins → examples/builtins}/csv-lookup/cloud-metadata/failure-invalid-instance-type.yaml +3 -3
- package/manifests/{plugins → examples/builtins}/csv-lookup/cloud-metadata/failure-invalid-vendor.yaml +3 -3
- package/manifests/{plugins → examples/builtins}/csv-lookup/cloud-metadata/failure-missing-cloud-vendor.yml +3 -3
- package/manifests/{plugins → examples/builtins}/csv-lookup/cloud-metadata/success.yml +3 -3
- package/manifests/{plugins → examples/builtins}/csv-lookup/region-metadata/failure-missing-column.yml +3 -4
- package/manifests/{plugins → examples/builtins}/csv-lookup/region-metadata/failure-missing-output.yml +3 -4
- package/manifests/{plugins → examples/builtins}/csv-lookup/region-metadata/success-renaming.yml +4 -5
- package/manifests/{plugins → examples/builtins}/csv-lookup/region-metadata/success.yml +3 -4
- package/manifests/{plugins → examples/builtins}/csv-lookup/tdp-finder/failure-missing-input-param.yml +2 -2
- package/manifests/{plugins → examples/builtins}/csv-lookup/tdp-finder/failure-unsupported-physical-processor.yml +2 -2
- package/manifests/{plugins → examples/builtins}/csv-lookup/tdp-finder/success.yml +2 -2
- package/manifests/{plugins → examples/builtins}/divide/failure-denominator-equal-zero.yml +4 -4
- package/manifests/{plugins → examples/builtins}/divide/failure-invalid-config-denominator.yml +5 -5
- package/manifests/{plugins → examples/builtins}/divide/failure-missing-numerator.yml +4 -4
- package/manifests/{plugins → examples/builtins}/divide/success.yml +4 -6
- package/manifests/{plugins → examples/builtins}/exponent/success.yml +5 -8
- package/manifests/{plugins → examples/builtins}/interpolation/interpolation.yml +2 -2
- package/manifests/{plugins → examples/builtins}/interpolation/success.yml +2 -2
- package/manifests/{plugins → examples/builtins}/mock-observations/failure-invalid-config-cpu-range.yml +2 -2
- package/manifests/{plugins → examples/builtins}/mock-observations/failure-invalid-memory-utilization-range.yml +2 -2
- package/manifests/{plugins → examples/builtins}/mock-observations/failure-missing-timestamp-from-param.yml +2 -2
- package/manifests/{plugins → examples/builtins}/mock-observations/success.yml +2 -2
- package/manifests/{plugins → examples/builtins}/multiply/failure-input-parameter-is-missing.yml +2 -4
- package/manifests/{plugins → examples/builtins}/multiply/success-with-multiple-inputs.yml +2 -4
- package/manifests/{plugins → examples/builtins}/multiply/success.yml +3 -4
- package/manifests/{plugins → examples/builtins}/regex/failure-missing-input-param.yml +2 -4
- package/manifests/{plugins → examples/builtins}/regex/failure-not-matching-with-regex.yml +2 -4
- package/manifests/{plugins → examples/builtins}/regex/success.yml +2 -4
- package/manifests/{plugins → examples/builtins}/sci/failure-invalid-config-value.yml +2 -2
- package/manifests/{plugins → examples/builtins}/sci/failure-missing-input-param.yml +3 -2
- package/manifests/{plugins → examples/builtins}/sci/success.yml +2 -3
- package/manifests/{plugins → examples/builtins}/sci-embodied/failure-invalid-default-emission-value.yml +3 -3
- package/manifests/{plugins → examples/builtins}/sci-embodied/failure-missing-expected-lifespan.yml +2 -2
- package/manifests/{plugins → examples/builtins}/sci-embodied/success.yml +2 -2
- package/manifests/{plugins → examples/builtins}/shell/failure-invalid-command.yml +2 -2
- package/manifests/{plugins → examples/builtins}/shell/success.yml +2 -1
- package/manifests/{plugins → examples/builtins}/subtract/success.yml +6 -9
- package/manifests/{plugins → examples/builtins}/sum/failure-missing-input-param.yml +2 -4
- package/manifests/{plugins → examples/builtins}/sum/failure-missing-output-param.yml +3 -5
- package/manifests/{plugins → examples/builtins}/sum/success.yml +2 -4
- package/manifests/{plugins → examples/builtins}/time-sync/failure-config-start-later-end.yml +3 -3
- package/manifests/{plugins → examples/builtins}/time-sync/failure-missing-global-config.yml +3 -3
- package/manifests/{plugins → examples/builtins}/time-sync/success.yml +2 -2
- package/manifests/{plugins/groupby/failure-invalid-config-group.yml → examples/features/regroup/failure-invalid-regroup.yml} +4 -11
- package/manifests/{plugins/groupby → examples/features/regroup}/failure-missing-cloud-instance-type.yml +5 -12
- package/manifests/{plugins/groupby → examples/features/regroup}/success.yml +4 -11
- package/manifests/examples/{generics.yml → pipelines/generics.yml} +12 -12
- package/manifests/examples/{instance-metadata.yml → pipelines/instance-metadata.yml} +6 -7
- package/manifests/examples/{nesting.yml → pipelines/nesting.yml} +157 -50
- package/manifests/examples/pipelines/outputs-if-diff/pipeline-with-aggregate.yaml +997 -0
- package/manifests/examples/pipelines/outputs-if-diff/pipeline-with-mocks.yaml +1059 -0
- package/manifests/examples/{pipeline-teads-sci.yml → pipelines/pipeline-teads-sci.yml} +11 -11
- package/manifests/examples/{pipeline-with-aggregate.yml → pipelines/pipeline-with-aggregate.yml} +113 -36
- package/manifests/examples/pipelines/pipeline-with-mocks.yml +297 -0
- package/manifests/{bugs/mock-observations-failure-duration-is-zero.yml → examples/pipelines/scenario-1.yml} +7 -7
- package/manifests/examples/pipelines/scenario-2.yml +52 -0
- package/manifests/examples/pipelines/scenario-3.yml +86 -0
- package/manifests/examples/pipelines/scenario-4.yml +46 -0
- package/manifests/examples/pipelines/scenario-5.yml +46 -0
- package/manifests/examples/{sci.yml → pipelines/sci.yml} +15 -17
- package/manifests/examples/{teads-curve.yml → pipelines/teads-curve.yml} +7 -6
- package/manifests/examples/{zeros.yaml → pipelines/zeros.yml} +15 -16
- package/manifests/outputs/bugs/aggregation-error-wrong-metric.yaml +235 -0
- package/manifests/outputs/bugs/input-error-missing-duration.yaml +82 -0
- package/manifests/outputs/bugs/mock-observations-failure-duration-is-zero.yaml +79 -0
- package/manifests/outputs/bugs/pipeline-error-naming-mismatch.yaml +89 -0
- package/manifests/outputs/bugs/pipeline-error-uninitialized-plugin.yaml +90 -0
- package/manifests/outputs/bugs/pipeline-ordering-error.yaml +152 -0
- package/manifests/outputs/bugs/sci-embodied-missing-resources-total.yaml +72 -0
- package/manifests/outputs/builtins/coefficient/failure-invalid-config-input-param.yaml +69 -0
- package/manifests/outputs/builtins/coefficient/failure-output-param-is-null.yaml +69 -0
- package/manifests/outputs/builtins/coefficient/success.yaml +70 -0
- package/manifests/outputs/builtins/csv-lookup/cloud-metadata/failure-invalid-instance-type.yaml +76 -0
- package/manifests/outputs/builtins/csv-lookup/cloud-metadata/failure-missing-cloud-vendor.yaml +74 -0
- package/manifests/outputs/builtins/csv-lookup/cloud-metadata/success.yaml +79 -0
- package/manifests/outputs/builtins/csv-lookup/region-metadata/failure-missing-column.yaml +75 -0
- package/manifests/outputs/builtins/csv-lookup/region-metadata/failure-missing-output.yaml +73 -0
- package/manifests/outputs/builtins/csv-lookup/region-metadata/success-renaming.yaml +78 -0
- package/manifests/outputs/builtins/csv-lookup/region-metadata/success.yaml +90 -0
- package/manifests/outputs/builtins/csv-lookup/tdp-finder/failure-missing-input-param.yaml +71 -0
- package/manifests/outputs/builtins/csv-lookup/tdp-finder/failure-unsupported-physical-processor.yaml +73 -0
- package/manifests/outputs/builtins/csv-lookup/tdp-finder/success.yaml +74 -0
- package/manifests/outputs/builtins/divide/failure-invalid-config-denominator.yaml +69 -0
- package/manifests/outputs/builtins/divide/failure-missing-numerator.yaml +75 -0
- package/manifests/outputs/builtins/divide/success-denominator-equal-zero.yaml +91 -0
- package/manifests/outputs/builtins/divide/success.yaml +91 -0
- package/manifests/outputs/builtins/exponent/success.yaml +73 -0
- package/manifests/outputs/builtins/interpolation/interpolation.yaml +81 -0
- package/manifests/outputs/builtins/interpolation/success.yaml +81 -0
- package/manifests/outputs/builtins/mock-observations/failure-invalid-config-cpu-range.yaml +84 -0
- package/manifests/outputs/builtins/mock-observations/failure-invalid-memory-utilization-range.yaml +82 -0
- package/manifests/outputs/builtins/mock-observations/failure-missing-timestamp-from-param.yaml +81 -0
- package/manifests/outputs/builtins/mock-observations/success.yaml +358 -0
- package/manifests/outputs/builtins/multiply/failure-input-parameter-is-missing.yaml +71 -0
- package/manifests/outputs/builtins/multiply/success-with-multiple-inputs.yaml +92 -0
- package/manifests/outputs/builtins/multiply/success.yaml +74 -0
- package/manifests/outputs/builtins/regex/failure-missing-input-param.yaml +71 -0
- package/manifests/outputs/builtins/regex/success.yaml +76 -0
- package/manifests/outputs/builtins/sci/failure-invalid-config-value.yaml +70 -0
- package/manifests/outputs/builtins/sci/failure-missing-input-param.yaml +70 -0
- package/manifests/outputs/builtins/sci/success.yaml +77 -0
- package/manifests/outputs/builtins/sci-embodied/failure-invalid-default-emission-value.yaml +73 -0
- package/manifests/outputs/builtins/sci-embodied/failure-missing-expected-lifespan.yaml +69 -0
- package/manifests/outputs/builtins/sci-embodied/success.yaml +76 -0
- package/manifests/outputs/builtins/shell/failure-invalid-command.yaml +68 -0
- package/manifests/outputs/builtins/shell/success.yaml +66 -0
- package/manifests/outputs/builtins/subtract/success.yaml +74 -0
- package/manifests/outputs/builtins/sum/failure-missing-input-param.yaml +71 -0
- package/manifests/outputs/builtins/sum/failure-missing-output-param.yaml +74 -0
- package/manifests/outputs/builtins/sum/success.yaml +74 -0
- package/manifests/outputs/builtins/time-sync/failure-config-start-later-end.yaml +79 -0
- package/manifests/outputs/builtins/time-sync/success.yaml +122 -0
- package/manifests/outputs/features/aggregate-failure-invalid-metrics.yaml +100 -0
- package/manifests/outputs/features/aggregate-failure-missing-metric-in-inputs.yaml +99 -0
- package/manifests/outputs/features/aggregate-horizontal.yaml +132 -0
- package/manifests/outputs/features/aggregate-vertical.yaml +155 -0
- package/manifests/outputs/features/aggregate.yaml +159 -0
- package/manifests/outputs/features/failure-invalid-regroup.yaml +87 -0
- package/manifests/outputs/features/failure-missing-cloud-instance-type.yaml +86 -0
- package/manifests/outputs/pipelines/cloud-metadata-divide.yaml +91 -0
- package/manifests/outputs/pipelines/generics.yaml +239 -0
- package/manifests/outputs/pipelines/instance-metadata.yaml +98 -0
- package/manifests/outputs/pipelines/mock-obs-time-sync.yaml +449 -0
- package/manifests/outputs/pipelines/nesting.yaml +1799 -0
- package/manifests/outputs/pipelines/pipeline-teads-sci.yaml +276 -0
- package/manifests/outputs/pipelines/sci.yaml +297 -0
- package/manifests/outputs/pipelines/teads-curve.yaml +188 -0
- package/manifests/outputs/pipelines/zeros.yaml +198 -0
- package/package.json +15 -16
- package/src/__mocks__/mock-manifest.yaml +2 -3
- package/src/{config → if-env/config}/env-template.yml +2 -3
- package/src/{builtins → if-run/builtins}/coefficient/README.md +31 -9
- package/src/{builtins → if-run/builtins}/copy-param/README.md +30 -11
- package/src/{builtins → if-run/builtins}/csv-lookup/README.md +32 -20
- package/src/{builtins → if-run/builtins}/divide/README.md +21 -8
- package/src/{builtins → if-run/builtins}/exponent/README.md +19 -8
- package/src/{builtins → if-run/builtins}/interpolation/README.md +21 -6
- package/src/{builtins → if-run/builtins}/mock-observations/README.md +18 -4
- package/src/{builtins → if-run/builtins}/multiply/README.md +20 -8
- package/src/{builtins → if-run/builtins}/regex/README.md +19 -9
- package/src/{builtins → if-run/builtins}/sci/README.md +19 -9
- package/src/{builtins → if-run/builtins}/sci-embodied/README.md +17 -5
- package/src/{builtins → if-run/builtins}/shell/README.md +19 -7
- package/src/{builtins → if-run/builtins}/subtract/README.md +17 -6
- package/src/{builtins → if-run/builtins}/sum/README.md +34 -8
- package/src/if-run/builtins/time-sync/README.md +267 -0
- package/build/builtins/coefficient/index.d.ts +0 -2
- package/build/builtins/coefficient/index.js +0 -65
- package/build/builtins/copy-param/index.d.ts +0 -2
- package/build/builtins/copy-param/index.js +0 -68
- package/build/builtins/csv-lookup/index.d.ts +0 -2
- package/build/builtins/csv-lookup/index.js +0 -188
- package/build/builtins/divide/index.d.ts +0 -2
- package/build/builtins/divide/index.js +0 -78
- package/build/builtins/exponent/index.d.ts +0 -2
- package/build/builtins/exponent/index.js +0 -58
- package/build/builtins/export-csv-raw.d.ts +0 -4
- package/build/builtins/export-csv-raw.js +0 -132
- package/build/builtins/export-csv.d.ts +0 -10
- package/build/builtins/export-csv.js +0 -96
- package/build/builtins/export-yaml.js +0 -30
- package/build/builtins/group-by.d.ts +0 -5
- package/build/builtins/group-by.js +0 -71
- package/build/builtins/interpolation/index.d.ts +0 -2
- package/build/builtins/interpolation/index.js +0 -148
- package/build/builtins/mock-observations/helpers/common-generator.js +0 -29
- package/build/builtins/mock-observations/helpers/rand-int-generator.js +0 -48
- package/build/builtins/mock-observations/index.d.ts +0 -2
- package/build/builtins/mock-observations/index.js +0 -114
- package/build/builtins/mock-observations/interfaces/index.js +0 -3
- package/build/builtins/multiply/index.d.ts +0 -2
- package/build/builtins/multiply/index.js +0 -57
- package/build/builtins/regex/index.d.ts +0 -2
- package/build/builtins/regex/index.js +0 -74
- package/build/builtins/sci/config.js +0 -44
- package/build/builtins/sci/index.d.ts +0 -2
- package/build/builtins/sci/index.js +0 -70
- package/build/builtins/sci-embodied/index.d.ts +0 -2
- package/build/builtins/sci-embodied/index.js +0 -114
- package/build/builtins/shell/index.d.ts +0 -2
- package/build/builtins/shell/index.js +0 -58
- package/build/builtins/subtract/index.d.ts +0 -2
- package/build/builtins/subtract/index.js +0 -59
- package/build/builtins/sum/index.d.ts +0 -2
- package/build/builtins/sum/index.js +0 -64
- package/build/builtins/time-sync.d.ts +0 -2
- package/build/builtins/time-sync.js +0 -300
- package/build/check.js +0 -85
- package/build/config/config.d.ts +0 -29
- package/build/config/config.js +0 -147
- package/build/config/index.js +0 -10
- package/build/config/params.d.ts +0 -2
- package/build/config/params.js +0 -196
- package/build/config/strings.js +0 -101
- package/build/diff.js +0 -46
- package/build/env.js +0 -38
- package/build/index.js +0 -48
- package/build/lib/aggregate.d.ts +0 -6
- package/build/lib/aggregate.js +0 -77
- package/build/lib/compare.js +0 -56
- package/build/lib/compute.js +0 -91
- package/build/lib/environment.js +0 -75
- package/build/lib/exhaust.js +0 -53
- package/build/lib/initialize.d.ts +0 -6
- package/build/lib/initialize.js +0 -101
- package/build/lib/load.js +0 -70
- package/build/lib/parameterize.d.ts +0 -6
- package/build/lib/parameterize.js +0 -55
- package/build/types/aggregation.d.ts +0 -2
- package/build/types/aggregation.js +0 -5
- package/build/types/compute.js +0 -3
- package/build/types/environment.js +0 -3
- package/build/types/exhaust-plugin-interface.js +0 -3
- package/build/types/if-env.js +0 -3
- package/build/types/interface.d.ts +0 -4
- package/build/types/interface.js +0 -8
- package/build/types/lib/compare.js +0 -3
- package/build/types/manifest.js +0 -3
- package/build/types/npm.js +0 -3
- package/build/types/parameters.d.ts +0 -5
- package/build/types/parameters.js +0 -5
- package/build/types/plugin-storage.js +0 -3
- package/build/types/process-args.d.ts +0 -33
- package/build/types/process-args.js +0 -3
- package/build/types/time-sync.js +0 -3
- package/build/types/util/args.js +0 -3
- package/build/util/aggregation-helper.js +0 -55
- package/build/util/args.d.ts +0 -37
- package/build/util/args.js +0 -205
- package/build/util/debug-logger.js +0 -117
- package/build/util/fs.js +0 -94
- package/build/util/helpers.d.ts +0 -57
- package/build/util/helpers.js +0 -250
- package/build/util/json.d.ts +0 -4
- package/build/util/json.js +0 -36
- package/build/util/log-memoize.js +0 -19
- package/build/util/npm.js +0 -152
- package/build/util/os-checker.js +0 -97
- package/build/util/plugin-storage.js +0 -34
- package/build/util/validations.js +0 -124
- package/build/util/yaml.js +0 -59
- package/manifests/bugs/aggregation-error-wrong-metric.yml +0 -178
- package/manifests/bugs/azure-importer-ignoring-defaults.yml +0 -64
- package/manifests/bugs/azure-importer-incorrect-calculation.yml +0 -59
- package/manifests/bugs/initialize-error-no-config.yml +0 -26
- package/manifests/bugs/initialize-error-no-path.yml +0 -32
- package/manifests/bugs/initialize-error-no-plugins.yml +0 -23
- package/manifests/bugs/input-error-missing-duration.yml +0 -25
- package/manifests/bugs/pipeline-error-naming-mismatch.yml +0 -32
- package/manifests/bugs/pipeline-error-uninitialized-plugin.yml +0 -33
- package/manifests/bugs/pipeline-ordering-error.yml +0 -91
- package/manifests/bugs/sci-embodied-missing-resources-total.yml +0 -23
- package/manifests/examples/copy.yaml +0 -20
- package/manifests/examples/mock-cpu-util-to-carbon.yml +0 -76
- package/manifests/examples/pipeline-with-mocks.yml +0 -207
- package/manifests/examples/region-metadata.yml +0 -26
- package/manifests/examples/tdp-finder.yml +0 -23
- package/manifests/features/aggregate-failure-invalid-metrics.yml +0 -49
- package/manifests/features/aggregate-failure-missing-metric-in-inputs.yml +0 -49
- package/manifests/features/aggregate-horizontal.yml +0 -50
- package/manifests/features/aggregate-vertical.yml +0 -50
- package/manifests/features/aggregate.yml +0 -50
- package/manifests/integrations/cloud-metadata-divide.yml +0 -37
- package/manifests/integrations/instance-metadata/failure-invalid-instance-type.yaml +0 -33
- package/manifests/integrations/instance-metadata/failure-invalid-provider.yaml +0 -33
- package/manifests/integrations/instance-metadata/failure-missing-queried-input.yml +0 -33
- package/manifests/integrations/instance-metadata/success.yml +0 -33
- package/manifests/integrations/mock-obs-group-by-cloud-meta.yml +0 -57
- package/manifests/integrations/mock-obs-groupby.yml +0 -39
- package/manifests/integrations/mock-obs-time-sync.yml +0 -110
- package/src/__tests__/integration/templates/integration.yaml +0 -16
- package/src/builtins/README.md +0 -848
- /package/build/{util → common/util}/debug-logger.d.ts +0 -0
- /package/build/{util → common/util}/fs.d.ts +0 -0
- /package/build/{util → common/util}/logger.d.ts +0 -0
- /package/build/{util → common/util}/yaml.d.ts +0 -0
- /package/build/{index.d.ts → if-check/index.d.ts} +0 -0
- /package/build/{check.d.ts → if-csv/index.d.ts} +0 -0
- /package/build/{diff.d.ts → if-diff/index.d.ts} +0 -0
- /package/build/{types/util → if-diff/types}/args.d.ts +0 -0
- /package/build/{types/lib → if-diff/types}/compare.d.ts +0 -0
- /package/build/{env.d.ts → if-env/index.d.ts} +0 -0
- /package/build/{types → if-env/types}/if-env.d.ts +0 -0
- /package/build/{types → if-env/types}/npm.d.ts +0 -0
- /package/build/{builtins → if-run/builtins}/mock-observations/helpers/common-generator.d.ts +0 -0
- /package/build/{builtins → if-run/builtins}/mock-observations/helpers/rand-int-generator.d.ts +0 -0
- /package/build/{builtins → if-run/builtins}/mock-observations/interfaces/index.d.ts +0 -0
- /package/build/{builtins → if-run/builtins}/sci/config.d.ts +0 -0
- /package/build/{lib → if-run/lib}/compute.d.ts +0 -0
- /package/build/{types → if-run/types}/environment.d.ts +0 -0
- /package/build/{types → if-run/types}/plugin-storage.d.ts +0 -0
- /package/build/{types → if-run/types}/time-sync.d.ts +0 -0
- /package/build/{util → if-run/util}/log-memoize.d.ts +0 -0
- /package/build/{util → if-run/util}/os-checker.d.ts +0 -0
|
@@ -1,178 +0,0 @@
|
|
|
1
|
-
name: aggregation-error-wrong-metric
|
|
2
|
-
description: a negative test case that fails due to the aggregation feature being passed an incorrect metric
|
|
3
|
-
tags:
|
|
4
|
-
aggregation:
|
|
5
|
-
metrics:
|
|
6
|
-
- "dummy-param"
|
|
7
|
-
type: "both"
|
|
8
|
-
initialize:
|
|
9
|
-
plugins:
|
|
10
|
-
"interpolate":
|
|
11
|
-
method: Interpolation
|
|
12
|
-
path: 'builtin'
|
|
13
|
-
global-config:
|
|
14
|
-
method: linear
|
|
15
|
-
x: [0, 10, 50, 100]
|
|
16
|
-
y: [0.12, 0.32, 0.75, 1.02]
|
|
17
|
-
input-parameter: 'cpu/utilization'
|
|
18
|
-
output-parameter: 'cpu-factor'
|
|
19
|
-
"cpu-factor-to-wattage":
|
|
20
|
-
method: Multiply
|
|
21
|
-
path: builtin
|
|
22
|
-
global-config:
|
|
23
|
-
input-parameters: ["cpu-factor", "cpu/thermal-design-power"]
|
|
24
|
-
output-parameter: "cpu-wattage"
|
|
25
|
-
"wattage-times-duration":
|
|
26
|
-
method: Multiply
|
|
27
|
-
path: builtin
|
|
28
|
-
global-config:
|
|
29
|
-
input-parameters: ["cpu-wattage", "duration"]
|
|
30
|
-
output-parameter: "cpu-wattage-times-duration"
|
|
31
|
-
"wattage-to-energy-kwh":
|
|
32
|
-
method: Divide
|
|
33
|
-
path: "builtin"
|
|
34
|
-
global-config:
|
|
35
|
-
numerator: cpu-wattage-times-duration
|
|
36
|
-
denominator: 3600000
|
|
37
|
-
output: cpu-energy-raw
|
|
38
|
-
"calculate-vcpu-ratio":
|
|
39
|
-
method: Divide
|
|
40
|
-
path: "builtin"
|
|
41
|
-
global-config:
|
|
42
|
-
numerator: vcpus-total
|
|
43
|
-
denominator: vcpus-allocated
|
|
44
|
-
output: vcpu-ratio
|
|
45
|
-
"correct-cpu-energy-for-vcpu-ratio":
|
|
46
|
-
method: Divide
|
|
47
|
-
path: "builtin"
|
|
48
|
-
global-config:
|
|
49
|
-
numerator: cpu-energy-raw
|
|
50
|
-
denominator: vcpu-ratio
|
|
51
|
-
output: cpu-energy-kwh
|
|
52
|
-
"sci-embodied":
|
|
53
|
-
path: "builtin"
|
|
54
|
-
method: SciEmbodied
|
|
55
|
-
"operational-carbon":
|
|
56
|
-
method: Multiply
|
|
57
|
-
path: builtin
|
|
58
|
-
global-config:
|
|
59
|
-
input-parameters: ["cpu-energy-kwh", "grid/carbon-intensity"]
|
|
60
|
-
output-parameter: "carbon"
|
|
61
|
-
"sci":
|
|
62
|
-
path: "builtin"
|
|
63
|
-
method: Sci
|
|
64
|
-
global-config:
|
|
65
|
-
functional-unit: "requests"
|
|
66
|
-
"time-sync":
|
|
67
|
-
method: TimeSync
|
|
68
|
-
path: "builtin"
|
|
69
|
-
global-config:
|
|
70
|
-
start-time: "2023-12-12T00:00:00.000Z"
|
|
71
|
-
end-time: "2023-12-12T00:01:00.000Z"
|
|
72
|
-
interval: 5
|
|
73
|
-
allow-padding: true
|
|
74
|
-
"group-by":
|
|
75
|
-
path: builtin
|
|
76
|
-
method: GroupBy
|
|
77
|
-
tree:
|
|
78
|
-
children:
|
|
79
|
-
child-1:
|
|
80
|
-
pipeline:
|
|
81
|
-
- interpolate
|
|
82
|
-
- cpu-factor-to-wattage
|
|
83
|
-
- wattage-times-duration
|
|
84
|
-
- wattage-to-energy-kwh
|
|
85
|
-
- calculate-vcpu-ratio
|
|
86
|
-
- correct-cpu-energy-for-vcpu-ratio
|
|
87
|
-
- sci-embodied
|
|
88
|
-
- operational-carbon
|
|
89
|
-
- time-sync
|
|
90
|
-
- sci
|
|
91
|
-
config:
|
|
92
|
-
group-by:
|
|
93
|
-
group:
|
|
94
|
-
- cloud/region
|
|
95
|
-
- cloud/instance-type
|
|
96
|
-
defaults:
|
|
97
|
-
cpu/thermal-design-power: 100
|
|
98
|
-
grid/carbon-intensity: 800
|
|
99
|
-
device/emissions-embodied: 1533.120 # gCO2eq
|
|
100
|
-
time-reserved: 3600 # 1hr in seconds
|
|
101
|
-
device/expected-lifespan: 94608000 # 3 years in seconds
|
|
102
|
-
vcpus-allocated: 1
|
|
103
|
-
vcpus-total: 8
|
|
104
|
-
inputs:
|
|
105
|
-
- timestamp: "2023-12-12T00:00:00.000Z"
|
|
106
|
-
cloud/instance-type: A1
|
|
107
|
-
cloud/region: uk-west
|
|
108
|
-
duration: 1
|
|
109
|
-
cpu/utilization: 10
|
|
110
|
-
requests: 100
|
|
111
|
-
- timestamp: "2023-12-12T00:00:01.000Z"
|
|
112
|
-
duration: 5
|
|
113
|
-
cpu/utilization: 20
|
|
114
|
-
cloud/instance-type: A1
|
|
115
|
-
cloud/region: uk-west
|
|
116
|
-
requests: 100
|
|
117
|
-
- timestamp: "2023-12-12T00:00:06.000Z"
|
|
118
|
-
duration: 7
|
|
119
|
-
cpu/utilization: 15
|
|
120
|
-
cloud/instance-type: A1
|
|
121
|
-
cloud/region: uk-west
|
|
122
|
-
requests: 100
|
|
123
|
-
- timestamp: "2023-12-12T00:00:13.000Z"
|
|
124
|
-
duration: 30
|
|
125
|
-
cloud/instance-type: A1
|
|
126
|
-
cloud/region: uk-west
|
|
127
|
-
cpu/utilization: 15
|
|
128
|
-
requests: 100
|
|
129
|
-
child-2:
|
|
130
|
-
pipeline:
|
|
131
|
-
- interpolate
|
|
132
|
-
- cpu-factor-to-wattage
|
|
133
|
-
- wattage-times-duration
|
|
134
|
-
- wattage-to-energy-kwh
|
|
135
|
-
- calculate-vcpu-ratio
|
|
136
|
-
- correct-cpu-energy-for-vcpu-ratio
|
|
137
|
-
- sci-embodied
|
|
138
|
-
- operational-carbon
|
|
139
|
-
- time-sync
|
|
140
|
-
- sci
|
|
141
|
-
config:
|
|
142
|
-
group-by:
|
|
143
|
-
group:
|
|
144
|
-
- cloud/region
|
|
145
|
-
- cloud/instance-type
|
|
146
|
-
defaults:
|
|
147
|
-
cpu/thermal-design-power: 100
|
|
148
|
-
grid/carbon-intensity: 800
|
|
149
|
-
device/emissions-embodied: 1533.120 # gCO2eq
|
|
150
|
-
time-reserved: 3600 # 1hr in seconds
|
|
151
|
-
device/expected-lifespan: 94608000 # 3 years in seconds
|
|
152
|
-
vcpus-allocated: 1
|
|
153
|
-
vcpus-total: 8
|
|
154
|
-
inputs:
|
|
155
|
-
- timestamp: "2023-12-12T00:00:00.000Z"
|
|
156
|
-
duration: 1
|
|
157
|
-
cpu/utilization: 30
|
|
158
|
-
cloud/instance-type: A1
|
|
159
|
-
cloud/region: uk-west
|
|
160
|
-
requests: 100
|
|
161
|
-
- timestamp: "2023-12-12T00:00:01.000Z"
|
|
162
|
-
duration: 5
|
|
163
|
-
cpu/utilization: 28
|
|
164
|
-
cloud/instance-type: A1
|
|
165
|
-
cloud/region: uk-west
|
|
166
|
-
requests: 100
|
|
167
|
-
- timestamp: "2023-12-12T00:00:06.000Z"
|
|
168
|
-
duration: 7
|
|
169
|
-
cpu/utilization: 40
|
|
170
|
-
cloud/instance-type: A1
|
|
171
|
-
cloud/region: uk-west
|
|
172
|
-
requests: 100
|
|
173
|
-
- timestamp: "2023-12-12T00:00:13.000Z"
|
|
174
|
-
duration: 30
|
|
175
|
-
cpu/utilization: 33
|
|
176
|
-
cloud/instance-type: A1
|
|
177
|
-
cloud/region: uk-west
|
|
178
|
-
requests: 100
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
name: pipeline-demo
|
|
2
|
-
description: https://github.com/Green-Software-Foundation/if-unofficial-plugins/issues/81
|
|
3
|
-
tags:
|
|
4
|
-
# aggregation:
|
|
5
|
-
# metrics:
|
|
6
|
-
# - "carbon"
|
|
7
|
-
# - "energy"
|
|
8
|
-
#type: "both"
|
|
9
|
-
initialize:
|
|
10
|
-
outputs:
|
|
11
|
-
- yaml
|
|
12
|
-
# - csv
|
|
13
|
-
plugins:
|
|
14
|
-
"azure-importer":
|
|
15
|
-
method: AzureImporter
|
|
16
|
-
path: "@grnsft/if-unofficial-plugins"
|
|
17
|
-
"try-defaults-1":
|
|
18
|
-
path: "builtin"
|
|
19
|
-
method: Coefficient
|
|
20
|
-
global-config:
|
|
21
|
-
input-parameter: grid/carbon-intensity
|
|
22
|
-
coefficient: 0.1
|
|
23
|
-
output-parameter: grid/carbon-intensity
|
|
24
|
-
"try-defaults-2":
|
|
25
|
-
path: "builtin"
|
|
26
|
-
method: Coefficient
|
|
27
|
-
global-config:
|
|
28
|
-
input-parameter: network/energy
|
|
29
|
-
coefficient: 1000
|
|
30
|
-
output-parameter: network/energy
|
|
31
|
-
"operational-carbon":
|
|
32
|
-
method: Multiply
|
|
33
|
-
path: builtin
|
|
34
|
-
global-config:
|
|
35
|
-
input-parameters: ["energy", "grid/carbon-intensity"]
|
|
36
|
-
output-parameter: "carbon-operational"
|
|
37
|
-
"group-by":
|
|
38
|
-
path: "builtin"
|
|
39
|
-
method: GroupBy
|
|
40
|
-
tree:
|
|
41
|
-
children:
|
|
42
|
-
web-front: # name this according to the sub-system, e.g. portal, APIs/backend, DB
|
|
43
|
-
pipeline:
|
|
44
|
-
- azure-importer
|
|
45
|
-
#- try-defaults-1
|
|
46
|
-
#- try-defaults-2
|
|
47
|
-
- sci-o
|
|
48
|
-
config:
|
|
49
|
-
group-by:
|
|
50
|
-
group:
|
|
51
|
-
- instance-type
|
|
52
|
-
azure-importer:
|
|
53
|
-
azure-observation-window: 60 min
|
|
54
|
-
azure-observation-aggregation: "average"
|
|
55
|
-
azure-subscription-id: 30b6e171-af2c-4fe6-b00d-d4c70f6291fe
|
|
56
|
-
azure-resource-group: gcf-app_group
|
|
57
|
-
azure-vm-name: gcf-app
|
|
58
|
-
defaults:
|
|
59
|
-
grid/carbon-intensity: 800 # adjust for SG grid
|
|
60
|
-
network/energy: 0.001 # review for naming accuracy
|
|
61
|
-
inputs:
|
|
62
|
-
- timestamp: "2024-04-04T08:00:00.001Z"
|
|
63
|
-
duration: 3600
|
|
64
|
-
energy: 100
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
name: pipeline-demo
|
|
2
|
-
description: https://github.com/Green-Software-Foundation/if-unofficial-plugins/issues/81
|
|
3
|
-
tags: null
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
azure-importer:
|
|
7
|
-
path: '@grnsft/if-unofficial-plugins'
|
|
8
|
-
method: AzureImporter
|
|
9
|
-
try-defaults-1:
|
|
10
|
-
path: 'builtin'
|
|
11
|
-
method: Coefficient
|
|
12
|
-
global-config:
|
|
13
|
-
input-parameter: grid/carbon-intensity
|
|
14
|
-
coefficient: 0.1
|
|
15
|
-
output-parameter: grid/carbon-intensity
|
|
16
|
-
try-defaults-2:
|
|
17
|
-
path: 'builtin'
|
|
18
|
-
method: Coefficient
|
|
19
|
-
global-config:
|
|
20
|
-
input-parameter: network/energy
|
|
21
|
-
coefficient: 1000
|
|
22
|
-
output-parameter: network/energy
|
|
23
|
-
"operational-carbon":
|
|
24
|
-
method: Multiply
|
|
25
|
-
path: builtin
|
|
26
|
-
global-config:
|
|
27
|
-
input-parameters: ["energy", "grid/carbon-intensity"]
|
|
28
|
-
output-parameter: "carbon-operational"
|
|
29
|
-
group-by:
|
|
30
|
-
path: builtin
|
|
31
|
-
method: GroupBy
|
|
32
|
-
outputs:
|
|
33
|
-
- yaml
|
|
34
|
-
if-version: v0.3.2
|
|
35
|
-
tree:
|
|
36
|
-
children:
|
|
37
|
-
web-front:
|
|
38
|
-
pipeline:
|
|
39
|
-
- azure-importer
|
|
40
|
-
- try-defaults-1
|
|
41
|
-
- try-defaults-2
|
|
42
|
-
config:
|
|
43
|
-
group-by:
|
|
44
|
-
group:
|
|
45
|
-
- instance-type
|
|
46
|
-
azure-importer:
|
|
47
|
-
azure-observation-window: 60 min
|
|
48
|
-
azure-observation-aggregation: average
|
|
49
|
-
azure-subscription-id: 30b6e171-af2c-4fe6-b00d-d4c70f6291fe
|
|
50
|
-
azure-resource-group: gcf-app_group
|
|
51
|
-
azure-vm-name: gcf-app
|
|
52
|
-
defaults:
|
|
53
|
-
grid/carbon-intensity: 800
|
|
54
|
-
network/energy: 0.001
|
|
55
|
-
inputs:
|
|
56
|
-
- timestamp: '2024-04-04T08:00:00.001Z'
|
|
57
|
-
duration: 3600
|
|
58
|
-
energy: 100
|
|
59
|
-
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
name: initialize-error-no-config
|
|
2
|
-
description: a negative test case that fails due to plugin initialization missing some required config
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
"interpolate":
|
|
7
|
-
method: Interpolation
|
|
8
|
-
path: 'builtin'
|
|
9
|
-
global-config:
|
|
10
|
-
tree:
|
|
11
|
-
children:
|
|
12
|
-
child-0:
|
|
13
|
-
defaults:
|
|
14
|
-
cpu/thermal-design-power: 100
|
|
15
|
-
pipeline:
|
|
16
|
-
- interpolate
|
|
17
|
-
inputs:
|
|
18
|
-
- timestamp: 2023-07-06T00:00
|
|
19
|
-
duration: 1
|
|
20
|
-
cpu/utilization: 20
|
|
21
|
-
- timestamp: 2023-07-06T00:01
|
|
22
|
-
duration: 1
|
|
23
|
-
cpu/utilization: 80
|
|
24
|
-
- timestamp: 2023-07-06T00:02
|
|
25
|
-
duration: 1
|
|
26
|
-
cpu/utilization: 20
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
name: initialize-error-no-path
|
|
2
|
-
description: a negative test case that fails because the path is mising in a plugin initialization
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
"interpolate":
|
|
7
|
-
method: Interpolation
|
|
8
|
-
path:
|
|
9
|
-
global-config:
|
|
10
|
-
method: linear
|
|
11
|
-
x: [0, 10, 50, 100]
|
|
12
|
-
y: [0.12, 0.32, 0.75, 1.02]
|
|
13
|
-
input-parameter: 'cpu/utilization'
|
|
14
|
-
output-parameter: 'cpu-factor'
|
|
15
|
-
# outputs: ['yaml']
|
|
16
|
-
tree:
|
|
17
|
-
children:
|
|
18
|
-
child-0:
|
|
19
|
-
defaults:
|
|
20
|
-
cpu/thermal-design-power: 100
|
|
21
|
-
pipeline:
|
|
22
|
-
- interpolate
|
|
23
|
-
inputs:
|
|
24
|
-
- timestamp: 2023-07-06T00:00
|
|
25
|
-
duration: 1
|
|
26
|
-
cpu/utilization: 20
|
|
27
|
-
- timestamp: 2023-07-06T00:01
|
|
28
|
-
duration: 1
|
|
29
|
-
cpu/utilization: 80
|
|
30
|
-
- timestamp: 2023-07-06T00:02
|
|
31
|
-
duration: 1
|
|
32
|
-
cpu/utilization: 20
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
name: initialize-error-no-path
|
|
2
|
-
description: a negative test case that fails becuase no plugins are included in the initialize block
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
outputs: ['yaml']
|
|
7
|
-
tree:
|
|
8
|
-
children:
|
|
9
|
-
child-0:
|
|
10
|
-
defaults:
|
|
11
|
-
cpu/thermal-design-power: 100
|
|
12
|
-
pipeline:
|
|
13
|
-
- teads-curve
|
|
14
|
-
inputs:
|
|
15
|
-
- timestamp: 2023-07-06T00:00
|
|
16
|
-
duration: 1
|
|
17
|
-
cpu/utilization: 20
|
|
18
|
-
- timestamp: 2023-07-06T00:01
|
|
19
|
-
duration: 1
|
|
20
|
-
cpu/utilization: 80
|
|
21
|
-
- timestamp: 2023-07-06T00:02
|
|
22
|
-
duration: 1
|
|
23
|
-
cpu/utilization: 20
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
name: input-error-missing-duration
|
|
2
|
-
description: a negative test case that fails due to the required `duration` field being omitted from input data
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
"interpolate":
|
|
7
|
-
method: Interpolation
|
|
8
|
-
path: builtin
|
|
9
|
-
global-config:
|
|
10
|
-
method: linear
|
|
11
|
-
x: [0, 10, 50, 100]
|
|
12
|
-
y: [0.12, 0.32, 0.75, 1.02]
|
|
13
|
-
input-parameter: 'cpu/utilization'
|
|
14
|
-
output-parameter: 'cpu-factor'
|
|
15
|
-
# outputs: ['yaml']
|
|
16
|
-
tree:
|
|
17
|
-
children:
|
|
18
|
-
child-0:
|
|
19
|
-
defaults:
|
|
20
|
-
cpu/thermal-design-power: 100
|
|
21
|
-
pipeline:
|
|
22
|
-
- interpolate
|
|
23
|
-
inputs:
|
|
24
|
-
- timestamp: 2023-07-06T00:00
|
|
25
|
-
cpu/utilization: 20
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
name: pipeline-error-naming-mismatch
|
|
2
|
-
description: a negative test case that fails due to the plugin name in the pipeline not matching the name given in initialize
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
"interpolate":
|
|
7
|
-
method: Interpolation
|
|
8
|
-
path: builtin
|
|
9
|
-
global-config:
|
|
10
|
-
method: linear
|
|
11
|
-
x: [0, 10, 50, 100]
|
|
12
|
-
y: [0.12, 0.32, 0.75, 1.02]
|
|
13
|
-
input-parameter: 'cpu/utilization'
|
|
14
|
-
output-parameter: 'cpu-factor'
|
|
15
|
-
outputs: ['yaml']
|
|
16
|
-
tree:
|
|
17
|
-
children:
|
|
18
|
-
child-0:
|
|
19
|
-
defaults:
|
|
20
|
-
cpu/thermal-design-power: 100
|
|
21
|
-
pipeline:
|
|
22
|
-
- wrong-name
|
|
23
|
-
inputs:
|
|
24
|
-
- timestamp: 2023-07-06T00:00
|
|
25
|
-
duration: 1
|
|
26
|
-
cpu/utilization: 20
|
|
27
|
-
- timestamp: 2023-07-06T00:01
|
|
28
|
-
duration: 1
|
|
29
|
-
cpu/utilization: 80
|
|
30
|
-
- timestamp: 2023-07-06T00:02
|
|
31
|
-
duration: 1
|
|
32
|
-
cpu/utilization: 20
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
name: pipeline-uninitialized-plugin-error
|
|
2
|
-
description: a negative test case that fails due to an uninitialized plugin being invoked in a pipeline
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
# outputs: ['yaml']
|
|
6
|
-
plugins:
|
|
7
|
-
"interpolate":
|
|
8
|
-
method: Interpolation
|
|
9
|
-
path: builtin
|
|
10
|
-
global-config:
|
|
11
|
-
method: linear
|
|
12
|
-
x: [0, 10, 50, 100]
|
|
13
|
-
y: [0.12, 0.32, 0.75, 1.02]
|
|
14
|
-
input-parameter: 'cpu/utilization'
|
|
15
|
-
output-parameter: 'cpu-factor'
|
|
16
|
-
tree:
|
|
17
|
-
children:
|
|
18
|
-
child-0:
|
|
19
|
-
defaults:
|
|
20
|
-
cpu/thermal-design-power: 100
|
|
21
|
-
pipeline:
|
|
22
|
-
- interpolate
|
|
23
|
-
- multiply
|
|
24
|
-
inputs:
|
|
25
|
-
- timestamp: 2023-07-06T00:00
|
|
26
|
-
duration: 1
|
|
27
|
-
cpu/utilization: 20
|
|
28
|
-
- timestamp: 2023-07-06T00:01
|
|
29
|
-
duration: 1
|
|
30
|
-
cpu/utilization: 80
|
|
31
|
-
- timestamp: 2023-07-06T00:02
|
|
32
|
-
duration: 1
|
|
33
|
-
cpu/utilization: 20
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
name: pipeline-ordering-error
|
|
2
|
-
description: a negative test case that fails because sci-o is invoked too early in the pipeline (before its inputs are generated)
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
"interpolate":
|
|
7
|
-
method: Interpolation
|
|
8
|
-
path: 'builtin'
|
|
9
|
-
global-config:
|
|
10
|
-
method: linear
|
|
11
|
-
x: [0, 10, 50, 100]
|
|
12
|
-
y: [0.12, 0.32, 0.75, 1.02]
|
|
13
|
-
input-parameter: 'cpu/utilization'
|
|
14
|
-
output-parameter: 'cpu-factor'
|
|
15
|
-
"cpu-factor-to-wattage":
|
|
16
|
-
method: Multiply
|
|
17
|
-
path: builtin
|
|
18
|
-
global-config:
|
|
19
|
-
input-parameters: ["cpu-factor", "cpu/thermal-design-power"]
|
|
20
|
-
output-parameter: "cpu-wattage"
|
|
21
|
-
"wattage-times-duration":
|
|
22
|
-
method: Multiply
|
|
23
|
-
path: builtin
|
|
24
|
-
global-config:
|
|
25
|
-
input-parameters: ["cpu-wattage", "duration"]
|
|
26
|
-
output-parameter: "cpu-wattage-times-duration"
|
|
27
|
-
"wattage-to-energy-kwh":
|
|
28
|
-
method: Divide
|
|
29
|
-
path: "builtin"
|
|
30
|
-
global-config:
|
|
31
|
-
numerator: cpu-wattage-times-duration
|
|
32
|
-
denominator: 3600000
|
|
33
|
-
output: cpu-energy-raw
|
|
34
|
-
"calculate-vcpu-ratio":
|
|
35
|
-
method: Divide
|
|
36
|
-
path: "builtin"
|
|
37
|
-
global-config:
|
|
38
|
-
numerator: vcpus-total
|
|
39
|
-
denominator: vcpus-allocated
|
|
40
|
-
output: vcpu-ratio
|
|
41
|
-
"correct-cpu-energy-for-vcpu-ratio":
|
|
42
|
-
method: Divide
|
|
43
|
-
path: "builtin"
|
|
44
|
-
global-config:
|
|
45
|
-
numerator: cpu-energy-raw
|
|
46
|
-
denominator: vcpu-ratio
|
|
47
|
-
output: cpu-energy-kwh
|
|
48
|
-
tree:
|
|
49
|
-
children:
|
|
50
|
-
child-1:
|
|
51
|
-
pipeline:
|
|
52
|
-
- interpolate
|
|
53
|
-
- correct-cpu-energy-for-vcpu-ratio
|
|
54
|
-
- calculate-vcpu-ratio
|
|
55
|
-
- cpu-factor-to-wattage
|
|
56
|
-
- wattage-times-duration
|
|
57
|
-
- wattage-to-energy-kwh
|
|
58
|
-
config:
|
|
59
|
-
defaults:
|
|
60
|
-
cpu/thermal-design-power: 100
|
|
61
|
-
grid/carbon-intensity: 800
|
|
62
|
-
device/emissions-embodied: 1533.120 # gCO2eq
|
|
63
|
-
time-reserved: 3600 # 1hr in seconds
|
|
64
|
-
device/expected-lifespan: 94608000 # 3 years in seconds
|
|
65
|
-
vcpus-allocated: 1
|
|
66
|
-
vcpus-total: 8
|
|
67
|
-
inputs:
|
|
68
|
-
- timestamp: "2023-12-12T00:00:00.000Z"
|
|
69
|
-
cloud/instance-type: A1
|
|
70
|
-
cloud/region: uk-west
|
|
71
|
-
duration: 1
|
|
72
|
-
cpu/utilization: 50
|
|
73
|
-
network/energy: 0.000001
|
|
74
|
-
- timestamp: "2023-12-12T00:00:01.000Z"
|
|
75
|
-
duration: 5
|
|
76
|
-
cpu/utilization: 20
|
|
77
|
-
cloud/instance-type: A1
|
|
78
|
-
cloud/region: uk-west
|
|
79
|
-
network/energy: 0.000001
|
|
80
|
-
- timestamp: "2023-12-12T00:00:06.000Z"
|
|
81
|
-
duration: 7
|
|
82
|
-
cpu/utilization: 15
|
|
83
|
-
cloud/instance-type: A1
|
|
84
|
-
cloud/region: uk-west
|
|
85
|
-
network/energy: 0.000001
|
|
86
|
-
- timestamp: "2023-12-12T00:00:13.000Z"
|
|
87
|
-
duration: 30
|
|
88
|
-
cloud/instance-type: A1
|
|
89
|
-
cloud/region: uk-west
|
|
90
|
-
cpu/utilization: 15
|
|
91
|
-
network/energy: 0.000001
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
name: sci-embodied
|
|
2
|
-
description: receiving incorrect error message when running sci-embodied without `resources-total` issue #716
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
#outputs: ['yaml']
|
|
6
|
-
plugins:
|
|
7
|
-
"sci-embodied": # a model that calculates m from te, tir, el, rr and rtor
|
|
8
|
-
method: SciEmbodied
|
|
9
|
-
path: "builtin"
|
|
10
|
-
tree:
|
|
11
|
-
children:
|
|
12
|
-
child:
|
|
13
|
-
pipeline:
|
|
14
|
-
- sci-embodied # duration & config -> embodied
|
|
15
|
-
defaults:
|
|
16
|
-
device/emissions-embodied: 1533.120 # gCO2eq
|
|
17
|
-
time-reserved: 3600 # 1hr in seconds
|
|
18
|
-
device/expected-lifespan: 94608000 # 3 years in seconds
|
|
19
|
-
resources-reserved: 1
|
|
20
|
-
# resources-total: 8
|
|
21
|
-
inputs:
|
|
22
|
-
- timestamp: 2023-07-06T00:00
|
|
23
|
-
duration: 3600
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
name: copy-param
|
|
2
|
-
description:
|
|
3
|
-
tags:
|
|
4
|
-
initialize:
|
|
5
|
-
plugins:
|
|
6
|
-
copy-param:
|
|
7
|
-
path: builtin
|
|
8
|
-
method: Copy
|
|
9
|
-
global-config:
|
|
10
|
-
keep-existing: true
|
|
11
|
-
from: original
|
|
12
|
-
to: copy
|
|
13
|
-
tree:
|
|
14
|
-
children:
|
|
15
|
-
child-1:
|
|
16
|
-
pipeline:
|
|
17
|
-
- copy-param
|
|
18
|
-
inputs:
|
|
19
|
-
- timestamp: "2023-12-12T00:00:00.000Z"
|
|
20
|
-
original: 'hello'
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
name: mock-cpu-util-to-carbon
|
|
2
|
-
description: a complete pipeline that starts with mocked CPU utilization data and outputs operational carbon in gCO2eq
|
|
3
|
-
initialize:
|
|
4
|
-
#outputs: ['yaml']
|
|
5
|
-
plugins:
|
|
6
|
-
group-by:
|
|
7
|
-
path: 'builtin'
|
|
8
|
-
method: GroupBy
|
|
9
|
-
operational-carbon:
|
|
10
|
-
path: 'builtin'
|
|
11
|
-
method: Multiply
|
|
12
|
-
global-config:
|
|
13
|
-
input-parameters: ['cpu/energy', 'grid/carbon-intensity']
|
|
14
|
-
output-parameter: 'carbon'
|
|
15
|
-
watttime:
|
|
16
|
-
path: '@grnsft/if-unofficial-plugins'
|
|
17
|
-
method: WattTimeGridEmissions
|
|
18
|
-
teads-curve:
|
|
19
|
-
path: '@grnsft/if-unofficial-plugins'
|
|
20
|
-
method: TeadsCurve
|
|
21
|
-
global-config:
|
|
22
|
-
interpolation: spline
|
|
23
|
-
cloud-metadata:
|
|
24
|
-
path: builtin
|
|
25
|
-
method: CSVLookup
|
|
26
|
-
global-config:
|
|
27
|
-
filepath: >-
|
|
28
|
-
https://raw.githubusercontent.com/Green-Software-Foundation/if-data/main/cloud-metdata-azure-instances.csv
|
|
29
|
-
query:
|
|
30
|
-
instance-class: cloud/instance-type
|
|
31
|
-
output: ['cpu-cores-utilized', 'vcpus-allocated']
|
|
32
|
-
mock-observations:
|
|
33
|
-
path: 'builtin'
|
|
34
|
-
method: MockObservations
|
|
35
|
-
global-config:
|
|
36
|
-
timestamp-from: '2024-03-05T00:00:00.000Z'
|
|
37
|
-
timestamp-to: '2024-03-05T00:01:00.000Z'
|
|
38
|
-
duration: 10
|
|
39
|
-
components:
|
|
40
|
-
- name: server-1
|
|
41
|
-
cloud/instance-type: Standard_E64_v3
|
|
42
|
-
cloud/region: westus3
|
|
43
|
-
- name: server-2
|
|
44
|
-
cloud/instance-type: Standard_E64_v3
|
|
45
|
-
cloud/region: westus3
|
|
46
|
-
generators:
|
|
47
|
-
common:
|
|
48
|
-
cloud/vendor: azure
|
|
49
|
-
randint:
|
|
50
|
-
cpu/utilization:
|
|
51
|
-
min: 1
|
|
52
|
-
max: 99
|
|
53
|
-
'time-sync':
|
|
54
|
-
method: TimeSync
|
|
55
|
-
path: "builtin"
|
|
56
|
-
global-config:
|
|
57
|
-
start-time: '2024-03-05T00:00:00.000Z'
|
|
58
|
-
end-time: '2024-03-05T00:01:00.000Z'
|
|
59
|
-
interval: 5
|
|
60
|
-
allow-padding: true
|
|
61
|
-
tree:
|
|
62
|
-
pipeline:
|
|
63
|
-
- mock-observations
|
|
64
|
-
- group-by
|
|
65
|
-
- time-sync
|
|
66
|
-
- cloud-metadata
|
|
67
|
-
- watttime
|
|
68
|
-
- teads-curve
|
|
69
|
-
- operational-carbon
|
|
70
|
-
defaults:
|
|
71
|
-
config:
|
|
72
|
-
group-by:
|
|
73
|
-
group:
|
|
74
|
-
- cloud/region
|
|
75
|
-
- name
|
|
76
|
-
inputs: null
|