Skip to content

Commit ce1e360

Browse files
committed
updated readme and fixed widgets names
1 parent 9a3c52d commit ce1e360

File tree

5 files changed

+62
-6
lines changed

5 files changed

+62
-6
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@ Project made with InterSystems IRIS BI (DeepSee), Power BI and Logi Report Desig
1111

1212
[Instance of Adaptive Analytics powered by AtScale](http://atscale-public.demo.community.intersystems.com:10500/login)
1313

14-
[Iris BI DC analytics](http://public-analytics.community.intersystems.com/dsw/index.html#/DCANALYTICS/BasicDashboards)
15-
1614
Login: user
1715
Password: userp@$$
1816

17+
[Iris BI DC analytics](http://public-analytics.community.intersystems.com/dsw/index.html#/DCANALYTICS/BasicDashboards)
18+
19+
Login: _SYSTEM
20+
Password: SYS
21+
1922
### How to run DC analytics on a personal laptop:
2023
First, you need to clone this repository to your local machine. Below in the text we will use relative paths to files when describing what is where. We assume that you are already in the project's root directory.
2124

Binary file not shown.

analytic_dashboards/Tableau/README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,24 @@
22

33
If you are new in Tableau you can get acquainted with the dashboards using the trial version of the product. You can download Tableau [here](https://www.tableau.com/products/desktop/download). You will be asked to fill in information about yourself. Tableau have their [get started tutorial](https://help.tableau.com/current/guides/get-started-tutorial/en-us/get-started-tutorial-home.htm). You will finde there meven more than you need to explore and change our dashdoards.
44

5+
"Monthly_EnCommunityAnalytics public demo.twb" connected to online public demo. Credentials for AtScale: login: user password: userp@ss
6+
7+
"Monthly_EnCommunityAnalytics local.twb" connected to our local container. Credentials for AtScale: login: admin password: admin
8+
9+
Tableau works in direct connection mode. Loading data may take up to ten minutes
10+
511
## To an existing report
612
If you want to add a data source to an existing report,
713
select the **Data Source** tab on the tab bar below and click on the Tableau icon in the top left, then follow the steps above.
814

915
## Authorization in the
1016
Tableau data source will ask you to enter your username and password from Atscale (admin/admin)
1117

12-
![Authorization](https://github.com/teccod/AtScale-Tableau-DC/blob/main/readme_img/7.png)
18+
![Authorization](https://user-images.githubusercontent.com/91419671/189289302-fda2cab8-92d9-4802-beaa-2b421e4f2674.png)
1319

1420
After successful authorization your cube will appear in the data sources and you can get started.
1521

16-
![Cube in the report](https://github.com/teccod/AtScale-Tableau-DC/blob/main/readme_img/8.png)
22+
![Cube in the report](https://user-images.githubusercontent.com/91419671/189289522-03bfa04d-806e-4680-a27a-aec325c3aca5.png)
1723

1824
The TDS file is XML, so it won't be too hard to fix this XML in case
1925
you have republished the project under a different name, or made changes to the hostname of the Atscale server.
@@ -22,10 +28,10 @@ You can find TDS files here: "analytic_dashboards/Tableau/tds/"
2228

2329
You can also replace the data source by right-clicking on it and selecting *Replace Data Source...*
2430

25-
![Source replacement 1](https://github.com/teccod/AtScale-Tableau-DC/blob/main/readme_img/9.png)
31+
![Source replacement 1](https://user-images.githubusercontent.com/91419671/189289604-248e8047-4c1d-4a77-8cff-65a77c11f8f5.png)
2632

2733
Then you need to select the current and new data source in the window that appears
2834

29-
![Source replacement 2](https://github.com/teccod/AtScale-Tableau-DC/blob/main/readme_img/10.png)
35+
![Source replacement 2](https://user-images.githubusercontent.com/91419671/189289659-ce92657d-63b2-4c67-b9fd-de14d264b1c8.png)
3036

3137

atscale-server/README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
## Using a vanilla AtScale image
2+
3+
You can run a vanilla AtScale image with this command:
4+
5+
```
6+
docker run \
7+
--restart=always \
8+
--name atscale \
9+
--hostname atscale \
10+
--tty \
11+
-v atscale-data:/opt/atscale/data \
12+
-v atscale-conf:/opt/atscale/conf \
13+
-v atscale-log:/opt/atscale/log \
14+
-p 10500:10500 \
15+
-p 10502:10502 \
16+
-p 10503:10503 \
17+
-p 10525:10525 \
18+
-p 11111:11111 \
19+
-d containers.intersystems.com/intersystems/adaptive-analytics:2021.3.0.3934
20+
```
21+
22+
You may find the following commands useful:
23+
24+
Print container log:
25+
26+
```
27+
docker logs -f atscale
28+
```
29+
30+
Delete container:
31+
32+
```
33+
docker rm -f atscale
34+
```
35+
36+
Remove all volumes (atscale settings):
37+
38+
```
39+
docker volume rm atscale-data atscale-log atscale-conf
40+
```
41+
42+
Remove image from atscale:
43+
44+
```
45+
docker image rm containers.intersystems.com/intersystems/adaptive-analytics:2021.3.0.3934
46+
```
47+
148
## atscale-server description
249

350
### Changing the port to connect Iris-dataset

iris/src/dfi/BasicDashboards/Posts.dashboard.xml

100644100755
File mode changed.

0 commit comments

Comments
 (0)