Added new example and driver_jar_path parameter
Maybe it's just me, but I kept wondering how to add static strings. Added the driver_jar_path, just in case
This commit is contained in:
		
							parent
							
								
									51a04faca3
								
							
						
					
					
						commit
						d36d659e16
					
				@ -8,8 +8,24 @@ input
 | 
			
		||||
}
 | 
			
		||||
output {
 | 
			
		||||
	jdbc {
 | 
			
		||||
		driver_jar_path => '/opt/sqljdbc42.jar'
 | 
			
		||||
		connection_string => "jdbc:sqlserver://server:1433;databaseName=databasename;user=username;password=password"
 | 
			
		||||
		statement => [ "INSERT INTO log (host, timestamp, message) VALUES(?, ?, ?)", "host", "@timestamp", "message" ]
 | 
			
		||||
	}
 | 
			
		||||
	
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
Another example, with mixed static strings and parameters
 | 
			
		||||
```
 | 
			
		||||
input
 | 
			
		||||
{
 | 
			
		||||
	stdin { }
 | 
			
		||||
}
 | 
			
		||||
output {
 | 
			
		||||
jdbc {
 | 
			
		||||
		driver_jar_path => '/opt/sqljdbc42.jar'
 | 
			
		||||
		connection_string => "jdbc:sqlserver://server:1433;databaseName=databasename;user=username;password=password"
 | 
			
		||||
		statement => [ "INSERT INTO log (host, timestamp, message, comment) VALUES(?, ?, ?, 'static string')", "host", "@timestamp", "message" ]
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user