v1

latestOpenAPI 3.0.1Apache 2.02026-07-17111176225.7 KB
System

trigger feeds operations

Execute a synchronous feed sync operation. The response will block until complete, then return the result summary.

post/system/feeds

Query parameters

flushboolean

instruct system to flush existing data feeds records from anchore-engine

syncboolean

instruct system to re-sync data feeds

Response

Feeds operation success

feedstring

The name of the feed synced

status'success' | 'failure'

The result of the sync operations, either co

total_time_secondsnumber

The duratin, in seconds, of the sync of the feed, the sum of all the group syncs

Example response

[
  {
    "feed": "feed",
    "total_time_seconds": 0.8008281904610115,
    "groups": [
      {
        "total_time_seconds": 5.962133916683182,
        "updated_image_count": 6,
        "updated_record_count": 1,
        "group": "group",
        "status": "success"
      },
      {
        "total_time_seconds": 5.962133916683182,
        "updated_image_count": 6,
        "updated_record_count": 1,
        "group": "group",
        "status": "success"
      }
    ],
    "status": "success"
  }
]