This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from logzio/asc-alerts
Asc alerts and additional fields support, Changelog
- Loading branch information
Showing
11 changed files
with
149 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Change log | ||
|
||
## v0.0.7 - Aug. 11, 2021 | ||
|
||
**Added:** | ||
- ASC (Azure Security Center) alerts api | ||
- User can now add to the yaml configuration additional fields that will be sent with the data. | ||
- Changelog | ||
|
||
## v0.0.6 - Aug. 3, 2021 | ||
|
||
**Added:** | ||
- Risky sign ins api | ||
- The ability to add different apis more generically | ||
|
||
## v0.0.5 - Jul. 28, 2021 | ||
|
||
**Updated:** | ||
- Project dependencies | ||
|
||
## v0.0.4- Mar. 10, 2020 | ||
|
||
**Updated:** | ||
- com.fasterxml.jackson.core:jackson-databind:2.9.10.3 | ||
|
||
## v0.0.3 - Feb. 10, 2020 | ||
|
||
**Updated:** | ||
- com.fasterxml.jackson.core:jackson-databind:2.9.10.2 | ||
|
||
## v0.0.2 - Jan. 5, 2020 | ||
|
||
**Updated:** | ||
- com.fasterxml.jackson.core:jackson-databind:2.9.10.1 | ||
- io.logz.sender:logzio-sender:1.1.1 | ||
|
||
## v0.0.1 - Oct. 20, 2019 | ||
|
||
**Added:** | ||
- First release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
|
||
FROM openjdk:8-jre-alpine | ||
FROM openjdk:11-jre-alpine | ||
|
||
MAINTAINER Tamir Michaeli <tamir.michaeli@logz.io> | ||
|
||
RUN apk --no-cache add curl | ||
|
||
RUN wget https://github.com/logzio/microsoft-graph/releases/download/v0.0.6/logzio-msgraph-0.0.6-app.jar | ||
RUN wget https://github.com/logzio/microsoft-graph/releases/download/v0.0.7/logzio-msgraph-0.0.7-app.jar | ||
|
||
RUN cp logzio-msgraph-0.0.6-app.jar /logzio-msgraph.jar | ||
RUN cp logzio-msgraph-0.0.7-app.jar /logzio-msgraph.jar | ||
|
||
CMD java -jar logzio-msgraph.jar config.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,6 @@ targetApi: | |
ADApis: | ||
- signIns | ||
- directoryAudits | ||
- riskySignIns | ||
- riskySignIns | ||
ASCApis: | ||
- alerts |