PHP 클래스 InfluxDB\Point

파일 보기 프로젝트 열기: influxdb/influxdb-php

보호된 프로퍼티들

프로퍼티 타입 설명
$fields array
$measurement string
$tags array
$timestamp string

공개 메소드들

메소드 설명
__construct ( string $measurement, float $value = null, array $tags = [], array $additionalFields = [], integer $timestamp = null ) The timestamp is optional. If you do not specify a timestamp the server’s local timestamp will be used
__toString ( )
getFields ( ) : array
getMeasurement ( ) : string
getTags ( ) : array
getTimestamp ( ) : string
setFields ( array $fields )
setMeasurement ( string $measurement )
setTags ( array $tags )
setTimestamp ( string $timestamp )

비공개 메소드들

메소드 설명
addSlashes ( string $value ) : string Returns strings with space, comma, or equals sign characters backslashed per Influx write protocol syntax
arrayToString ( array $arr ) : string
escapeCharacters ( array $arr, boolean $escapeValues ) : array Escapes invalid characters in both the array key and optionally the array value
escapeFieldValue ( $value ) * Returns string double-quoted and double-quotes escaped per Influx write protocol syntax
isValidTimeStamp ( integer $timestamp ) : boolean

메소드 상세

__construct() 공개 메소드

The timestamp is optional. If you do not specify a timestamp the server’s local timestamp will be used
public __construct ( string $measurement, float $value = null, array $tags = [], array $additionalFields = [], integer $timestamp = null )
$measurement string
$value float
$tags array
$additionalFields array
$timestamp integer

__toString() 공개 메소드

public __toString ( )

getFields() 공개 메소드

public getFields ( ) : array
리턴 array

getMeasurement() 공개 메소드

public getMeasurement ( ) : string
리턴 string

getTags() 공개 메소드

public getTags ( ) : array
리턴 array

getTimestamp() 공개 메소드

public getTimestamp ( ) : string
리턴 string

setFields() 공개 메소드

public setFields ( array $fields )
$fields array

setMeasurement() 공개 메소드

public setMeasurement ( string $measurement )
$measurement string

setTags() 공개 메소드

public setTags ( array $tags )
$tags array

setTimestamp() 공개 메소드

public setTimestamp ( string $timestamp )
$timestamp string

프로퍼티 상세

$fields 보호되어 있는 프로퍼티

protected array $fields
리턴 array

$measurement 보호되어 있는 프로퍼티

protected string $measurement
리턴 string

$tags 보호되어 있는 프로퍼티

protected array $tags
리턴 array

$timestamp 보호되어 있는 프로퍼티

protected string $timestamp
리턴 string