Skip to content

Commit 6648f9f

Browse files
Merge branch 'main' into 1640-update-tutorial-ingest-logs-from-python-app
2 parents c7fd174 + facffc8 commit 6648f9f

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

.github/workflows/label-community-issues.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,17 @@ jobs:
1212
contents: read
1313

1414
steps:
15+
# Adding this step for debug purposes
16+
# If this works as expected, we can simplify this workflow
17+
# and replace it with the `check-membership` step
18+
- name: Check organization membership (test)
19+
run: echo "${{ github.event.issue.author_association == 'MEMBER' }}"
1520
- name: Check organization membership
1621
id: check-membership
1722
uses: actions/github-script@v7
1823
with:
1924
github-token: ${{ secrets.ORG_MEMBER_READ_TOKEN }}
25+
result-encoding: string
2026
script: |
2127
const issueAuthor = '${{ github.event.issue.user.login }}';
2228
const orgName = 'elastic';
@@ -55,4 +61,4 @@ jobs:
5561
labels: ['community']
5662
});
5763
58-
console.log(`Added "community" label to issue by ${issueAuthor}`);
64+
console.log(`Added "community" label to issue by ${issueAuthor}`);

deploy-manage/cloud-organization/billing/security-billing-dimensions.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ Logs, events, alerts, and configuration data ingested into your security project
7070

7171
For more details about {{elastic-sec}} serverless project rates and billable assets, refer to Cloud Protection in the [{{ecloud}} pricing table](https://cloud.elastic.co/cloud-pricing-table?productType=serverless&project=security).
7272

73-
% Note: Commenting out this section until this is ready to be published.
7473

75-
% ## Elastic-managed LLM
74+
## Elastic Managed LLM
7675

77-
% The default LLM enables you to leverage AI-powered search as a service without deploying a model in your serverless project. It's configured by default to use with the Security AI Assistant, Attack Discovery, and other applicable AI features as a part of your "Complete" tier subscription. Using the default LLM will use tokens and incur related token-based add-on billing for your serverless project.
76+
The default [Elastic Managed LLM](kibana://reference/connectors-kibana/elastic-managed-llm.md) enables you to leverage AI-powered search as a service without deploying a model in your serverless project. It's configured by default to use with the Security AI Assistant, Attack Discovery, and other applicable AI features as a part of your "Complete" tier subscription. Using the default LLM will use tokens and incur related token-based add-on billing for your serverless project.

deploy-manage/security/kibana-session-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To manage user sessions programmatically, {{kib}} exposes [session management AP
2424
You can use `xpack.security.session.idleTimeout` to expire sessions after a period of inactivity. This and `xpack.security.session.lifespan` are both highly recommended. By default, sessions expire after 3 days of inactivity. To define another value for a sliding session expiration, set the property in the [`kibana.yml`](/deploy-manage/stack-settings.md) configuration file. The idle timeout is formatted as a duration of `<count>[ms|s|m|h|d|w|M|Y]` (e.g. *20m*, *24h*, *7d*, *1w*). For example, set the idle timeout to expire sessions after 30 minutes of inactivity:
2525

2626
```yaml
27-
xpack.security.session.idleTimeout: "3d"
27+
xpack.security.session.idleTimeout: "30m"
2828
```
2929
3030

explore-analyze/alerts-cases/watcher/action-foreach.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ PUT _watcher/watch/log_event_watch
4545
```
4646

4747
1. The logging statement will be executed for each of the returned search hits.
48+
49+
::::{note}
50+
If you are running a [`script`](transform-script.md) {{watcher-transform}}, the transform needs to be included prior to the `actions` section to ensure the output is available to the `foreach` loop.
51+
::::

reference/fleet/install-elastic-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ The disk requirements for {{agent}} vary by operating system and {{stack}} versi
142142
| Operating system | 8.13 | 8.14 | 8.15 | 8.18 | 9.0 |
143143
| --- | --- | --- | --- |
144144
| **Linux** | 1800 MB | 1018 MB | 1060 MB | 1.5 GB | 1.5 GB |
145-
| **macOS** | 1100 MB | 619 MB | 680 MB | 775 MB | 7755 MB |
145+
| **macOS** | 1100 MB | 619 MB | 680 MB | 775 MB | 775 MB |
146146
| **Windows** | 891 MB | 504 MB | 500 MB | 678 MB | 705 MB |
147147

148148
During upgrades, double the disk space is required to store the new {{agent}} binary. After the upgrade completes, the original {{agent}} is removed from disk to free up the space.

0 commit comments

Comments
 (0)