Thread

Commits

  1. doc: Add additional index entries for progress reporting views.

  1. doc: index items for pg_stat_progress_xxx views

    Fujii Masao <masao.fujii@oss.nttdata.com> — 2020-11-12T08:05:10Z

    Hi,
    
    The index items for pg_stat_progress_xxx views point to the
    "Viewing Statistics" section, but not to the dedicated section
    (e.g., "ANALYZE Progress Reporting") for each view. IMO this is
    very inconvenient when finding the section describing each
    pg_stat_progress_xxx view, from the index. So what about adding
    new pointer to the section for each view in the index?
    Patch attached.
    
    BTW, other stats views have both pointers in the index.
    
    Regards,
    
    -- 
    Fujii Masao
    Advanced Computing Technology Center
    Research and Development Headquarters
    NTT DATA CORPORATION
    
  2. RE: index items for pg_stat_progress_xxx views

    shinya11.kato@nttdata.com — 2020-11-30T01:57:34Z

    > Hi,
    > 
    > The index items for pg_stat_progress_xxx views point to the "Viewing 
    > Statistics" section, but not to the dedicated section (e.g., "ANALYZE 
    > Progress
    > Reporting") for each view. IMO this is very inconvenient when finding 
    > the section describing each pg_stat_progress_xxx view, from the index. 
    > So what about adding new pointer to the section for each view in the index?
    > Patch attached.
    > 
    > BTW, other stats views have both pointers in the index.
    
    When setting an <indexterm>, it's better to set the zone attribute to indicate which section it's associated with.
    
    For example,
     <indexterm zone="analyze-progress-reporting">
       <primary>pg_stat_progress_analyze</primary>
     </indexterm>
    
    Regards,
    Shinya Kato
    
  3. Re: index items for pg_stat_progress_xxx views

    Fujii Masao <masao.fujii@oss.nttdata.com> — 2020-11-30T06:11:58Z

    
    On 2020/11/30 10:57, Shinya11.Kato@nttdata.com wrote:
    >> Hi,
    >>
    >> The index items for pg_stat_progress_xxx views point to the "Viewing
    >> Statistics" section, but not to the dedicated section (e.g., "ANALYZE
    >> Progress
    >> Reporting") for each view. IMO this is very inconvenient when finding
    >> the section describing each pg_stat_progress_xxx view, from the index.
    >> So what about adding new pointer to the section for each view in the index?
    >> Patch attached.
    >>
    >> BTW, other stats views have both pointers in the index.
    > 
    > When setting an <indexterm>, it's better to set the zone attribute to indicate which section it's associated with.
    > 
    > For example,
    >   <indexterm zone="analyze-progress-reporting">
    >     <primary>pg_stat_progress_analyze</primary>
    >   </indexterm>
    
    Thanks for the review!
    
    I was thinking that the zone attribute doesn't need to be specified
    because the indexterm is defined under the section that the indexterm
    tries to point to. You can see the same situation at, for example,
    the section and indexterm of pg_stat_database. If I'm missing something,
    could you tell me why the zone attribute is necessary in this case?
    
    Regards,
    
    -- 
    Fujii Masao
    Advanced Computing Technology Center
    Research and Development Headquarters
    NTT DATA CORPORATION
    
    
    
    
  4. Re: doc: index items for pg_stat_progress_xxx views

    Michael Paquier <michael@paquier.xyz> — 2020-11-30T07:31:28Z

    On Thu, Nov 12, 2020 at 05:05:10PM +0900, Fujii Masao wrote:
    > The index items for pg_stat_progress_xxx views point to the
    > "Viewing Statistics" section, but not to the dedicated section
    > (e.g., "ANALYZE Progress Reporting") for each view. IMO this is
    > very inconvenient when finding the section describing each
    > pg_stat_progress_xxx view, from the index. So what about adding
    > new pointer to the section for each view in the index?
    > Patch attached.
    
    +1.
    --
    Michael
    
  5. RE: index items for pg_stat_progress_xxx views

    shinya11.kato@nttdata.com — 2020-12-01T04:26:46Z

    >>> Hi,
    >>>
    >>> The index items for pg_stat_progress_xxx views point to the "Viewing
    >>> Statistics" section, but not to the dedicated section (e.g., "ANALYZE
    >>> Progress
    >>> Reporting") for each view. IMO this is very inconvenient when finding
    >>> the section describing each pg_stat_progress_xxx view, from the index.
    >>> So what about adding new pointer to the section for each view in the index?
    >>> Patch attached.
    >>>
    >>> BTW, other stats views have both pointers in the index.
    >>
    >> When setting an <indexterm>, it's better to set the zone attribute to indicate
    >which section it's associated with.
    >>
    >> For example,
    >>   <indexterm zone="analyze-progress-reporting">
    >>     <primary>pg_stat_progress_analyze</primary>
    >>   </indexterm>
    >
    >Thanks for the review!
    >
    >I was thinking that the zone attribute doesn't need to be specified because the
    >indexterm is defined under the section that the indexterm tries to point to. You
    >can see the same situation at, for example, the section and indexterm of
    >pg_stat_database. If I'm missing something, could you tell me why the zone
    >attribute is necessary in this case?
    
    I looked at lines 132-137 of monitoring.sgml, and I saw that zone is set for indexterm after <sect1>.
    However, I haven't found the zone set for indexterm after <sect2>, so you may be right.
    
    Regards,
    Shinya Kato
    
    
    
  6. Re: index items for pg_stat_progress_xxx views

    Fujii Masao <masao.fujii@oss.nttdata.com> — 2020-12-01T05:06:13Z

    
    On 2020/12/01 13:26, Shinya11.Kato@nttdata.com wrote:
    >>>> Hi,
    >>>>
    >>>> The index items for pg_stat_progress_xxx views point to the "Viewing
    >>>> Statistics" section, but not to the dedicated section (e.g., "ANALYZE
    >>>> Progress
    >>>> Reporting") for each view. IMO this is very inconvenient when finding
    >>>> the section describing each pg_stat_progress_xxx view, from the index.
    >>>> So what about adding new pointer to the section for each view in the index?
    >>>> Patch attached.
    >>>>
    >>>> BTW, other stats views have both pointers in the index.
    >>>
    >>> When setting an <indexterm>, it's better to set the zone attribute to indicate
    >> which section it's associated with.
    >>>
    >>> For example,
    >>>    <indexterm zone="analyze-progress-reporting">
    >>>      <primary>pg_stat_progress_analyze</primary>
    >>>    </indexterm>
    >>
    >> Thanks for the review!
    >>
    >> I was thinking that the zone attribute doesn't need to be specified because the
    >> indexterm is defined under the section that the indexterm tries to point to. You
    >> can see the same situation at, for example, the section and indexterm of
    >> pg_stat_database. If I'm missing something, could you tell me why the zone
    >> attribute is necessary in this case?
    > 
    > I looked at lines 132-137 of monitoring.sgml, and I saw that zone is set for indexterm after <sect1>.
    > However, I haven't found the zone set for indexterm after <sect2>, so you may be right.
    
    So you agree not to add zone attribute in this case?
    
    Regards,
    
    -- 
    Fujii Masao
    Advanced Computing Technology Center
    Research and Development Headquarters
    NTT DATA CORPORATION
    
    
    
    
  7. RE: index items for pg_stat_progress_xxx views

    shinya11.kato@nttdata.com — 2020-12-01T05:14:29Z

    >>>>> Hi,
    >>>>>
    >>>>> The index items for pg_stat_progress_xxx views point to the
    >>>>> "Viewing Statistics" section, but not to the dedicated section
    >>>>> (e.g., "ANALYZE Progress
    >>>>> Reporting") for each view. IMO this is very inconvenient when
    >>>>> finding the section describing each pg_stat_progress_xxx view, from the
    >index.
    >>>>> So what about adding new pointer to the section for each view in the
    >index?
    >>>>> Patch attached.
    >>>>>
    >>>>> BTW, other stats views have both pointers in the index.
    >>>>
    >>>> When setting an <indexterm>, it's better to set the zone attribute
    >>>> to indicate
    >>> which section it's associated with.
    >>>>
    >>>> For example,
    >>>>    <indexterm zone="analyze-progress-reporting">
    >>>>      <primary>pg_stat_progress_analyze</primary>
    >>>>    </indexterm>
    >>>
    >>> Thanks for the review!
    >>>
    >>> I was thinking that the zone attribute doesn't need to be specified
    >>> because the indexterm is defined under the section that the indexterm
    >>> tries to point to. You can see the same situation at, for example,
    >>> the section and indexterm of pg_stat_database. If I'm missing
    >>> something, could you tell me why the zone attribute is necessary in this case?
    >>
    >> I looked at lines 132-137 of monitoring.sgml, and I saw that zone is set for
    >indexterm after <sect1>.
    >> However, I haven't found the zone set for indexterm after <sect2>, so you may
    >be right.
    >
    >So you agree not to add zone attribute in this case?
    
    Yes, I think it's nice.
    
    Regards,
    Shinya Kato
    
  8. Re: index items for pg_stat_progress_xxx views

    Fujii Masao <masao.fujii@oss.nttdata.com> — 2020-12-01T08:21:15Z

    
    On 2020/12/01 14:14, Shinya11.Kato@nttdata.com wrote:
    >>>>>> Hi,
    >>>>>>
    >>>>>> The index items for pg_stat_progress_xxx views point to the
    >>>>>> "Viewing Statistics" section, but not to the dedicated section
    >>>>>> (e.g., "ANALYZE Progress
    >>>>>> Reporting") for each view. IMO this is very inconvenient when
    >>>>>> finding the section describing each pg_stat_progress_xxx view, from the
    >> index.
    >>>>>> So what about adding new pointer to the section for each view in the
    >> index?
    >>>>>> Patch attached.
    >>>>>>
    >>>>>> BTW, other stats views have both pointers in the index.
    >>>>>
    >>>>> When setting an <indexterm>, it's better to set the zone attribute
    >>>>> to indicate
    >>>> which section it's associated with.
    >>>>>
    >>>>> For example,
    >>>>>     <indexterm zone="analyze-progress-reporting">
    >>>>>       <primary>pg_stat_progress_analyze</primary>
    >>>>>     </indexterm>
    >>>>
    >>>> Thanks for the review!
    >>>>
    >>>> I was thinking that the zone attribute doesn't need to be specified
    >>>> because the indexterm is defined under the section that the indexterm
    >>>> tries to point to. You can see the same situation at, for example,
    >>>> the section and indexterm of pg_stat_database. If I'm missing
    >>>> something, could you tell me why the zone attribute is necessary in this case?
    >>>
    >>> I looked at lines 132-137 of monitoring.sgml, and I saw that zone is set for
    >> indexterm after <sect1>.
    >>> However, I haven't found the zone set for indexterm after <sect2>, so you may
    >> be right.
    >>
    >> So you agree not to add zone attribute in this case?
    > 
    > Yes, I think it's nice.
    
    So I pushed the patch. Thanks!
    
    Regards,
    
    -- 
    Fujii Masao
    Advanced Computing Technology Center
    Research and Development Headquarters
    NTT DATA CORPORATION