You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2023. It is now read-only.
**NOTE:** For the latest stable [README.md](https://github.com/rapidsai/clx/blob/main/README.md) ensure you are on the `main` branch.
4
-
5
3
[RAPIDS](https://rapids.ai) CLX [SIEM](https://en.wikipedia.org/wiki/Security_information_and_event_management) Integrations provide features that enable interoperability between SIEMs and a RAPIDS/CLX environment. Currently, this support includes `splunk2kafka`, enabling data integration between Splunk and CLX.
6
4
7
5
## Splunk2Kafka
@@ -15,15 +13,15 @@ Use this Splunk query template to send data to your Kafka instance.
3. Restart splunk application server to take effect on changes.
100
+
3. Copy `splunklib` from [splunk-sdk-python](https://github.com/splunk/splunk-sdk-python) to splunk apps directory. Use tag version that matches your Splunk installation. *Note: Application was tested with Splunk 1.6.x*.
101
+
4. Restart splunk application server to take effect on changes.
103
102
```aidl
104
103
./splunk/bin/splunk restart
105
104
```
106
-
4. Login to Splunk GUI and launch CLX Query application. `Apps> Manage Apps> Clx Query> Launch App`
107
-
5. Run sample query
105
+
5. Login to Splunk GUI and launch CLX Query application. `Apps> Manage Apps> ClX Query> Launch App`
106
+
6. Run sample query
108
107
- Get number of user_id's and their average rating in descending order for each genre and title. Consider movies only with rating greater than 2.5.
109
108
```
110
109
| clx query="SELECT genres, title, avg(rating) as avg_rating, count(user_id) as user_cnt from (SELECT main.movies.title as title, main.movies.genres as genres, main.ratings.userId as user_id, main.ratings.rating as rating FROM main.movies INNER JOIN main.ratings ON (main.ratings.movieId = main.movies.movieId) WHERE main.ratings.rating > 2.5) as tmp GROUP BY genres, title ORDER BY user_cnt DESC, avg_rating DESC"
1. Columns not being inferred from CSV header [blazingsql-265](https://github.com/BlazingDB/blazingsql/issues/265).
117
116
118
117
## Contributing Guide
119
118
120
-
Review the [CONTRIBUTING.md](https://github.com/rapidsai/clx/blob/main/CONTRIBUTING.md) file for information on how to contribute code and issues to the project.
119
+
Review the [CONTRIBUTING.md](../CONTRIBUTING.md) file for information on how to contribute code and issues to the project.
0 commit comments