{"id":33951,"date":"2024-07-11T18:00:00","date_gmt":"2024-07-11T16:00:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=33951"},"modified":"2024-07-11T12:51:57","modified_gmt":"2024-07-11T10:51:57","slug":"oracle-21c-attention-log-useful-or-superflous","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/","title":{"rendered":"Oracle 21c: Attention Log &#8211; Useful or Superflous?"},"content":{"rendered":"\n<p>Attention.log is a feature, which was introduced in Oracle Database 21c, designed to capture high-level summaries of significant database events and activities. It differs from the alert.log in following points:<\/p>\n\n\n\n<p><strong>High-Level Summaries<\/strong>: The attention.log focuses on summarizing critical and significant events rather than logging every minor detail, including database startups and shutdowns, major configuration changes, errors or warnings that need immediate attention.<\/p>\n\n\n\n<p><strong>Consolidation of Critical Events<\/strong>: It provides a consolidated view of the most important events, making it easier for database administrators to quickly review and identify critical issues without rummaging through through detailed logs.<\/p>\n\n\n\n<p><strong>Accessibility<\/strong>: Designed to be easily readable and quickly accessible for a high-level overview of the database\u2019s health and significant activities.<\/p>\n\n\n\n<p><strong>Complementary to Alert Log<\/strong>: While the attention.log highlights major events, it complements the alert.log rather than replacing it. Database administrators can use the attention.log for a quick overview and the alert.log for detailed diagnostics.<\/p>\n\n\n\n<p><strong>Location<\/strong>: Like the alert.log, the attention.log is also found in the DIAGNOSTIC_DEST directory, usually under $ORACLE_BASE\/diag\/rdbms\/&lt;db_name&gt;\/&lt;instance_name&gt;\/log.<\/p>\n\n\n\n<p>It can be very helpful for not so experienced database administrators or to get a quick overview in difficult or unexpected cases, as I had on a productive environment some time ago: an internal error had occurred, the database crashed and the alert.log was far too large to read without splitting it up which of course makes troubleshooting unnecessarily difficult (under time pressure).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-get-information-about-the-attention-log\"><strong>How to get information about the attention.log:<\/strong><\/h2>\n\n\n\n<p>The location of the attention log can be found by querying the&nbsp;<code>V$DIAG_INFO<\/code>&nbsp;view, it is in the same directory as the alert. log, (since Oracle 11g: $OH\/diag\/rdbms&#8230; )<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>select name, value\nfrom   v$diag_info\nwhere  name = 'Attention Log';\n\nNAME                      VALUE\n--------------------- -------------------------------------------------------------\nAttention Log         \/u01\/app\/oracle\/diag\/rdbms\/cdb1\/cdb1\/trace\/attention_cdb1.log<\/code><\/pre>\n\n\n\n<p>The oracle documentation proposes to query the V$DIAG_ALERT_EXT view to get relevant attention.log information, but it is a view over the XML-based alert.log (in the Automatic Diagnostic Repository for the current container), not the attention log! But nevertheless we can get very useful information out of it, divided into the same categories as in the attention.log:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>--message_type 2=INCIDENT_ERROR, message_type 3=ERROR\nSELECT message_type, message_level, message_text\nFROM V$DIAG_ALERT_EXT \nWHERE message_type in (2, 3);\n\nMESSAGE_TYPE MESSAGE_LEVEL MESSAGE_TEXT\n------------ ------------- ---------------------------------------------------------\n           3    4294967295 PMON (ospid: 3565): terminating the instance due to ORA error 471 <\/code><\/pre>\n\n\n\n<p>Querying <code>V$DIAG_ALERT_EXT<\/code> the most important labels are: <\/p>\n\n\n\n<p>MESSAGE_LEVEL:<\/p>\n\n\n\n<p><code>1<\/code>:&nbsp;<code>CRITICAL<\/code>: critical errors<\/p>\n\n\n\n<p><code>2<\/code>:&nbsp;<code>SEVERE<\/code>: severe errors<\/p>\n\n\n\n<p><code>8<\/code>:&nbsp;<code>IMPORTANT<\/code>: important message<\/p>\n\n\n\n<p><code>16<\/code>:&nbsp;<code>NORMAL<\/code>: normal message<\/p>\n\n\n\n<p>MESSAGE_TYPE:<\/p>\n\n\n\n<p><code>1<\/code>:&nbsp;<code>UNKNOWN<\/code>: essentially the NULL type<\/p>\n\n\n\n<p><code>2<\/code>:&nbsp;<code>INCIDENT_ERROR<\/code>: the program has encountered an error for some internal or unexpected reason, and it must be reported to Oracle Support<\/p>\n\n\n\n<p><code>3<\/code>:\u00a0<code>ERROR<\/code>: an error of some kind has occurred<\/p>\n\n\n\n<p><code>4<\/code>:\u00a0<code>WARNING<\/code>: an action occurred or a condition was discovered that should be reviewed and may require action<\/p>\n\n\n\n<p><code>5<\/code>:\u00a0<code>NOTIFICATION<\/code>: reports a normal action or event, this could be a user action such as &#8220;logon completed&#8221;<\/p>\n\n\n\n<p><code>6<\/code>:\u00a0<code>TRACE<\/code>: output of a diagnostic trace<\/p>\n\n\n\n<p>Opening the attention.log with vi<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vi \/u01\/app\/oracle\/diag\/rdbms\/cdb1\/cdb1\/trace\/attention_cdb1.log<\/code><\/pre>\n\n\n\n<p>will give you an output like this (JSON formatted), which is obviously pretty comfortable to read:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\nIMMEDIATE : \"PMON (ospid: 3565): terminating the instance due to ORA error 471\" \nCAUSE: \"PMON detected fatal background process death\"\nACTION: \"Termination of fatal background is not recommended, Investigate cause of process termination\"\nCLASS : CDB-INSTANCE \/ CDB_ADMIN \/ ERROR \/ DBAL-35782660\nTIME : 2024-07-10T14:15:16.159-07:00\nINFO : \"Some additional data on error PMON error\"\n}\n<\/code><\/pre>\n\n\n\n<p>It is possible to convert the output into plain text format:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jq -r '.tags&#091;].name' input.json &gt; output.txt<\/code><\/pre>\n\n\n\n<p>which gives us a formatted expression that might look like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>2024-07-01T10:15:32.123456+00:00\n&#091;SEVERE] ORA-00600: internal error code, arguments: &#091;1234], &#091;], &#091;], &#091;], &#091;], &#091;], &#091;], &#091;], &#091;], &#091;], &#091;]\nAction: Please contact Oracle Support Services.\n\n2024-07-01T11:20:45.789012+00:00\n&#091;CRITICAL] ORA-01578: ORACLE data block corrupted (file # 23, block # 220734)\nAction: This error signifies a corrupted data block. The data block has been marked as corrupt. Consider restoring from backup.\n\n2024-07-02T08:42:27.654321+00:00\n&#091;ALERT] Database instance crashed due to unexpected termination.\nAction: Investigate the cause of the instance termination. Review related logs and diagnostic information.\n\n2024-07-03T12:34:56.987654+00:00\n&#091;INFO] System global area (SGA) resized. New size: 68GB.\nAction: No immediate action required. Monitor performance and stability.<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-key-points\"><strong>Key Points<\/strong><\/h2>\n\n\n\n<p><strong>Severity Levels<\/strong>: Entries are tagged with severity levels such as [SEVERE], [CRITICAL], [IMPORTANT] or [NORMAL] to highlight their importance.<\/p>\n\n\n\n<p><strong>Timestamp<\/strong>: Each entry begins with a timestamp in ISO 8601 format.<\/p>\n\n\n\n<p><strong>Messages and Actions<\/strong>: Each entry provides a brief description of the event and recommended actions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-benefits-for-dbas\"><strong>Benefits for DBAs<\/strong><\/h2>\n\n\n\n<p><strong>Quick Identification<\/strong>: The attention.log helps DBAs quickly identify and respond to critical issues without sifting through the more detailed alert.log.<\/p>\n\n\n\n<p><strong>Conciseness<\/strong>: It captures only the most significant events, reducing noise and making it easier to focus on urgent matters.<\/p>\n\n\n\n<p><strong>Complementary to <\/strong><strong>alert.log<\/strong>: It complements the alert.log by summarizing critical events, while the alert.log continues to provide detailed information for troubleshooting.<\/p>\n\n\n\n<p>Overall, the attention.log is a useful addition for DBAs, enabling more efficient monitoring and quicker responses to significant database events.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-sources-links-amp-blogs\"><strong>Sources, Links &amp; Blogs:<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/oracle-base.com\/articles\/21c\/attention-log-oracle-database-21c\">https:\/\/oracle-base.com\/articles\/21c\/attention-log-oracle-database-21c<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/blogs.oracle.com\/cloud-infrastructure\/post\/alert-log-support-for-oci-database-management\">https:\/\/blogs.oracle.com\/cloud-infrastructure\/post\/alert-log-support-for-oci-database-management<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/nfcon\/management-solutions.html#GUID-F2EB58EC-4B22-473F-A2D3-40161372610E\">https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/nfcon\/management-solutions.html#GUID-F2EB58EC-4B22-473F-A2D3-40161372610E<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Attention.log is a feature, which was introduced in Oracle Database 21c, designed to capture high-level summaries of significant database events and activities. It differs from the alert.log in following points: High-Level Summaries: The attention.log focuses on summarizing critical and significant events rather than logging every minor detail, including database startups and shutdowns, major configuration changes, [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,198,59],"tags":[610,1672,96,2684,138,44],"type_dbi":[],"class_list":["post-33951","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","category-database-management","category-oracle","tag-alert-log","tag-new-features","tag-oracle","tag-oracle-21c-2","tag-oracle-21c-new-features","tag-troubleshooting"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Oracle 21c: Attention Log - Useful or Superflous? - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle 21c: Attention Log - Useful or Superflous?\" \/>\n<meta property=\"og:description\" content=\"Attention.log is a feature, which was introduced in Oracle Database 21c, designed to capture high-level summaries of significant database events and activities. It differs from the alert.log in following points: High-Level Summaries: The attention.log focuses on summarizing critical and significant events rather than logging every minor detail, including database startups and shutdowns, major configuration changes, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-11T16:00:00+00:00\" \/>\n<meta name=\"author\" content=\"Oracle Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oracle Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Oracle 21c: Attention Log &#8211; Useful or Superflous?\",\"datePublished\":\"2024-07-11T16:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/\"},\"wordCount\":670,\"commentCount\":0,\"keywords\":[\"alert.log\",\"New Features\",\"Oracle\",\"Oracle 21c\",\"Oracle 21c New features\",\"Troubleshooting\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"Database management\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/\",\"name\":\"Oracle 21c: Attention Log - Useful or Superflous? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-07-11T16:00:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-21c-attention-log-useful-or-superflous\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle 21c: Attention Log &#8211; Useful or Superflous?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/oracle-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Oracle 21c: Attention Log - Useful or Superflous? - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/","og_locale":"en_US","og_type":"article","og_title":"Oracle 21c: Attention Log - Useful or Superflous?","og_description":"Attention.log is a feature, which was introduced in Oracle Database 21c, designed to capture high-level summaries of significant database events and activities. It differs from the alert.log in following points: High-Level Summaries: The attention.log focuses on summarizing critical and significant events rather than logging every minor detail, including database startups and shutdowns, major configuration changes, [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/","og_site_name":"dbi Blog","article_published_time":"2024-07-11T16:00:00+00:00","author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Oracle 21c: Attention Log &#8211; Useful or Superflous?","datePublished":"2024-07-11T16:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/"},"wordCount":670,"commentCount":0,"keywords":["alert.log","New Features","Oracle","Oracle 21c","Oracle 21c New features","Troubleshooting"],"articleSection":["Database Administration &amp; Monitoring","Database management","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/","url":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/","name":"Oracle 21c: Attention Log - Useful or Superflous? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2024-07-11T16:00:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-21c-attention-log-useful-or-superflous\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Oracle 21c: Attention Log &#8211; Useful or Superflous?"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/33951","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=33951"}],"version-history":[{"count":13,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/33951\/revisions"}],"predecessor-version":[{"id":33969,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/33951\/revisions\/33969"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=33951"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=33951"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=33951"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=33951"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}