Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.97 KB

ProjectError.md

File metadata and controls

21 lines (17 loc) · 1.97 KB

ProjectError

Properties

Name Type Description Notes
code string A stable token that uniquely identifies this class of error, ignoring parameter values. Error message text may vary due to parameters or localization, but error codes do not. For example, a "File not found" error will have the same error code regardless of the filename in question or the user's display language [optional]
severity string Severity: fatal, error, warning, info, success [optional]
kind string Error classification: syntax, deprecation, model_configuration, etc [optional]
message string Error message which may contain information such as dashboard or model names that may be considered sensitive in some use cases. Avoid storing or sending this message outside of Looker [optional]
field_name string The field associated with this error [optional]
file_path string Name of the file containing this error [optional]
line_number int Line number in the file of this error [optional]
model_id string The model associated with this error [optional]
explore string The explore associated with this error [optional]
help_url string A link to Looker documentation about this error [optional]
params object Error parameters [optional]
sanitized_message string A version of the error message that does not contain potentially sensitive information. Suitable for situations in which messages are stored or sent to consumers outside of Looker, such as external logs. Sanitized messages will display "(?)" where sensitive information would appear in the corresponding non-sanitized message [optional]

[Back to Model list] [Back to API list] [Back to README]