Skip to content
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2d7516b
feat(new source): okta
sonnens Apr 29, 2025
dd24f7e
add changelog fragment
sonnens Apr 30, 2025
4a301ba
docs
sonnens May 19, 2025
52ab654
Update website/cue/reference/components/sources/base/okta.cue
sonnens May 19, 2025
7378bdb
Update website/cue/reference/components/sources/base/okta.cue
sonnens May 19, 2025
1b455db
Update website/cue/reference/components/sources/okta.cue
sonnens May 19, 2025
f47dfe2
refactor url mutex
sonnens Jun 30, 2025
bbe143e
Merge branch 'master' into source_okta
pront Jul 1, 2025
c5c3bc6
rename
pront Jul 1, 2025
05e0e92
fix nits
sonnens Aug 1, 2025
52cc701
Merge branch 'master' into source_okta
sonnens Aug 1, 2025
ed601dc
Merge branch 'master' into source_okta
sonnens Aug 12, 2025
6f6f76b
Merge branch 'master' into source_okta
pront Aug 20, 2025
caf96e8
cargo fmt
pront Aug 20, 2025
2d57b39
rename
pront Aug 20, 2025
5259741
rephrase
pront Aug 20, 2025
20153e2
Fix spelling in changelog
thomasqueirozb Aug 20, 2025
a40547b
Add okta source to semantic.yml
thomasqueirozb Aug 20, 2025
0fb5fed
Apply docs suggestions to the correct file
thomasqueirozb Aug 20, 2025
9eb36f9
Fix rust 2024
thomasqueirozb Aug 20, 2025
6ed8309
Move file from base into generated
thomasqueirozb Aug 20, 2025
edbb630
Creatively fix spelling
thomasqueirozb Aug 20, 2025
7f90f8c
Even more creative spelling fixes
thomasqueirozb Aug 20, 2025
63b49ba
Fix invalid `base` reference
thomasqueirozb Aug 20, 2025
8095d42
Fix most clippy issues
thomasqueirozb Aug 20, 2025
9361b6b
Remove useless assignment
thomasqueirozb Aug 20, 2025
f720d1f
Allow too_many_arguments
thomasqueirozb Aug 20, 2025
b827aaa
tests
sonnens Aug 26, 2025
824000f
Merge branch 'master' into source_okta
pront Aug 27, 2025
025c37e
website/scripts/cue.sh fmt
thomasqueirozb Aug 29, 2025
72aa8b6
Merge remote-tracking branch 'origin/master' into source_okta
thomasqueirozb Aug 29, 2025
1e6f723
chore(vdev): apply vdev rust check fixes
thomasqueirozb Aug 29, 2025
395b256
cargo fmt
thomasqueirozb Aug 29, 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
1 change: 1 addition & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ Lifetouch
linkerd
localdomain
localstack
lookback
lucene
Lumia
LYF
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ jobs:
mongodb_metrics source
new source
nginx_metrics source
okta source
opentelemetry source
postgresql_metrics source
prometheus_remote_write source
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,7 @@ sources-logs = [
"sources-logstash",
"sources-mqtt",
"sources-nats",
"sources-okta",
"sources-opentelemetry",
"sources-pulsar",
"sources-file_descriptor",
Expand Down Expand Up @@ -662,6 +663,7 @@ sources-mongodb_metrics = ["dep:mongodb"]
sources-mqtt = ["dep:rumqttc"]
sources-nats = ["dep:async-nats", "dep:nkeys"]
sources-nginx_metrics = ["dep:nom"]
sources-okta = ["sources-utils-http-client"]
sources-opentelemetry = ["dep:hex", "vector-lib/opentelemetry", "dep:prost", "dep:prost-types", "sources-http_server", "sources-utils-http", "sources-utils-http-headers", "sources-vector"]
sources-postgresql_metrics = ["dep:postgres-openssl", "dep:tokio-postgres"]
sources-prometheus = ["sources-prometheus-scrape", "sources-prometheus-remote-write", "sources-prometheus-pushgateway"]
Expand Down
3 changes: 3 additions & 0 deletions changelog.d/22968_okta.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Introduced a new `okta` source for consuming [Okta system logs](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/SystemLog/)

authors: sonnens
2 changes: 2 additions & 0 deletions src/sources/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ pub mod mqtt;
pub mod nats;
#[cfg(feature = "sources-nginx_metrics")]
pub mod nginx_metrics;
#[cfg(feature = "sources-okta")]
pub mod okta;
#[cfg(feature = "sources-opentelemetry")]
pub mod opentelemetry;
#[cfg(feature = "sources-postgresql_metrics")]
Expand Down
Loading
Loading