Sha256: 9f1d78836b9bf5b66d68de543c93195f39de3c8ec507035e01186335e5f898a2

Contents?: true

Size: 1.51 KB

Versions: 7

Compression:

Stored size: 1.51 KB

Contents

class Fastly
    # An endpoint to stream syslogs to 
    class Syslog < BelongsToServiceAndVersion
        attr_accessor :service_id, :name, :comment, :ipv4, :ipv6, :hostname, :port, :format

        ## 
        # :attr: service_id
        # 
        # The id of the service this belongs to.
        # 

        ## 
        # :attr: version
        # 
        # The number of the version this belongs to.
        # 

        ## 
        # :attr: name
        # 
        # The domain name of this domain
        # 

        ## 
        # :attr: comment 
        # 
        # a free form comment field

        ## 
        # :attr: address
        # 
        # A magic field - will automagically be set to whichever of ipv4, ipv6 or hostname is currently set.
        # 
        # Conversely if you set the address field then the correct field from ipv4, ipv6 or hostname will be set. 
        
        ## 
        # :attr: ipv4
        # 
        # the ipv4 address of the host to stream logs to (this, hostname or ipv6 must be set)

        
        ## 
        # :attr: ipv6
        # 
        # the ipv6 address of the host to stream logs to  (this, hostname or ipv4 must be set)

        
        ## 
        # :attr: hostname
        # 
        # the hostname to to stream logs to  (this, ipv4 or ipv6 must be set)
 
        
        ## 
        # :attr: port 
        # 
        # the port to stream logs to (defaults to 514)

        
        ## 
        # :attr: format
        # 
        # Format to log like in apache format
    end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fastly-1.00 lib/fastly/syslog.rb
fastly-0.99 lib/fastly/syslog.rb
fastly-0.98 lib/fastly/syslog.rb
fastly-0.97 lib/fastly/syslog.rb
fastly-0.96 lib/fastly/syslog.rb
fastly-0.95 lib/fastly/syslog.rb
fastly-0.9 lib/fastly/syslog.rb