Class: DatadogAPIClient::V2::ProductAnalyticsSankeyNode

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb

Overview

A node of the Sankey diagram, representing one facet value in one column.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

Returns the value of attribute additional_properties.



52
53
54
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 52

def additional_properties
  @additional_properties
end

#aggregated_nodesObject

The nodes rolled up into this one, when the node is an aggregate.



25
26
27
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 25

def aggregated_nodes
  @aggregated_nodes
end

#columnObject

Zero-based index of the column the node sits in.



28
29
30
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 28

def column
  @column
end

#dropoff_valueObject

Number of sessions that ended at the node.



31
32
33
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 31

def dropoff_value
  @dropoff_value
end

#idObject

Unique identifier for the node.



34
35
36
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 34

def id
  @id
end

#incoming_valueObject

Number of sessions entering the node.



37
38
39
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 37

def incoming_value
  @incoming_value
end

#nameObject

The facet value the node represents.



40
41
42
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 40

def name
  @name
end

#outgoing_valueObject

Number of sessions leaving the node.



43
44
45
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 43

def outgoing_value
  @outgoing_value
end

#typeObject

The kind of node. regular is a single facet value, other rolls up the values that did not fit within entries_per_step, and dropoff collects the sessions that ended at this column.



47
48
49
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 47

def type
  @type
end

#valueObject

Number of sessions passing through the node.



50
51
52
# File 'lib/datadog_api_client/v2/models/product_analytics_sankey_node.rb', line 50

def value
  @value
end