Skip to content

Commit

Permalink
updated readme and fixed widgets names
Browse files Browse the repository at this point in the history
  • Loading branch information
jakcpto committed Sep 13, 2022
1 parent 9a3c52d commit ce1e360
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 6 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ Project made with InterSystems IRIS BI (DeepSee), Power BI and Logi Report Desig

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

[Iris BI DC analytics](http://public-analytics.community.intersystems.com/dsw/index.html#/DCANALYTICS/BasicDashboards)

Login: user
Password: userp@$$

[Iris BI DC analytics](http://public-analytics.community.intersystems.com/dsw/index.html#/DCANALYTICS/BasicDashboards)

Login: _SYSTEM
Password: SYS

### How to run DC analytics on a personal laptop:
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.

Expand Down
Binary file not shown.
14 changes: 10 additions & 4 deletions analytic_dashboards/Tableau/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,24 @@

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.

"Monthly_EnCommunityAnalytics public demo.twb" connected to online public demo. Credentials for AtScale: login: user password: userp@ss

"Monthly_EnCommunityAnalytics local.twb" connected to our local container. Credentials for AtScale: login: admin password: admin

Tableau works in direct connection mode. Loading data may take up to ten minutes

## To an existing report
If you want to add a data source to an existing report,
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.

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

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

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

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

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

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

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

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

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


47 changes: 47 additions & 0 deletions atscale-server/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
## Using a vanilla AtScale image

You can run a vanilla AtScale image with this command:

```
docker run \
--restart=always \
--name atscale \
--hostname atscale \
--tty \
-v atscale-data:/opt/atscale/data \
-v atscale-conf:/opt/atscale/conf \
-v atscale-log:/opt/atscale/log \
-p 10500:10500 \
-p 10502:10502 \
-p 10503:10503 \
-p 10525:10525 \
-p 11111:11111 \
-d containers.intersystems.com/intersystems/adaptive-analytics:2021.3.0.3934
```

You may find the following commands useful:

Print container log:

```
docker logs -f atscale
```

Delete container:

```
docker rm -f atscale
```

Remove all volumes (atscale settings):

```
docker volume rm atscale-data atscale-log atscale-conf
```

Remove image from atscale:

```
docker image rm containers.intersystems.com/intersystems/adaptive-analytics:2021.3.0.3934
```

## atscale-server description

### Changing the port to connect Iris-dataset
Expand Down
Empty file modified iris/src/dfi/BasicDashboards/Posts.dashboard.xml
100644 → 100755
Empty file.

0 comments on commit ce1e360

Please sign in to comment.