Skip to content

Commit

Permalink
Merge pull request #6095 from EnterpriseDB/release-2024-09-25a
Browse files Browse the repository at this point in the history
Release 2024-09-25a
  • Loading branch information
djw-m authored Sep 25, 2024
2 parents ad5dbff + 5e64931 commit 6d1c924
Show file tree
Hide file tree
Showing 26 changed files with 1,012 additions and 950 deletions.
19 changes: 18 additions & 1 deletion advocacy_docs/community/contributing/styleguide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Included in this guide:
* 13 [Dates](#dates)
* 14 [Terminology considerations](#terminology-considerations)
* 15 [Trademark symbols](#trademark-symbols)
* 16 [Frontmatter](#frontmatter)

## Language and tone

Expand Down Expand Up @@ -656,4 +657,20 @@ Examples: EDB Postgres® AI, EDB Postgres® Analytics, EDB Postgres® Machine Le
For other trademarks, the documentation site already includes a general disclaimer at the footer of every page called "Trademark" which links to https://www.enterprisedb.com/trademarks.
Contrary to the specifications on [Trademarks](https://www.enterprisedb.com/trademarks), don't include the symbol in page titles,
because the symbol can affect how search engines index and find pages.
because the symbol can affect how search engines index and find pages.
## Frontmatter
The frontmatter is located at the top of every Markdown page and allows you to specify metadata and options in YAML language. Frontmatter lets you control how a page renders.
Ensure your page, at minimum, includes a `title` and `description` as metadata. It can include other metadata such as `navTitle`, `deepToC`, and so on.
```yaml
---
title: Working with the repo
description: Step-by-step instructions to install and use the docs repo.
---
```
!!!note
Ensure the `description` has a final stop (period), even if it isn't a full grammatical sentence. Descriptions are used to dynamically build a summary for each section in `index` pages. Since all descriptions are then displayed next to each other, add a full stop to ensure visual consistency.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Monitoring using BigAnimal Observability"
title: "Monitoring using Cloud Service Observability"
redirects:
- /biganimal/latest/using_cluster/05_monitoring_and_logging/monitoring_using_pemx/

Expand All @@ -10,6 +10,7 @@ Cloud Service Observability is an integrated monitoring and alerting solution in
Cloud Service Observability renders insightful charts that empower you to actively monitor each metric's behavior. It provides a streamlined path for you to take prompt and informed actions based on the generated alerts. This cohesive monitoring and alert system ensures comprehensive oversight and prompt responses in the Cloud Service environment.

When you log in, Cloud Service Observability monitoring widgets are displayed on the overview page on the project summary page. These widgets are available only for the deployed Postgres clusters and aren't available for the clusters in the provisioning process. They provide high-level, key information on:

- Memory
- CPU
- Storage usage percentages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,26 +130,27 @@ Here is an example `beacon_agent.yaml` file configured for a database named `sal

```yaml
agent:
access_key: $BEACON_AGENT_ACCESS_KEY
access_key_grpc_header: "x-access-key"
batch_size: 100
beacon_server: "beacon.biganimal.com:443"
feature_flag_interval: 10m0s
project_id: "<project ID>"
providers:
- "onprem"
access_key: "$BEACON_AGENT_ACCESS_KEY"
access_key_grpc_header: "x-access-key"
batch:
size: 100
beacon_server: "beacon.biganimal.com:443"
feature_flag_interval: 10m0s
project_id: "<project ID>"
providers:
- "onprem"
provider:
onprem:
databases:
sales_reporting:
dsn: $DSN
tags:
- "sales"
- "reports"
host:
resource_id: "postgresql.lan"
tags: []
poll_interval: 5m0s
onprem:
databases:
sales_reporting:
dsn: "$DSN"
tags:
- "sales"
- "reports"
host:
resource_id: "postgresql.lan"
tags: []
poll_interval: 5m0s
```

## Test Beacon Agent locally.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This table lists the latest JDBC Connector versions and their supported correspo

| JDBC Connector | EPAS16 | EPAS 15 | EPAS 14 | EPAS 13 | EPAS 12 | EPAS 11 |
| ---------------------------------------------------------- | --------|-------- | ------- | ------- | ------- | ------- |
| [42.7.3.1](01_jdbc_rel_notes/jdbc_42.7.3.1_rel_notes) | Y | Y | Y | Y | Y | N |
| [42.5.4.2](01_jdbc_rel_notes/jdbc_42.5.4.2_rel_notes) | Y | Y | Y | Y | Y | Y |
| [42.5.4.1](01_jdbc_rel_notes/jdbc_42.5.4.1_rel_notes) | N | Y | Y | Y | Y | Y |
| [42.5.1.2](01_jdbc_rel_notes/jdbc_42.5.1.2_rel_notes) | N | Y | Y | Y | Y | Y |
Expand Down
Loading

2 comments on commit 6d1c924

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.