COLUMN_RENAME_MAP = {
"@Host": "Актив",
"Host.Fqdn": "Имя",
"Host.IpAddress": "Сетевой адрес",
"Host.@Vulners.Status": "Статус уязвимости",
"Host.OsName": "Наименование ОС",
"Host.OsVersion": "Версия ОС",
"Host.@AuditTime": "Дата и время последнего аудита",
"Host.@Vulners.CVEs": "Уязвимость CVE",
"Host.@Vulners.Ids": "Уязвимость БДУ",
"Host.@Vulners.SeverityRating": "Уровень опасности уязвимости",
"Host.@Vulners.IssueTime": "Дата публикации паспорта уязвимости",
"Host.@Vulners.Description": "Описание уязвимости",
"Host.@Vulners.VulnerableEntity.Name": "Название уязвимой сущности",
"Host.@Vulners.VulnerableEntity.Version": "Версия уязвимой сущности",
"Host.@Vulners.VulnerableEntity.Path": "Путь уязвимой сущности",
"Host.@Vulners.Patch": "Патч",
"Host.@Vulners.HowToFix": "Как исправить",
я поправил, и так же сам запрос корректный
select(@Host, Host.Fqdn, Host.IpAddress, Host.@Vulners.Status, Host.OsName, Host.OsVersion, Host.@AuditTime, Host.@Vulners.CVEs, Host.@Vulners.Ids, Host.@Vulners.SeverityRating, Host.@Vulners.IssueTime, Host.@Vulners.Description, Host.@Vulners.VulnerableEntity.Name, Host.@Vulners.VulnerableEntity.Version, Host.@Vulners.VulnerableEntity.Path, Host.@Vulners.Patch, Host.@Vulners.HowToFix) | filter(Host.@Vulners.Status = "new") | filter(Host.@Vulners.SeverityRating != "None") | filter(Host.@Vulners.Ids in [{bdu_list}]) | limit(0)