> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/docs/docs-ja/hajimeni/core-functionalities/how-is-fix-time-calculated.md).

# 修正時間はどのように計算されるか

### Fix timeとは何ですか？

Fix timeは、セキュリティ問題の修正にどれくらい時間がかかるかの大まかな見積もりです。正確なものではなく、必要な相対的な作業量に基づいて優先順位付けと計画を立てるのに役立つように設計されています。

### 計算方法

Aikidoでは、問題の種類ごとにカスタムアルゴリズムを使用しています。仕組みは次のとおりです：

#### 🧬 依存関係（SCA）の問題

Fix timeは、バージョンアップグレードの種類によって異なります：

* 小規模アップグレード（例：4.5.1 → 4.5.2） → 5～15分
* 大規模アップグレード（例：1.0 → 3.0、またはEOL境界をまたぐ場合） → 少なくとも1時間

#### 🔍 SAST（コードの問題）

計算式：問題数 × 問題タイプごとの固定時間

例：

* SQLインジェクション ≈ 1件あたり30分
* シークレット ≈ 1件あたり10分

#### ☁️ クラウドの問題

SASTと同様のロジックです。問題タイプごとの固定値に件数を掛けます。

#### 🔑 シークレット

問題ごとに1つの固定見積もりがあります（例：キーのローテーション = 5～10分）。

{% hint style="success" %}
〜がある場合 [Aikido AutoFix ](/docs/docs-ja/autofix-to/overview-aikido-autofix.md)利用可能であれば、実際の修正時間はより短くなります
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.aikido.dev/docs/docs-ja/hajimeni/core-functionalities/how-is-fix-time-calculated.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
