-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump to 7.10 * Add github actions * Refactor * Add release notes for ODFE 1.12 * Use env in github actions * Remove target in plugin helpers config * Update readme * Add doc link
- Loading branch information
1 parent
b95d4bf
commit 6449ee5
Showing
13 changed files
with
268 additions
and
4,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*Issue #, if available:* | ||
|
||
*Description of changes:* | ||
|
||
|
||
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
|
||
name: Release Trace Analytics Artifacts | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
env: | ||
PLUGIN_NAME: opendistroTraceAnalyticsKibana | ||
OD_VERSION: 1.12.0.0 | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Checkout Kibana | ||
uses: actions/checkout@v1 | ||
with: | ||
repository: opendistro-for-elasticsearch/kibana-oss | ||
ref: 7.10.0 | ||
token: ${{secrets.OD_ACCESS}} | ||
path: kibana | ||
|
||
- name: Checkout Plugin | ||
uses: actions/checkout@v1 | ||
with: | ||
path: kibana/plugins/trace-analytics | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '10.22.1' | ||
|
||
- name: Kibana Pluign Bootstrap | ||
run: | | ||
yarn kbn bootstrap | ||
- name: Build Artifact | ||
run: | | ||
yarn build | ||
mv ./build/*.zip ./build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}.zip | ||
artifact=`ls ./build/*.zip` | ||
aws s3 cp $artifact s3://artifacts.opendistroforelasticsearch.amazon.com/downloads/kibana-plugins/opendistro-trace-analytics/ | ||
aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/downloads/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
name: Test and Build Trace Analytics | ||
|
||
on: [pull_request, push] | ||
|
||
env: | ||
PLUGIN_NAME: opendistroTraceAnalyticsKibana | ||
OD_VERSION: 1.12.0.0 | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Kibana | ||
uses: actions/checkout@v1 | ||
with: | ||
repository: elastic/kibana | ||
ref: v7.10.0 | ||
path: kibana | ||
- name: Checkout Plugin | ||
uses: actions/checkout@v1 | ||
with: | ||
path: kibana/plugins/trace-analytics | ||
- name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '10.22.1' | ||
- name: Kibana Pluign Bootstrap | ||
run: | | ||
yarn kbn bootstrap | ||
- name: Build Artifact | ||
run: | | ||
yarn build | ||
mv ./build/*.zip ./build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}.zip | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: trace-analytics | ||
path: ./build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"buildSourcePatterns": [ | ||
"serverSourcePatterns": [ | ||
"package.json", | ||
"yarn.lock", | ||
"tsconfig.json", | ||
"{public,server}/**/*", | ||
"kibana.json", | ||
"target/**/*", | ||
"common/**/*" | ||
"common/**/*", | ||
"public/**/*", | ||
"server/**/*", | ||
"kibana.json" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,31 @@ | ||
{ | ||
"name": "opendistro-trace-analytics", | ||
"version": "0.0.4", | ||
"name": "opendistro-trace-analytics-kibana", | ||
"version": "1.12.0.0", | ||
"kibana": { | ||
"version": "7.9.1", | ||
"version": "7.10.0", | ||
"templateVersion": "1.0.0" | ||
}, | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"kbn": "node ../../scripts/kbn", | ||
"lint": "eslint .", | ||
"test:cypress": "cypress run", | ||
"build": "yarn plugin-helpers build", | ||
"plugin-helpers": "node ../../scripts/plugin_helpers" | ||
}, | ||
"dependencies": { | ||
"@types/react-plotly.js": "^2.2.4", | ||
"cypress": "^5.6.0", | ||
"lodash": "^4.17.20", | ||
"plotly.js": "^1.54.1", | ||
"react": "^16.12.0", | ||
"react-graph-vis": "^1.0.5", | ||
"react-plotly.js": "^2.4.0" | ||
}, | ||
"scripts": { | ||
"kbn": "node ../../scripts/kbn", | ||
"lint": "eslint .", | ||
"start": "plugin-helpers start", | ||
"test:server": "plugin-helpers test:server", | ||
"test:browser": "plugin-helpers test:browser", | ||
"build": "plugin-helpers build" | ||
}, | ||
"devDependencies": { | ||
"@elastic/eslint-config-kibana": "link:../../packages/eslint-config-kibana", | ||
"@elastic/eslint-import-resolver-kibana": "link:../../packages/kbn-eslint-import-resolver-kibana", | ||
"@kbn/plugin-helpers": "link:../../packages/kbn-plugin-helpers", | ||
"cypress": "^5.0.0", | ||
"eslint": "^6.8.0", | ||
"eslint-plugin-babel": "^5.2.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^23.8.2", | ||
"eslint-plugin-jsx-a11y": "^6.1.2", | ||
"eslint-plugin-mocha": "^6.3.0", | ||
"eslint-plugin-no-unsanitized": "^3.0.2", | ||
"eslint-plugin-prefer-object-spread": "^1.2.1", | ||
"eslint-plugin-react": "^7.11.1", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"typescript": "3.7.2" | ||
"@types/react-plotly.js": "^2.2.4" | ||
}, | ||
"engines": { | ||
"node": "10.22.0", | ||
"node": "10.22.1", | ||
"yarn": "^1.21.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...se-notes/opendistro-for-elasticsearch-trace-analytics.release-notes-1.12.0.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## 2020-11-18 Version 1.12.0.0 | ||
|
||
### Features | ||
* Rebase trace analytics to main branch ([#1](https://github.com/opendistro-for-elasticsearch/trace-analytics/pull/1)) | ||
|
||
|
||
### Enhancements | ||
* Move service map UI and update status.code definition ([#3](https://github.com/opendistro-for-elasticsearch/trace-analytics/pull/3)) | ||
|
||
|
||
### Maintenance | ||
* Upgrade to ODFE 1.12.0 ([#5](https://github.com/opendistro-for-elasticsearch/trace-analytics/pull/5)) |
Oops, something went wrong.