Skip to content

Commit

Permalink
GitHub Enterprise Server 3.11 general availability (#47198)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpollard authored Dec 5, 2023
1 parent 3d44ee5 commit 18c724c
Show file tree
Hide file tree
Showing 8 changed files with 361 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ redirect_from:
- /enterprise/admin/configuration/configuring-applications
- /admin/configuration/configuring-applications
- /admin/configuration/configuring-your-enterprise/configuring-applications
- /admin/configuration/configuring-user-applications-for-your-enterprise/configuring-interactive-maps
versions:
ghes: '*'
type: how_to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,8 @@ In addition to reviewing your system logs, you can monitor activity on your inst
- [Log files for the {% data variables.product.prodname_dotcom %} application](#log-files-for-the-github-application)
- [Log files for the HTTP server](#log-files-for-the-http-server)
- [Log files for instance configuration](#log-files-for-instance-configuration)
- [Log files for the {% data variables.enterprise.management_console %}](#log-files-for-themanagement-console)
- [Log files for the {% data variables.enterprise.management_console %}](#log-files-for-the-management-console)
- [Log files for search](#log-files-for-search)
- [Log files for storage](#log-files-for-storage)
- [Log files for webhooks](#log-files-for-webhooks)
- [Log files for system services](#log-files-for-system-services)

{% ifversion ghes < 3.9 %}
Expand Down Expand Up @@ -117,7 +115,10 @@ The following log files contain events related to the configuration of your inst

| Path | Description |
| :- | :- |
| <pre>/data/user/common/ghe-config.log</pre> | Records events associated with each configuration run. If a configuration run fails, output to the log stops. This log also records information about migrations that run during the process of upgrading an instance's software. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/command-line-utilities#ghe-config-apply)." |
| <pre>/data/user/common/ghe-config.log</pre> | Records events associated with {% ifversion unique-config-run-logs %}the latest{% else %}each{% endif %} configuration run. If a configuration run fails, output to the log stops. This log also records information about migrations that run during the process of upgrading an instance's software. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/command-line-utilities#ghe-config-apply)." |
{%- ifversion unique-config-run-logs %}
| <pre>/data/user/config-apply/logs/YYYYMMDD/*</pre> | Stores log files for previous configuration runs. The instance stores the files in a directory that reflects the date, and each file name reflects the node and the ID of the run. |
{%- endif %}

### Log files for search

Expand All @@ -133,7 +134,7 @@ The following log files contain events related to webhooks that your instance se

| Service name | Description |
| :- | :- |
| `hookshot-go` | Records events for all webhook activity on the instance, including triggered webhooks, deliveries, and failures.|
| <pre>hookshot-go</pre> | Records events for all webhook activity on the instance, including triggered webhooks, deliveries, and failures.|

### Log files for system services

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ After you submit your support request, we may ask you to share a support bundle
- `babeld-logs/babeld.log`: Git proxy logs
- `system-logs/haproxy.log`: HAProxy logs
- `elasticsearch-logs/github-enterprise.log`: Elasticsearch logs
- `configuration-logs/ghe-config.log`: {% data variables.product.prodname_ghe_server %} configuration logs
- `configuration-logs/{% ifversion unique-config-run-logs %}{% else %}ghe-config.log{% endif %}`: {% data variables.product.prodname_ghe_server %} configuration logs
{%- ifversion unique-config-run-logs %}
{%- endif %}
- `collectd/logs/collectd.log`: Collectd logs
- `mail-logs/mail.log`: SMTP email delivery logs

Expand Down
5 changes: 5 additions & 0 deletions data/features/unique-config-run-logs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Reference: #12968
# Unique logs for configuration runs

versions:
ghes: '>= 3.11'
2 changes: 1 addition & 1 deletion data/release-notes/enterprise-server/3-11/0-rc1.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
date: '2023-11-14'
release_candidate: true
deprecated: false
deprecated: true
intro: |
{% note %}
Expand Down
344 changes: 344 additions & 0 deletions data/release-notes/enterprise-server/3-11/0.yml

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/fixtures/fixtures/data/variables/release_candidate.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/versions/lib/enterprise-server-releases.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const nextNext = '3.13'
export const supported = ['3.11', '3.10', '3.9', '3.8', '3.7']

// Edit this to `null` when it's no longer the release candidate
export const releaseCandidate = '3.11'
export const releaseCandidate = null

// Ensure that:
// "next" is ahead of "latest" by one minor or major release.
Expand Down

0 comments on commit 18c724c

Please sign in to comment.