Skip to content

Commit 0f28194

Browse files
AnneLaure1307needarun
authored andcommitted
Link adjustments
1 parent 407ded0 commit 0f28194

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/misc.sync.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: misc.sync
2+
on:
3+
# Run manually a sync between current repo / develop and public repo develop
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
sync:
11+
permissions:
12+
actions: read
13+
contents: write
14+
runs-on:
15+
- ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Push to public Docs repo
19+
env:
20+
PUBLIC_ORG_NAME: strangebeecorp
21+
PRIVATE_ORG_NAME: strangebee
22+
run: |
23+
git config --global user.email "jordan.zedi@strangebee.com"
24+
git config --global user.name "Jordan ZEDI"
25+
git remote add private_docs_repo https:///${{ env.PUBLIC_ORG_NAME }}:${{ secrets.PUBLIC_DOCS_TOKEN }}@github.com/${{ env.PUBLIC_ORG_NAME }}/docs
26+
git push --force private_docs_repo main

docs/thehive/operations/configure-audit-logs-storage-elasticsearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ By default, TheHive stores audit logs in Apache Cassandra via JanusGraph. Howeve
66

77
This topic provides step-by-step instructions for configuring TheHive's audit log storage in Elasticsearch for existing instances, including the option to migrate historical logs from JanusGraph.
88

9-
For new installations, refer to the [Step-by-Step Guide](../installation/step-by-step-installation-guide.md#fontawesome-solid-list-elasticsearch) for instructions.
9+
For new installations, refer to the [Step-by-Step Guide](../installation/step-by-step-installation-guide.md) for instructions.
1010

1111
!!! info "Reasons to consider Elasticsearch"
1212
Elasticsearch is better suited for managing large volumes of audit logs. It enhances performance by efficiently handling data, reducing latency, and offering advanced search capabilities. If your organization generates a significant amount of audit logs, migrating to Elasticsearch can improve both data management and retrieval.

0 commit comments

Comments
 (0)