Crawl
A single on-demand classification scan (crawl) over a set of workloads, including its lifecycle status, progress, and aggregate classification results.
Fields
| Field | Type | Description |
|---|---|---|
| analyzerGroupResults | [AnalyzerGroupResult!]! | Per-analyzer-group classification result counts for the crawl. |
| analyzerResults | [AnalyzerResult!]! | Per-analyzer classification result counts for the crawl. |
| crawlObj | CrawlObj! | A single per-workload crawl object in this crawl. |
| crawlObjConnection | CrawlObjConnection! | The per-workload crawl objects in this crawl. |
| dataCategoryIds | [String!]! | Data category IDs selected for the crawl at Start time. Populated only on the single-crawl read path (GetCrawl) for v2 crawls; empty on the list path and for v1 crawls. |
| endTime | Long! | End time of the crawl, in epoch seconds. Zero while the crawl is running. |
| failedObjectCount | Int! | Number of workloads that failed to be crawled. |
| fileResultConnection | FileResultConnection! | Browses the file classification results in this crawl. |
| filesAnalyzeable | Long! | Number of files eligible for classification analysis. |
| filesAnalyzed | Long! | Number of files that have been analyzed so far. |
| filesTotal | Long! | Total number of files discovered by the crawl. |
| filesWithHits | Long! | Number of analyzed files that had at least one classification hit. |
| id | String! | Unique identifier of the crawl. |
| name | String! | Human-readable name of the crawl. |
| progress | Float! | Fraction of the crawl completed, from 0.0 to 1.0. |
| snappableTypeSummaries | [SnappableTypeSummary!]! | Per-workload-type summary counts for this crawl. |
| startTime | Long! | Start time of the crawl, in epoch seconds. |
| status | CrawlStatusEnum! | Current lifecycle status of the crawl. |
| totalHits | Int! | Total number of classification hits across all analyzers. |
| user | User | The user who started this crawl. |
Field Arguments
| Field | Argument | Type | Description |
|---|---|---|---|
| crawlObj | snappableFid (required) | String! | The unique identifier of the workload. |
| fileResultConnection | first | Int | Returns the first n elements from the list. |
| fileResultConnection | after | String | Returns the elements in the list that occur after the specified cursor. |
| fileResultConnection | last | Int | Returns the last n elements from the list. |
| fileResultConnection | before | String | Returns the elements in the list that occur before the specified cursor. |
| fileResultConnection | filter | ListFileResultFiltersInput | |
| fileResultConnection | sort | FileResultSortInput | Sorts to apply when listing file results. |
Used By
Queries
- query: crawl
- query: crawls (via connection)