Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/springmt/ecs-rails-sample
https://github.com/springmt/ecs-rails-sample
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/springmt/ecs-rails-sample
- Owner: SpringMT
- Created: 2021-08-11T04:41:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-08T23:09:29.000Z (almost 2 years ago)
- Last Synced: 2024-12-07T00:55:11.040Z (about 2 months ago)
- Language: Ruby
- Size: 98.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
## CIAnalyzer schema
```
CREATE EXTERNAL TABLE ci_analysis_tests (
workflowId string,
workflowRunId string,
buildNumber int,
workflowName string,
createdAt string,
branch string,
service string,
status string,
successCount int,
testSuites struct<
`name`: string,
`time`: double,
tests: int,
failures: int,
testsuite: array<
struct<
`name`: string,
`time`: double,
tests: int,
failures: int,
skipped: int,
`timestamp`: string,
testcase: array<
struct<
classname: string,
`name`: string,
`time`: double,
successCount: int,
status: string
>>
>>
>
)
ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe'
LOCATION 's3://path/to/bucket';
```