Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/springmt/ecs-rails-sample


https://github.com/springmt/ecs-rails-sample

Last synced: about 1 month ago
JSON representation

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';
```