Thread: small typo in DTrace docs

small typo in DTrace docs

From
Euler Taveira de Oliveira
Date:
Hi,

Attached is a small patch to fix some typos in probes.d path.


--
   Euler Taveira de Oliveira
   http://www.timbira.com/
Index: doc/src/sgml/monitoring.sgml
===================================================================
RCS file: /a/pgsql/dev/anoncvs/pgsql/doc/src/sgml/monitoring.sgml,v
retrieving revision 1.59
diff -c -r1.59 monitoring.sgml
*** doc/src/sgml/monitoring.sgml    15 May 2008 00:17:39 -0000    1.59
--- doc/src/sgml/monitoring.sgml    13 Jun 2008 04:42:57 -0000
***************
*** 1190,1196 ****

     <step>
      <para>
!      Add the probe definitons to <filename>src/backend/src/utils/probes.d</>
      </para>
     </step>

--- 1190,1196 ----

     <step>
      <para>
!      Add the probe definitons to <filename>src/backend/utils/probes.d</>
      </para>
     </step>

***************
*** 1224,1230 ****
     <step>
      <para>
       Add <quote>probe transaction__start(int);</quote> to
!      <filename>src/backend/src/utils/probes.d</>, and it should look like the following:
  <programlisting>
  provider postgresql {
        ...
--- 1224,1230 ----
     <step>
      <para>
       Add <quote>probe transaction__start(int);</quote> to
!      <filename>src/backend/utils/probes.d</>, and it should look like the following:
  <programlisting>
  provider postgresql {
        ...
***************
*** 1247,1253 ****
      <para>
       At compile time, transaction__start is converted to a macro called
       TRACE_POSTGRESQL_TRANSACTION_START, and it resides in
!      <filename>src/backend/src/utils/probes.h</>. Before recompiling, add
       the single line macro to the appropriate location in the source code.
       In this case, it looks like the following:
      </para>
--- 1247,1253 ----
      <para>
       At compile time, transaction__start is converted to a macro called
       TRACE_POSTGRESQL_TRANSACTION_START, and it resides in
!      <filename>src/backend/utils/probes.h</>. Before recompiling, add
       the single line macro to the appropriate location in the source code.
       In this case, it looks like the following:
      </para>

Re: small typo in DTrace docs

From
Neil Conway
Date:
On Fri, 2008-06-13 at 01:49 -0300, Euler Taveira de Oliveira wrote:
> Attached is a small patch to fix some typos in probes.d path.

Applied, thanks.

-Neil