You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
541 B
Django/Jinja
18 lines
541 B
Django/Jinja
<?php
|
|
function sendflux($data) {
|
|
$url = 'http://10.222.42.54:8086/write?db=freifunk';
|
|
|
|
$options = array(
|
|
'http' => array(
|
|
'header' => "Authorization: Basic " . base64_encode("{{ influx_user }}:{{ influx_password }}") ."\r\nContent-type: application/x-www-form-urlencoded\r\n",
|
|
'method' => 'POST',
|
|
'content' => $data,
|
|
),
|
|
);
|
|
|
|
$context = stream_context_create($options);
|
|
$result = file_get_contents($url, false, $context);
|
|
}
|
|
|
|
?>
|