Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add csv-import plugin #1091

Merged
merged 14 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions manifests/examples/builtins/csv-import/success.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: csv-import
description: successful path
tags:
initialize:
plugins:
data-import:
method: CSVImport
path: 'builtin'
config:
filepath: manifests/examples/builtins/csv-import/test.csv
# filepath: https://raw.githubusercontent.com/Green-Software-Foundation/if-data/main/cloud-metdata-aws-instances.csv
output: '*'
tree:
children:
child:
pipeline:
compute:
- data-import
inputs:
- timestamp: 2023-07-06T00:00
duration: 300
physical-processor: AMD 3020e
4 changes: 4 additions & 0 deletions manifests/examples/builtins/csv-import/test.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
timestamp,duration,cpu-util,energy
2023-07-06T00:00,1,20,5
2023-07-06T00:01,1,30,10
2023-07-06T00:02,1,40,15
84 changes: 84 additions & 0 deletions manifests/outputs/builtins/csv-import/success.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: csv-import
description: successful path
tags: null
initialize:
plugins:
data-import:
path: builtin
method: CSVImport
config:
filepath: manifests/examples/builtins/csv-import/test.csv
output: '*'
execution:
command: >-
/Users/manushak/.npm/_npx/1bf7c3c15bf47d04/node_modules/.bin/ts-node
/Users/manushak/Documents/Projects/Green-Software/if/src/if-run/index.ts -m
manifests/examples/builtins/csv-import/success.yaml -o
manifests/outputs/builtins/csv-import/success
environment:
if-version: 0.7.2
os: macOS
os-version: 14.6.1
node-version: 18.20.4
date-time: 2024-12-06T06:45:15.935Z (UTC)
dependencies:
- '@babel/core@7.22.10'
- '@babel/preset-typescript@7.23.3'
- '@commitlint/cli@18.6.0'
- '@commitlint/config-conventional@18.6.0'
- '@grnsft/if-core@0.0.28'
- >-
@grnsft/if-eco-ci-plugin@0.0.1 extraneous ->
file:../../../if-eco-ci-plugin
- '@jest/globals@29.7.0'
- '@types/jest@29.5.8'
- '@types/js-yaml@4.0.9'
- '@types/luxon@3.4.2'
- '@types/node@20.9.0'
- axios-mock-adapter@1.22.0
- axios@1.7.7
- cross-env@7.0.3
- csv-parse@5.5.6
- csv-stringify@6.4.6
- fixpack@4.0.0
- gts@5.2.0
- husky@8.0.3
- jest@29.7.0
- js-yaml@4.1.0
- lint-staged@15.2.10
- luxon@3.4.4
- release-it@16.3.0
- rimraf@5.0.5
- ts-command-line-args@2.5.1
- ts-jest@29.1.1
- typescript-cubic-spline@1.0.1
- typescript@5.2.2
- winston@3.11.0
- zod@3.23.8
status: success
tree:
children:
child:
pipeline:
compute:
- data-import
inputs:
- timestamp: 2023-07-06T00:00
duration: 300
physical-processor: AMD 3020e
outputs:
- timestamp: 2023-07-06T00:00
duration: 300
physical-processor: AMD 3020e
- timestamp: 2023-07-06T00:00
duration: 1
cpu-util: 20
energy: 5
- timestamp: 2023-07-06T00:01
duration: 1
cpu-util: 30
energy: 10
- timestamp: 2023-07-06T00:02
duration: 1
cpu-util: 40
energy: 15
Loading
Loading