> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kasoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# integrityResetTampering

> 在检测到日志篡改或应用程序数据库更改后，重置知行之桥中的篡改显迹警告状态。

允许管理员在检测到日志篡改时，或在应用程序数据库从一个数据库更改为另一个数据库时（请参阅[配置跨平台版应用程序数据库](../../getting-started/installation/cross-platform-edition#configure-the-application-database)或[配置 .NET 版应用程序数据库](../../getting-started/installation/windows-edition#configuring-the-application-database)了解特定平台信息），重置[篡改显迹](../../getting-started/administration/activity#tamper-evident-logging)警告状态。这允许管理员重新建立新的信任哈希链。

## 必需的参数

* **justification**: 执行重置的原因。

## 可选的参数

* **logName**: 要重置哈希链的日志名称。目前，唯一允许的值是 `app_audits`，未来计划增加更多选项。

## 示例

重置[审计日志](../../getting-started/administration/activity#audit-logs)哈希链。

```xml theme={null}
<arc:set attr="reset.logName" value="app_audits" />
<arc:set attr="reset.justification" value="Tampering has been detected and the situation has been remedied." />
<arc:call op="integrityResetTampering" in="reset" />
```

由于应用程序更换了数据库而重置哈希链。

```xml theme={null}
<arc:set attr="reset.justification" value="Resetting because we have moved to a new backend database." />
<arc:call op="integrityResetTampering" in="reset" />
```
