We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcfc386 commit 872b365Copy full SHA for 872b365
2 files changed
.github/workflows/reusable-node.yml
@@ -19,7 +19,7 @@ jobs:
19
20
- uses: actions/setup-node@v4
21
with:
22
- node-version: '14.16.1'
+ node-version: '22'
23
24
- uses: actions/cache@v4
25
agent/config/const.go
@@ -10,6 +10,15 @@ const (
10
SERVICE_UPDATER_NAME = "UTMStackUpdater"
11
)
12
13
+// DataType identifies the log source type reported to the engine.
14
+type DataType string
15
+
16
+const (
17
+ DataTypeLinuxAgent DataType = "linux"
18
+ DataTypeWindowsAgent DataType = "wineventlog"
+ DataTypeMacOs DataType = "macos"
+)
var (
REPLACE_KEY string
0 commit comments