Examples

POST /api/config_reports
{
  "config_report": {
    "host": "rhel6n01.corp.com",
    "reported_at": "2010-11-19 02:39:04 UTC",
    "metrics": {},
    "status": {
      "applied": 0,
      "failed": 0,
      "failed_restarts": 0,
      "pending": 0,
      "restarted": 0,
      "skipped": 0
    },
    "logs": [
      {
        "log": {
          "sources": {
            "source": "Puppet"
          },
          "messages": {
            "message": "Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find node 'rhel6n01.corp.com'; cannot compile"
          },
          "level": "err"
        }
      },
      {
        "log": {
          "sources": {
            "source": "Puppet"
          },
          "messages": {
            "message": "Using cached catalog"
          },
          "level": "notice"
        }
      },
      {
        "log": {
          "sources": {
            "source": "Puppet"
          },
          "messages": {
            "message": "Could not retrieve catalog; skipping run"
          },
          "level": "err"
        }
      }
    ]
  }
}
201
{
  "metrics": {},
  "created_at": "2019-11-07 08:35:22 UTC",
  "updated_at": "2019-11-07 08:35:22 UTC",
  "id": 34,
  "host_id": 46,
  "host_name": "rhel6n01.corp.com",
  "reported_at": "2010-11-19 02:39:04 UTC",
  "status": {
    "applied": 0,
    "restarted": 0,
    "failed": 0,
    "failed_restarts": 0,
    "skipped": 0,
    "pending": 0
  },
  "logs": [
    {
      "level": "err",
      "source": {
        "source": "Puppet"
      },
      "message": {
        "message": "Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find node 'rhel6n01.corp.com'; cannot compile"
      }
    },
    {
      "level": "notice",
      "source": {
        "source": "Puppet"
      },
      "message": {
        "message": "Using cached catalog"
      }
    },
    {
      "level": "err",
      "source": {
        "source": "Puppet"
      },
      "message": {
        "message": "Could not retrieve catalog; skipping run"
      }
    }
  ],
  "summary": "Success"
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

config_report
required

Validations:

  • Must be a Hash

config_report[host]
required

Hostname or certname

Validations:

  • Must be a String

config_report[reported_at]
required

UTC time of report

Validations:

  • Must be a String

config_report[status]
required

Hash of status type totals

Validations:

  • Must be a Hash

config_report[metrics]
required

Hash of report metrics, can be just {}

Validations:

  • Must be a Hash

config_report[logs]
optional , nil allowed

Optional array of log hashes

Validations:

  • Must be an array of any type