Snowflake
The Snowflake output module allows you to write data to the cloud Snowflake database system.
Parameter | Default | Meaning |
---|---|---|
user | The name of the database user | |
password | The database password | |
warehouse | The name of the data warehouse | |
schema | The name of the data schema | |
database | The name of the database | |
sql | INSERT INTO events (start,end,message) VALUES ('%S','%E','%M') | The sql statement to execute, including event codes |
timezone | UTC | The timezone to write date data in. |
Example (Event)
[ { "type": "event", "method": "snowflake", "account": "account-id" "user": "myuser", "password": "mypass", "warehouse": "WH_COMPUTE", "schema": "events", "database": "eventlog", "sql": "INSERT INTO events (start,end,message) VALUES ('%S','%E','%M')", "timezone": "Australia/Sydney" } ]
Other Modules
Return to the list of output modules.