Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a106544
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
d9af66d
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
d443988
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
9f8cb70
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
e87c743
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
278b61c
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
6b41e4f
testing pipeline for aurora
surabhipatel-crest Nov 26, 2025
79cd645
testing pipeline
surabhipatel-crest Nov 27, 2025
f079031
testing pipeline
surabhipatel-crest Nov 27, 2025
6cc9fea
testing pipeline
surabhipatel-crest Nov 27, 2025
44d3e7c
testing pipeline
surabhipatel-crest Nov 27, 2025
b525da7
testing pipeline
surabhipatel-crest Nov 27, 2025
eeaa92f
testing pipeline
surabhipatel-crest Nov 27, 2025
2b4a48c
testing pipeline
surabhipatel-crest Nov 27, 2025
d978c9b
testing pipeline
surabhipatel-crest Nov 27, 2025
f04b8b0
testing pipeline
surabhipatel-crest Nov 27, 2025
d60a368
testing pipeline
surabhipatel-crest Nov 27, 2025
b7764b0
testing pipeline
surabhipatel-crest Nov 28, 2025
bd80ac9
testing pipeline
surabhipatel-crest Nov 28, 2025
4442a56
testing pipeline
surabhipatel-crest Nov 28, 2025
c47d121
testing pipeline
surabhipatel-crest Nov 29, 2025
fca5c87
testing pipeline
surabhipatel-crest Nov 29, 2025
c4bb312
testing pipeline
surabhipatel-crest Nov 30, 2025
a198bc3
testing pipeline
surabhipatel-crest Nov 30, 2025
b5ae475
testing pipeline
surabhipatel-crest Nov 30, 2025
c76bc77
testing
surabhipatel-crest Dec 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions arctic_wolf_aurora_endpoint_security/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# CHANGELOG - Arctic Wolf Aurora Endpoint Security

<!-- towncrier release notes start -->

64 changes: 64 additions & 0 deletions arctic_wolf_aurora_endpoint_security/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Agent Integration: Arctic Wolf Aurora Endpoint Security

## Overview

This integration monitors [Arctic Wolf Aurora Endpoint Security][4].

## Setup

### Installation

The Arctic Wolf Aurora Endpoint Security check is included in the [Datadog Agent][2] package.
No additional installation is needed on your server.

### Configuration

!!! Add list of steps to set up this integration !!!

### Validation

!!! Add steps to validate integration is functioning as expected !!!

## Data Collected

### Metrics

Arctic Wolf Aurora Endpoint Security does not include any metrics.

### Log Collection


1. Collecting logs is disabled by default in the Datadog Agent. Enable it in the `datadog.yaml` file with:

```yaml
logs_enabled: true
```

2. Add this configuration block to your `arctic_wolf_aurora_endpoint_security.d/conf.yaml` file to start collecting your Arctic Wolf Aurora Endpoint Security logs:

```yaml
logs:
- type: file
path: /var/log/Arctic Wolf Aurora Endpoint Security.log
source: arctic_wolf_aurora_endpoint_security
service: <SERVICE_NAME>
```

Change the `path` and `service` parameter values and configure them for your environment.

3. [Restart the Agent][3].

### Events

The Arctic Wolf Aurora Endpoint Security integration does not include any events.

## Troubleshooting

Need help? Contact [Datadog support][1].

[1]: https://docs.datadoghq.com/help/
[2]: https://app.datadoghq.com/account/settings/agent/latest
[3]: https://docs.datadoghq.com/agent/configuration/agent-commands/#start-stop-and-restart-the-agent
[4]: **LINK_TO_INTEGRATION_SITE**
[5]: https://github.com/DataDog/integrations-core/blob/master/arctic_wolf_aurora_endpoint_security/assets/service_checks.json

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Arctic Wolf Aurora Endpoint Security
files:
- name: arctic_wolf_aurora_endpoint_security.yaml
options:
- template: logs
example:
- type: file
path: /var/log/arctic_wolf_aurora_endpoint_security.log
source: arctic_wolf_aurora_endpoint_security
Empty file.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions arctic_wolf_aurora_endpoint_security/changelog.d/1.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Initial Release
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# (C) Datadog, Inc. 2025-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '0.0.1'
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# (C) Datadog, Inc. 2025-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
from .__about__ import __version__

__all__ = ['__version__']
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Log Section

Check failure on line 1 in arctic_wolf_aurora_endpoint_security/datadog_checks/arctic_wolf_aurora_endpoint_security/data/conf.yaml.example

View workflow job for this annotation

GitHub Actions / run / Validate

