Skip to content

Commit

Permalink
Update prosoul-grimoirelab.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vchrombie authored Aug 20, 2020
1 parent ae4f207 commit 629a006
Showing 1 changed file with 25 additions and 17 deletions.
42 changes: 25 additions & 17 deletions doc/prosoul-grimoirelab.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,17 @@ Setup alias for all the enriched indices.
```
POST /_aliases
{
"actions" : [
{ "add" : {
"indices" : ["grimoirelab_gitqm_enriched",
"grimoirelab_githubqm_issues_enriched"],
"alias" : "qm-enriched-data"
}
}
]
"actions": [
{
"add": {
"indices": [
"grimoirelab_gitqm_enriched",
"grimoirelab_githubqm_issues_enriched"
],
"alias": "all_qm_data"
}
}
]
}
```

Expand All @@ -104,7 +107,7 @@ The next step is to create the assessment using prosoul assessment web form.

- Quality Model: Developer Quality Model
- Elasticsearch URL: https://localhost:9200/
- Index with metrics data: qm-enriched-index
- Index with metrics data: all_qm_data

Click on `Create` and the assessment will be completed in a while.

Expand All @@ -116,14 +119,19 @@ Setup alias for all the qm results indices.
```
POST /_aliases
{
"actions" : [
{ "add" : {
"indices" : ["qm-1",
"qm-2"],
"alias" : "qm-results-data"
}
}
]
"actions": [
{
"add": {
"indices": [
"all_qm_data_null_scores",
"all_qm_data_null_scores_by_quarters",
"all_qm_data_scores",
"all_qm_data_scores_by_quarters"
],
"alias": "all_qm_results"
}
}
]
}
```

Expand Down

0 comments on commit 629a006

Please sign in to comment.