create_deployment
Record new application deployments in New Relic to track release changes, monitor performance impact, and maintain deployment history for better observability.
Instructions
Record a new deployment for an application
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | ||
| revision | Yes | ||
| description | No | ||
| user | No | ||
| changelog | No |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "string"
},
"changelog": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Changelog"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"revision": {
"title": "Revision",
"type": "string"
},
"user": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "User"
}
},
"required": [
"app_id",
"revision"
],
"type": "object"
}