Skip to content

Conversation

@jtaleric
Copy link
Contributor

This change enables us to track the push performance.

This will be indexed into elasticserach in the index: repo-push-timing

To create the index :

DELETE /repo-push-timing
PUT /repo-push-timing
POST _template/repo-push-timing
{
  "index_patterns": ["repo-push-timing"],
  "mappings":{
    "properties":{
      "timestamp": {
        "type": "date"
      },
      "start_time" :{
        "type": "date"
      },
      "end_time" :{
        "type": "date"
      }
    }
  }
}

This change enables us to track the push performance.

This will be indexed into elasticserach in the index: repo-push-timing

To create the index :
```
DELETE /repo-push-timing
PUT /repo-push-timing
POST _template/repo-push-timing
{
  "index_patterns": ["repo-push-timing"],
  "mappings":{
    "properties":{
      "timestamp": {
        "type": "date"
      },
      "start_time" :{
        "type": "date"
      },
      "end_time" :{
        "type": "date"
      }
    }
  }
}
```
Copy link
Contributor

@kurtismullins kurtismullins left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@kurtismullins kurtismullins merged commit 02daf8d into quay:master Sep 15, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants