Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
cf2c8bc0
Commit
cf2c8bc0
authored
Oct 06, 2015
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-138 - Combine Input/Output graph ( Anilsg via Suma Shivaprasad)
parent
23151244
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
108 additions
and
2 deletions
+108
-2
gruntfile.js
dashboard/gruntfile.js
+1
-1
detailsModule.js
dashboard/public/modules/details/detailsModule.js
+1
-1
details.html
dashboard/public/modules/details/views/details.html
+1
-0
Find Results
dashboard/public/modules/lineage_io/Find Results
+30
-0
lineage_ioController.js
dashboard/public/modules/lineage_io/lineage_ioController.js
+0
-0
lineage_ioModule.js
dashboard/public/modules/lineage_io/lineage_ioModule.js
+21
-0
lineage_ioResource.js
dashboard/public/modules/lineage_io/lineage_ioResource.js
+23
-0
lineage_io.html
dashboard/public/modules/lineage_io/views/lineage_io.html
+30
-0
release-log.txt
release-log.txt
+1
-0
No files found.
dashboard/gruntfile.js
View file @
cf2c8bc0
...
@@ -151,7 +151,7 @@ module.exports = function(grunt) {
...
@@ -151,7 +151,7 @@ module.exports = function(grunt) {
'hostnames'
:
[
'*'
],
'hostnames'
:
[
'*'
],
'routes'
:
{
'routes'
:
{
'/'
:
distPath
,
'/'
:
distPath
,
'/api'
:
'http://162.2
49.6.5
0:21000/api'
'/api'
:
'http://162.2
12.133.19
0:21000/api'
}
}
}]
}]
}
}
...
...
dashboard/public/modules/details/detailsModule.js
View file @
cf2c8bc0
...
@@ -18,4 +18,4 @@
...
@@ -18,4 +18,4 @@
'use strict'
;
'use strict'
;
angular
.
module
(
'dgc.details'
,
[
'dgc.lineage'
]);
angular
.
module
(
'dgc.details'
,
[
'dgc.lineage'
,
'dgc.lineage_io'
]);
dashboard/public/modules/details/views/details.html
View file @
cf2c8bc0
...
@@ -44,6 +44,7 @@
...
@@ -44,6 +44,7 @@
<tab
data-heading=
"Schema"
data-ng-if=
"isTable"
><ng-include
src=
"'/modules/details/views/schema.html'"
/></tab>
<tab
data-heading=
"Schema"
data-ng-if=
"isTable"
><ng-include
src=
"'/modules/details/views/schema.html'"
/></tab>
<tab
data-heading=
"Output"
data-ng-if=
"isTable"
data-disable=
"!tableName"
data-select=
"onActivate('outputs')"
><ng-include
data-table-type=
"outputs"
src=
"'/modules/lineage/views/lineage.html'"
/></tab>
<tab
data-heading=
"Output"
data-ng-if=
"isTable"
data-disable=
"!tableName"
data-select=
"onActivate('outputs')"
><ng-include
data-table-type=
"outputs"
src=
"'/modules/lineage/views/lineage.html'"
/></tab>
<tab
data-heading=
"Input"
data-ng-if=
"isTable"
data-disable=
"!tableName"
data-select=
"onActivate('inputs')"
><ng-include
data-table-type=
"inputs"
src=
"'/modules/lineage/views/lineage.html'"
/></tab>
<tab
data-heading=
"Input"
data-ng-if=
"isTable"
data-disable=
"!tableName"
data-select=
"onActivate('inputs')"
><ng-include
data-table-type=
"inputs"
src=
"'/modules/lineage/views/lineage.html'"
/></tab>
<tab
data-heading=
"Lineage"
data-ng-if=
"isTable"
data-disable=
"!tableName"
data-select=
"onActivate('io')"
><ng-include
data-table-type=
"io"
src=
"'/modules/lineage_io/views/lineage_io.html'"
/></tab>
</tabset>
</tabset>
</div>
</div>
</div>
</div>
dashboard/public/modules/lineage_io/Find Results
0 → 100644
View file @
cf2c8bc0
Searching 16184 files for "LineageController"
/Users/anilgayakwad/MPR/Anil/incubator-atlas/dashboard/public/modules/lineage/lineageController.js:
18 'use strict';
19
20: angular.module('dgc.lineage').controller('LineageController', ['$element', '$scope', '$state', '$stateParams', 'lodash', 'LineageResource', 'd3', 'DetailsResource', '$q',
21 function($element, $scope, $state, $stateParams, _, LineageResource, d3, DetailsResource, $q) {
22 var guidsList = [];
/Users/anilgayakwad/MPR/Anil/incubator-atlas/dashboard/public/modules/lineage/views/lineage.html:
17 -->
18
19: <div class="lineage-viz" data-ng-controller="LineageController">
20 <button type="button" class="btn btn-primary pull-right" ng-click="onReset()">
21 Reset
2 matches across 2 files
Searching 16184 files for "lineage.html"
/Users/anilgayakwad/MPR/Anil/incubator-atlas/dashboard/public/modules/details/views/details.html:
43 </tab>
44 <tab data-heading="Schema" data-ng-if="isTable"><ng-include src="'/modules/details/views/schema.html'"/></tab>
45: <tab data-heading="Output" data-ng-if="isTable" data-disable="!tableName" data-select="onActivate('outputs')"><ng-include data-table-type="outputs" src="'/modules/lineage/views/lineage.html'"/></tab>
46: <tab data-heading="Input" data-ng-if="isTable" data-disable="!tableName" data-select="onActivate('inputs')"><ng-include data-table-type="inputs" src="'/modules/lineage/views/lineage.html'"/></tab>
47
48 <tab data-heading="Lineage" data-ng-if="isTable" data-disable="!tableName" data-select="onActivate('io')"><ng-include data-table-type="io" src="'/modules/lineage_io/views/lineage_io.html'"/></tab>
2 matches in 1 file
dashboard/public/modules/lineage_io/lineage_ioController.js
0 → 100644
View file @
cf2c8bc0
This diff is collapsed.
Click to expand it.
dashboard/public/modules/lineage_io/lineage_ioModule.js
0 → 100644
View file @
cf2c8bc0
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
angular
.
module
(
'dgc.lineage_io'
,
[]);
dashboard/public/modules/lineage_io/lineage_ioResource.js
0 → 100644
View file @
cf2c8bc0
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
angular
.
module
(
'dgc.lineage_io'
).
factory
(
'Lineage_ioResource'
,
[
'$resource'
,
function
(
$resource
)
{
return
$resource
(
'/api/atlas/lineage/hive/table/:tableName/:type/graph'
,
{});
}]);
dashboard/public/modules/lineage_io/views/lineage_io.html
0 → 100644
View file @
cf2c8bc0
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<div
class=
"lineage-viz"
data-ng-controller=
"Lineage_ioController"
>
<button
type=
"button"
class=
"btn btn-primary pull-right"
ng-click=
"onReset()"
>
Reset
</button>
<div
class=
"graph"
>
<h4
data-ng-if=
"!requested && !lineageData"
>
No lineage data found
</h4>
<i
data-ng-if=
"requested"
class=
"fa fa-spinner fa-spin fa-5x"
></i>
<svg
>
<g/>
</svg>
</div>
</div>
release-log.txt
View file @
cf2c8bc0
...
@@ -9,6 +9,7 @@ ATLAS-54 Rename configs in hive hook (shwethags)
...
@@ -9,6 +9,7 @@ ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (suma.shivaprasad via shwethags)
ATLAS-3 Mixed Index creation fails with Date types (suma.shivaprasad via shwethags)
ALL CHANGES:
ALL CHANGES:
ATLAS-138 Combine Input/Output graph ( Anilsg via Suma Shivaprasad )
ATLAS-128 DSL - Add support for comparisions on list type (suma.shivaprasad via shwethags)
ATLAS-128 DSL - Add support for comparisions on list type (suma.shivaprasad via shwethags)
ATLAS-168 Atlas UI - Max column in hive 4 (darshankumar89 via shwethags)
ATLAS-168 Atlas UI - Max column in hive 4 (darshankumar89 via shwethags)
ATLAS-155 Images do not show up on the dashboard (darshankumar89 via shwethags)
ATLAS-155 Images do not show up on the dashboard (darshankumar89 via shwethags)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment