-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
56 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
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 |
---|---|---|
@@ -1,6 +1,32 @@ | ||
package constants | ||
|
||
const ( | ||
TailpipeShortDescription = "" | ||
TailpipeLongDescription = `` | ||
TailpipeShortDescription = "Collect, store and analyze log data using SQL" | ||
TailpipeLongDescription = ` | ||
Tailpipe: select * from logs; | ||
Tailpipe is a high-performance data collection and querying tool that makes it | ||
easy to collect, store, and analyze log data. With Tailpipe you can: | ||
- Collect logs from various sources and store them efficiently | ||
- Query your data with familiar SQL syntax using Tailpipe (or DuckDB!) | ||
- Use Powerpipe to visualize your logs and run detections | ||
Common commands: | ||
# Install a plugin from the hub - https://hub.tailpipe.io | ||
tailpipe plugin install aws | ||
# Run a collection | ||
tailpipe collect aws_cloudtrail_log.cloudtrail_logs | ||
# Execute a defined SQL query | ||
tailpipe query "select * from aws_cloudtrail_log" | ||
# Get help for a command | ||
tailpipe help query | ||
Documentation: | ||
https://tailpipe.io/docs | ||
` | ||
) |