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

# إعدادات الجلسة لـ query_profiler_*

> إعدادات جلسة ClickHouse ضمن المجموعة المُولَّدة query_profiler_*.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>النوع</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>القيمة الافتراضية</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          يمكن تغييره دون إعادة التشغيل
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

هذه الإعدادات متوفّرة في [system.settings](/docs/ar/reference/system-tables/settings)، وهي مولَّدة تلقائيًا من [الشفرة المصدرية](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.cpp).

<div id="query_profiler_cpu_time_period_ns">
  ## query\_profiler\_cpu\_time\_period\_ns
</div>

<SettingsInfoBlock type="UInt64" default_value="1000000000" />

يحدد الفترة الزمنية لمؤقّت ساعة CPU الخاص بـ [مُحلّل الاستعلام](/docs/ar/concepts/features/performance/troubleshoot/sampling-query-profiler). لا يحسب هذا المؤقّت إلا وقت CPU.

القيم الممكنة:

* عدد صحيح موجب من النانوثواني.

  القيم الموصى بها:

  * 10000000 (100 مرة في الثانية) نانوثانية أو أكثر للاستعلامات المفردة.
  * 1000000000 (مرة واحدة في الثانية) للتنميط على مستوى المجموعة بالكامل.

* 0 لإيقاف المؤقّت.

انظر أيضًا:

* جدول النظام [trace\_log](/docs/ar/reference/system-tables/trace_log)

<div id="query_profiler_real_time_period_ns">
  ## query\_profiler\_real\_time\_period\_ns
</div>

<SettingsInfoBlock type="UInt64" default_value="1000000000" />

يضبط الفترة الزمنية لمؤقّت الساعة الحقيقية الخاص بـ [مُحلّل الاستعلام](/docs/ar/concepts/features/performance/troubleshoot/sampling-query-profiler). يقيس مؤقّت الساعة الحقيقية الوقت الفعلي المنقضي.

القيم الممكنة:

* عدد صحيح موجب، بالنانوثانية.

  القيم الموصى بها:

  * 10000000 (100 مرة في الثانية) نانوثانية أو أقل للاستعلامات المفردة.
  * 1000000000 (مرة واحدة في الثانية) للتنميط على مستوى المجموعة بالكامل.

* 0 لإيقاف تشغيل المؤقّت.

انظر أيضًا:

* جدول النظام [trace\_log](/docs/ar/reference/system-tables/trace_log)

Cloud default value: `3000000000`.