File `conf.yaml.example` is not in sync, run "ddev validate config arctic_wolf_aurora_endpoint_security -s"
##
## type - required - Type of log input source (tcp / udp / file / windows_event).
## port / path / channel_path - required - Set port if type is tcp or udp.
## Set path if type is file.
## Set channel_path if type is windows_event.
## source - required - Attribute that defines which integration sent the logs
## service - required - The name of the service that generates the log.
## Overrides any `service` defined in the `init_config` section.
## encoding - optional - For file specifies the file encoding. Default is utf-8. Other
## possible values are utf-16-le and utf-16-be.
## tags - optional - Add tags to the collected logs
##
## Discover Datadog log collection: https://docs.datadoghq.com/logs/log_collection/
#
# logs:
# - type: file
# path: /var/log/arctic_wolf_aurora_endpoint_security.log
# source: arctic_wolf_aurora_endpoint_security
# service: <SERVICE>
41 changes: 41 additions & 0 deletions arctic_wolf_aurora_endpoint_security/images/IMAGES_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Marketplace Media Carousel Guidelines

## Using the media gallery

Please upload images to use the media gallery. Integrations require a minimum of 3 images. Images should highlight your product, your integration, and a full image of the Datadog integration dashboard. The gallery
can hold a maximum of 8 pieces of media total, and one of these pieces of media
can be a video (guidelines and submission steps below). Images should be
added to your /images directory and referenced in the manifest.json file.


## Image and video requirements

### Images

```
File type : .jpg or .png
File size : ~500 KB per image, with a max of 1 MB per image
File dimensions : The image must be between 1440px and 2880px width, with a 16:9 aspect ratio (for example: 1440x810)
File name : Use only letters, numbers, underscores, and hyphens
Color mode : RGB
Color profile : sRGB
Description : 300 characters maximum
```

### Video

To display a video in your media gallery, please send our team the zipped file
or a link to download the video at `[email protected]`. In addition,
please upload a thumbnail image for your video as a part of the pull request.
Once approved, we will upload the file to Vimeo and provide you with the
vimeo_id to add to your manifest.json file. Please note that the gallery can
only hold one video.

```
File type : MP4 H.264
File size : Max 1 video; 1 GB maximum size
File dimensions : The aspect ratio must be exactly 16:9, and the resolution must be 1920x1080 or higher
File name : partnerName-appName.mp4
Run time : Recommendation of 60 seconds or less
Description : 300 characters maximum
```
44 changes: 44 additions & 0 deletions arctic_wolf_aurora_endpoint_security/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"manifest_version": "2.0.0",
"app_uuid": "6cffdd38-a25e-4399-a17e-466f53056bf1",
"app_id": "arctic-wolf-aurora-endpoint-security",
"display_on_public_website": false,
"tile": {
"overview": "README.md#Overview",
"configuration": "README.md#Setup",
"support": "README.md#Support",
"changelog": "CHANGELOG.md",
"description": "<FILL IN - A brief description of what this offering provides>",
"title": "Arctic Wolf Aurora Endpoint Security",
"media": [],
"classifier_tags": [
"Supported OS::Linux",
"Supported OS::Windows",
"Supported OS::macOS",
"Category::Log Collection"
]
},
"assets": {
"integration": {
"auto_install": true,
"source_type_id": 64142936,
"source_type_name": "Arctic Wolf Aurora Endpoint Security",
"configuration": {
"spec": "assets/configuration/spec.yaml"
},
"events": {
"creates_events": false
}
},
"dashboards": {},
"logs": {
"source": "arctic-wolf-aurora-endpoint-security"
}
},
"author": {
"support_email": "[email protected]",
"name": "Datadog",
"homepage": "https://www.datadoghq.com",
"sales_email": "[email protected]"
}
}
1 change: 1 addition & 0 deletions arctic_wolf_aurora_endpoint_security/metadata.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name,curated_metric,sample_tags
59 changes: 59 additions & 0 deletions arctic_wolf_aurora_endpoint_security/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
[build-system]
requires = [
"hatchling>=0.13.0",
]
build-backend = "hatchling.build"

[project]
name = "datadog-arctic-wolf-aurora-endpoint-security"
description = "The Arctic Wolf Aurora Endpoint Security check"
readme = "README.md"
license = "BSD-3-Clause"
keywords = [
"datadog",
"datadog agent",
"datadog check",
"arctic_wolf_aurora_endpoint_security",
]
authors = [
{ name = "Datadog", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Private :: Do Not Upload",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Monitoring",
]
dependencies = [
"datadog-checks-base>=37.21.0",
]
dynamic = [
"version",
]

[project.optional-dependencies]
deps = []

[project.urls]
Source = "https://github.com/DataDog/integrations-core"

[tool.hatch.version]
path = "datadog_checks/arctic_wolf_aurora_endpoint_security/__about__.py"

[tool.hatch.build.targets.sdist]
include = [
"/datadog_checks",
"/tests",
"/manifest.json",
]

[tool.hatch.build.targets.wheel]
include = [
"/datadog_checks/arctic_wolf_aurora_endpoint_security",
]
dev-mode-dirs = [
".",
]
Loading