Skip to content

Commit

Permalink
Fixes for inventory_root_group model for the External Automation Mana…
Browse files Browse the repository at this point in the history
…ger model
  • Loading branch information
lgalis committed Apr 7, 2017
1 parent b042f0c commit 69a2979
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
class ManageIQ::Providers::AnsibleTower::AutomationManager::Inventory < ManageIQ::Providers::ExternalAutomationManager::InventoryGroup
class ManageIQ::Providers::AnsibleTower::AutomationManager::Inventory < ManageIQ::Providers::ExternalAutomationManager::InventoryRootGroup
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class ManageIQ::Providers::EmbeddedAutomationManager::InventoryRootGroup < ManageIQ::Providers::AutomationManager::InventoryRootGroup
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class ManageIQ::Providers::ExternalAutomationManager::InventoryRootGroup < ManageIQ::Providers::AutomationManager::InventoryRootGroup
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
#
# This is an MIQ Report configuration file
# Single value parameters are specified as:
# single_value_parm: value
# Multiple value parameters are specified as:
# multi_value_parm:
# - value 1
# - value 2
#

# Report title
title: InventoryGroup

# Menu name
name: InventoryGroup

# Main DB table report is based on
db: ManageIQ::Providers::AutomationManager::InventoryRootGroup

# Columns to fetch from the main table
cols:
- name
- total_configured_systems

# Included tables (joined, has_one, has_many) and columns

# Included tables and columns for query performance

# Order of columns (from all tables)
col_order:
- name
- total_configured_systems

# Column titles, in order
headers:
- Name
- Total Configured Systems

col_formats:
-
-
-
-
-

# Condition(s) string for the SQL query
conditions:

# Order string for the SQL query
order: Ascending

# Columns to sort the report on, in order
sortby:
- name

# Group rows (y=yes,n=no,c=count)
group: n

# Graph type
# Bar
# Column
# ColumnThreed
# ParallelThreedColumn
# Pie
# PieThreed
# StackedBar
# StackedColumn
# StackedThreedColumn

graph:

# Dimensions of graph (1 or 2)
# Note: specifying 2 for a single dimension graph may not return expected results
dims:

0 comments on commit 69a2979

Please sign in to comment.