-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzinvoiceitems.view.lkml
115 lines (103 loc) · 2.04 KB
/
zinvoiceitems.view.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
view: zinvoiceitems {
sql_table_name: smartdc.zinvoiceitems ;;
dimension: account_number {
type: string
sql: ${TABLE}."AccountNumber" ;;
}
dimension: charge_amount {
type: number
sql: ${TABLE}."ChargeAmount" ;;
}
dimension_group: charge {
type: time
timeframes: [
raw,
time,
date,
week,
month,
quarter,
year
]
sql: ${TABLE}."ChargeDate" ;;
}
dimension: charge_type {
type: string
sql: ${TABLE}."ChargeType" ;;
}
dimension: processing_type {
type: string
sql: ${TABLE}."ProcessingType" ;;
}
dimension: quantity {
type: number
sql: ${TABLE}."Quantity" ;;
}
dimension_group: service_end {
type: time
timeframes: [
raw,
date,
week,
month,
quarter,
year
]
convert_tz: no
datatype: date
sql: ${TABLE}."ServiceEndDate" ;;
}
dimension_group: service_start {
type: time
timeframes: [
raw,
date,
week,
month,
quarter,
year
]
convert_tz: no
datatype: date
sql: ${TABLE}."ServiceStartDate" ;;
}
dimension: sub_uuid {
type: string
sql: ${TABLE}."SubUUID" ;;
}
dimension: uom {
type: string
sql: ${TABLE}."UOM" ;;
}
dimension: isInstance {
type: yesno
sql: split_part(${sub_uuid},'_',1) = 'Compute' OR split_part(${sub_uuid},'_',1) = 'triton' OR split_part(${sub_uuid},'_',1) = 'KVM' ;;
}
dimension: isManta {
type: yesno
sql: split_part(${sub_uuid},'_',1) = 'manta' ;;
}
dimension: isImages {
type: yesno
sql: split_part(${sub_uuid},'_',1) = 'images' ;;
}
dimension: isBW {
type: yesno
sql: split_part(${sub_uuid},'_',1) = 'bw' ;;
}
dimension: isSupport {
type: yesno
sql: split_part(${sub_uuid},'_',1) = 'support' ;;
}
measure: count {
description: "Number of distinct objects returned in query"
type: count
drill_fields: []
}
measure: total_amount {
type: sum
sql: ${charge_amount} ;;
value_format_name: usd
drill_fields: []
}
}