/SpagoBI

SpagoBI

Primary LanguageJavaScript

#SpagoBI

License badge Documentation badge Docker badge Support badge

Introduction

This is the source code repository for SpagoBI Server, that is the main component of the SpagoBI suite.

SpagoBI is also part of the FIWARE community, being the reference implementation of the Data Visualization GE. Check the FIWARE Catalogue entry for SpagoBI.

Any feedback on this documentation is highly welcome, including bugs, typos or things you think should be included but aren't. You can use the SpagoBI tracker to provide feedbacks.

You can find the User & Programmer's Manual and the Administration Guide on readthedocs.org

GEi overall description

SpagoBI is the only entirely Open Source Business Intelligence suite. It covers all the analytical areas of Business Intelligence projects, with innovative themes and engines.

If this is your first contact with SpagoBI, it is highly recommended to have a look at its Demo.

Install

Install documentation for SpagoBI can be found at the corresponding section of the Admin Manual.

Running

How to start and stop SpagoBI can be found at the corresponding section of the Admin Manual.

Top

REST API Example

In order to retrieve information about a specified DataSet (RestMetersValues in this example):

curl http://<spagobi-url>/SpagoBI/restful-services/2.0/datasets/RestMetersValues --header '<authentication header>' | python -mjson.tool

{
    "active": true,
    "categoryId": 150,
    "commonInfo": {
        "organization": null,
        "sbiVersionDe": null,
        "sbiVersionIn": "4.0",
        "sbiVersionUp": null,
        "timeDe": null,
        "timeIn": 1441025411000,
        "timeUp": null,
        "userDe": null,
        "userIn": "biadmin",
        "userUp": null
    },
    "configuration": {
        "restAddress": "http://192.168.2.137:1026/v1/queryContext",
        "restDirectlyJSONAttributes": "false",
        "restFetchSize": "limit",
        "restHttpMethod": "Post",
        "restJsonPathAttributes": [
            {
                "jsonPathType": "string",
                "jsonPathValue": "pros3",
                "name": "id"
            },
            {
                "jsonPathType": "double",
                "jsonPathValue": "$.contextResponses[?(@.contextElement.id==pros3_Meter)].contextElement.attributes[?(@.name==upstreamActivePower)].value",
                "name": "upstreamActivePower"
            },
           ...

Top

API Reference Documentation

Top

SpagoBI User & Programming manuals

Top

Advanced topics

Top

License

You can find details about the license of SpagoBI suite on the SpagoBI site.

Top