Giter Club home page Giter Club logo

Comments (27)

jessemarco avatar jessemarco commented on August 13, 2024

It is running, but can not access it.

from remp.

rootpd avatar rootpd commented on August 13, 2024

Seems like you have newer version of Docker (looks like MacOS) which doesn't need Docker Machine anymore. Can you run docker-compose ps for me please?

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Thank you for quick response. Appreciate.
Sure.

I have Ubuntu 18.04.3 LTS
Docker version 19.03.3, build a872fc2f86

Here is output of docker-compose ps

        Name                      Command               State              Ports            
--------------------------------------------------------------------------------------------
remp_adminer_1            docker-php-entrypoint dock ...   Up      9000/tcp                    
remp_beam_1                docker-php-entrypoint dock ...   Up      9000/tcp                    
remp_beam_segments_1   dockerize -timeout 1m -wai ...   Up                                  
remp_beam_tracker_1    dockerize -timeout 1m -wai ...   Up                                  
remp_campaign_1        docker-php-entrypoint dock ...   Up      9000/tcp                    
remp_elasticsearch_1   /usr/local/bin/docker-entr ...   Up      9200/tcp, 9300/tcp          
remp_kafka_1           ./kafka-start.sh                 Up      2181/tcp, 9092/tcp          
remp_kibana_1          /bin/bash /usr/local/bin/k ...   Up      5601/tcp                    
remp_mailer_1          docker-php-entrypoint dock ...   Up      9000/tcp                    
remp_mailhog_1         MailHog                          Up      1025/tcp, 8025/tcp          
remp_mysql_1           docker-entrypoint.sh --cha ...   Up      3306/tcp, 33060/tcp         
remp_nginx_1           /bin/bash -c envsubst '$NG ...   Up      80/tcp                      
remp_redis_1           docker-entrypoint.sh redis ...   Up      6379/tcp                    
remp_sso_1             docker-php-entrypoint dock ...   Up      9000/tcp                    
remp_telegraf_1        /entrypoint.sh dockerize - ...   Up      8092/udp, 8094/tcp, 8125/udp

from remp.

rootpd avatar rootpd commented on August 13, 2024

Hi. The default docker-compose.yml configuration can be extended by using docker-compose.override.yml file which can extend the configuration by settings specific to your environment. This mostly include exposing the services on ports, that are available on your machine.

The reason why you can't access the service is that nginx service doesn't expose port 80 to your host machine. Please copy docker-compose.override.yml.example to docker-compose.override.yml and alter it as necessary.

The one setting important for you is ports section of nginx service. I recommend to use following setup:

  nginx:
    environment:
      NGINX_PORT: "80"
    ports:
      - "80:80"

which exposes the services at port 80 on your host machine and you'll be able to access the services on standard domains (e.g. http://sso.remp.press).

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

I build clean remp from clean clone and set-up yml file "docker-compose.override.yml" by your recommendation. No luck.

all docker images is running, all successfully installed. Problem preserve.

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Here is my complete output:

~/Apps/remp$ docker-compose up
Starting remp_redis_1 ... done
Starting remp_mailhog_1 ... done
Starting remp_adminer_1 ... done
Starting remp_elasticsearch_1 ... done
Starting remp_kibana_1 ... done
Starting remp_kafka_1 ... done
Starting remp_mysql_1 ... done
Starting remp_nginx_1 ... done
Starting remp_beam_tracker_1 ... done
Starting remp_telegraf_1 ... done
Starting remp_beam_segments_1 ... done
Starting remp_campaign_1 ... done
Starting remp_sso_1 ... done
Starting remp_beam_1 ... done
Starting remp_mailer_1 ... done
Attaching to remp_kafka_1, remp_mailhog_1, remp_beam_tracker_1, remp_redis_1, remp_mysql_1, remp_elasticsearch_1, remp_kibana_1, remp_adminer_1, remp_telegraf_1, remp_beam_segments_1, remp_nginx_1, remp_beam_1, remp_mailer_1, remp_campaign_1, remp_sso_1
kafka_1 | Starting kafka
kafka_1 | waiting for kafka to be ready
kafka_1 | /usr/lib/python2.7/dist-packages/supervisor/options.py:296: UserWarning: Supervisord is running as root and it is searching for its configuration file in default locations (including its current working directory); you probably want to specify a "-c" argument specifying an absolute path to a configuration file for improved security.
kafka_1 | 'Supervisord is running as root and it is searching '
kafka_1 | 2020-01-15 21:49:32,201 CRIT Supervisor running as root (no user in config file)
kafka_1 | 2020-01-15 21:49:32,201 WARN Included extra file "/etc/supervisor/conf.d/kafka.conf" during parsing
kafka_1 | 2020-01-15 21:49:32,201 WARN Included extra file "/etc/supervisor/conf.d/zookeeper.conf" during parsing
kafka_1 | Unlinking stale socket /var/run/supervisor.sock
kafka_1 | 2020-01-15 21:49:32,526 INFO RPC interface 'supervisor' initialized
kafka_1 | 2020-01-15 21:49:32,526 CRIT Server 'unix_http_server' running without any HTTP authentication checking
kafka_1 | 2020-01-15 21:49:32,530 INFO supervisord started with pid 7
kafka_1 | 2020-01-15 21:49:33,533 INFO spawned: 'zookeeper' with pid 13
kafka_1 | 2020-01-15 21:49:33,534 INFO spawned: 'kafka' with pid 14
kafka_1 | 2020-01-15 21:49:34,567 INFO success: zookeeper entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
kafka_1 | 2020-01-15 21:49:34,567 INFO success: kafka entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
kafka_1 | waiting for kafka to be ready
mailhog_1 | 2020/01/15 21:49:32 Using in-memory storage
mailhog_1 | 2020/01/15 21:49:32 [SMTP] Binding to address: 0.0.0.0:1025
mailhog_1 | 2020/01/15 21:49:32 Serving under http://0.0.0.0:8025/
mailhog_1 | [HTTP] Binding to address: 0.0.0.0:8025
mailhog_1 | Creating API v1 with WebPath:
mailhog_1 | Creating API v2 with WebPath:
beam_tracker_1 | 2020/01/15 21:49:33 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/15 21:49:33 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/15 21:49:33 Problem with dial: dial tcp 172.18.0.6:2181: connect: connection refused. Sleeping 10s
beam_tracker_1 | 2020/01/15 21:49:34 Problem with dial: dial tcp 172.18.0.5:3306: connect: connection refused. Sleeping 10s
beam_tracker_1 | 2020/01/15 21:49:43 Connected to tcp://kafka:2181
beam_tracker_1 | 2020/01/15 21:49:44 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/15 21:49:44 [INFO] connecting to broker bind=kafka:9092
beam_tracker_1 | 2020/01/15 21:49:45 kafka: client has run out of available brokers to talk to (Is your cluster reachable?)
beam_tracker_1 | 2020/01/15 21:49:45 Command exited with error: exit status 1
mysql_1 | 2020-01-15T21:49:34.646370Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
mysql_1 | 2020-01-15T21:49:34.648621Z 0 [Note] mysqld (mysqld 5.7.25) starting as process 1 ...
mysql_1 | 2020-01-15T21:49:34.653822Z 0 [Note] InnoDB: PUNCH HOLE support available
mysql_1 | 2020-01-15T21:49:34.653858Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mysql_1 | 2020-01-15T21:49:34.653866Z 0 [Note] InnoDB: Uses event mutexes
mysql_1 | 2020-01-15T21:49:34.653872Z 0 [Note] InnoDB: GCC builtin atomic_thread_fence() is used for memory barrier
mysql_1 | 2020-01-15T21:49:34.653878Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
mysql_1 | 2020-01-15T21:49:34.653884Z 0 [Note] InnoDB: Using Linux native AIO
mysql_1 | 2020-01-15T21:49:34.654271Z 0 [Note] InnoDB: Number of pools: 1
mysql_1 | 2020-01-15T21:49:34.654431Z 0 [Note] InnoDB: Using CPU crc32 instructions
mysql_1 | 2020-01-15T21:49:34.657200Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
mysql_1 | 2020-01-15T21:49:34.675027Z 0 [Note] InnoDB: Completed initialization of buffer pool
mysql_1 | 2020-01-15T21:49:34.677348Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
mysql_1 | 2020-01-15T21:49:34.689903Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
mysql_1 | 2020-01-15T21:49:34.691790Z 0 [Note] InnoDB: Log scan progressed past the checkpoint lsn 15953997
mysql_1 | 2020-01-15T21:49:34.691827Z 0 [Note] InnoDB: Doing recovery: scanned up to log sequence number 15954006
mysql_1 | 2020-01-15T21:49:34.691841Z 0 [Note] InnoDB: Database was not shutdown normally!
mysql_1 | 2020-01-15T21:49:34.691848Z 0 [Note] InnoDB: Starting crash recovery.
mysql_1 | 2020-01-15T21:49:34.817020Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
mysql_1 | 2020-01-15T21:49:34.817429Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
mysql_1 | 2020-01-15T21:49:34.817693Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
mysql_1 | 2020-01-15T21:49:34.890622Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
mysql_1 | 2020-01-15T21:49:34.891893Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
mysql_1 | 2020-01-15T21:49:34.891924Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
mysql_1 | 2020-01-15T21:49:34.893191Z 0 [Note] InnoDB: 5.7.25 started; log sequence number 15954006
mysql_1 | 2020-01-15T21:49:34.893620Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
mysql_1 | 2020-01-15T21:49:34.894576Z 0 [Note] Plugin 'FEDERATED' is disabled.
mysql_1 | 2020-01-15T21:49:34.903032Z 0 [Note] InnoDB: Buffer pool(s) load completed at 200115 21:49:34
mysql_1 | 2020-01-15T21:49:34.915160Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
mysql_1 | 2020-01-15T21:49:34.915525Z 0 [Warning] CA certificate ca.pem is self signed.
redis_1 | 1:C 15 Jan 21:49:33.793 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis_1 | .
redis_1 | .-__ ''-._ redis_1 | _.- . . ''-.
Redis 3.2.12 (00000000/0) 64 bit
redis_1 | .- .-```. ```\/ _.,_ ''-._ redis_1 | ( ' , .-` | `, ) Running in standalone mode redis_1 | |`-._`-...-` __...-.-.|'_.-'| Port: 6379 redis_1 | | -. ._ / _.-' | PID: 1 redis_1 | -._ -._ -./ .-' .-'
redis_1 | |-._-.
-.__.-' _.-'_.-'| redis_1 | | -.
-._ _.-'_.-' | http://redis.io redis_1 | -._ -._-.
.-'.-' .-'
redis_1 | |-._-.
-.__.-' _.-'_.-'| redis_1 | | -.
-._ _.-'_.-' | redis_1 | -._ -._-.
.-'_.-' _.-'
redis_1 | -._ -.
.-' _.-'
redis_1 | -._ _.-' redis_1 | -.
_.-'
redis_1 |
redis_1 | 1:M 15 Jan 21:49:33.795 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
redis_1 | 1:M 15 Jan 21:49:33.795 # Server started, Redis version 3.2.12
redis_1 | 1:M 15 Jan 21:49:33.795 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
redis_1 | 1:M 15 Jan 21:49:33.795 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
redis_1 | 1:M 15 Jan 21:49:33.795 * DB loaded from disk: 0.000 seconds
redis_1 | 1:M 15 Jan 21:49:33.795 * The server is now ready to accept connections on port 6379
mysql_1 | 2020-01-15T21:49:34.928163Z 0 [Note] Server hostname (bind-address): '*'; port: 3306
mysql_1 | 2020-01-15T21:49:34.928455Z 0 [Note] IPv6 is available.
mysql_1 | 2020-01-15T21:49:34.928614Z 0 [Note] - '::' resolves to '::';
mysql_1 | 2020-01-15T21:49:34.928744Z 0 [Note] Server socket created on IP: '::'.
mysql_1 | 2020-01-15T21:49:34.937355Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
mysql_1 | 2020-01-15T21:49:34.945211Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.946526Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.946736Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.947441Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.947604Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.947771Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.960093Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.960528Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
mysql_1 | 2020-01-15T21:49:34.971221Z 0 [Note] Event Scheduler: Loaded 0 events
mysql_1 | 2020-01-15T21:49:34.971640Z 0 [Note] mysqld: ready for connections.
mysql_1 | Version: '5.7.25' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server (GPL)
mysql_1 | 2020-01-15T21:49:45.269256Z 6 [Note] Got an error reading communication packets
elasticsearch_1 | Starting elasticsearch
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
adminer_1 | 2020/01/15 21:49:37 Waiting for: tcp://mysql:3306
adminer_1 | 2020/01/15 21:49:37 Waiting for: tcp://redis:6379
adminer_1 | 2020/01/15 21:49:37 Connected to tcp://mysql:3306
adminer_1 | 2020/01/15 21:49:37 Connected to tcp://redis:6379
adminer_1 | cp: cannot stat '.env.example': No such file or directory
adminer_1 | Composer could not find a composer.json file in /root
adminer_1 | To initialize a project, please create a composer.json file as described in the https://getcomposer.org/ "Getting Started" section
adminer_1 | yarn install v1.21.1
adminer_1 | [1/4] Resolving packages...
adminer_1 | success Already up-to-date.
adminer_1 | Done in 0.35s.
adminer_1 | /root/remp.sh: line 15: npm: command not found
adminer_1 | yarn run v1.21.1
adminer_1 | error Couldn't find a package.json file in "/root"
adminer_1 | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
adminer_1 | [15-Jan-2020 21:49:45] NOTICE: fpm is running, pid 64
adminer_1 | [15-Jan-2020 21:49:45] NOTICE: ready to handle connections
telegraf_1 | 2020/01/15 21:49:38 Waiting for: tcp://kafka:2181
telegraf_1 | 2020/01/15 21:49:38 Waiting for: tcp://kafka:9092
telegraf_1 | 2020/01/15 21:49:38 Problem with dial: dial tcp 172.18.0.6:9092: getsockopt: connection refused. Sleeping 10s
telegraf_1 | 2020/01/15 21:49:38 Connected to tcp://kafka:2181
beam_segments_1 | 2020/01/15 21:49:39 Waiting for: tcp://elasticsearch:9200
beam_segments_1 | 2020/01/15 21:49:39 Waiting for: tcp://mysql:3306
beam_segments_1 | 2020/01/15 21:49:39 Connected to tcp://mysql:3306
beam_segments_1 | 2020/01/15 21:49:39 Problem with dial: dial tcp 172.18.0.8:9200: connect: connection refused. Sleeping 10s
nginx_1 | 2020/01/15 21:49:39 [emerg] 1#1: a duplicate listen 0.0.0.0:80 in /etc/nginx/conf.d/default.conf:8
nginx_1 | nginx: [emerg] a duplicate listen 0.0.0.0:80 in /etc/nginx/conf.d/default.conf:8
beam_1 | 2020/01/15 21:49:43 Waiting for: tcp://mysql:3306
beam_1 | 2020/01/15 21:49:43 Waiting for: tcp://redis:6379
beam_1 | 2020/01/15 21:49:43 Connected to tcp://mysql:3306
beam_1 | 2020/01/15 21:49:43 Connected to tcp://redis:6379
beam_1 | Loading composer repositories with package information
beam_1 | Installing dependencies (including require-dev) from lock file
beam_1 | Package operations: 165 installs, 0 updates, 0 removals
beam_1 | As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.
beam_1 | This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.
beam_1 | Installing 'unzip' may remediate them.
mailer_1 | 2020/01/15 21:49:43 Waiting for: tcp://mysql:3306
mailer_1 | 2020/01/15 21:49:43 Waiting for: tcp://redis:6379
mailer_1 | 2020/01/15 21:49:44 Connected to tcp://mysql:3306
mailer_1 | 2020/01/15 21:49:44 Connected to tcp://redis:6379
mailer_1 | Loading composer repositories with package information
mailer_1 | Installing dependencies (including require-dev) from lock file
mailer_1 | Package operations: 123 installs, 0 updates, 0 removals
mailer_1 | As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.
mailer_1 | This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.
mailer_1 | Installing 'unzip' may remediate them.
campaign_1 | 2020/01/15 21:49:45 Waiting for: tcp://mysql:3306
campaign_1 | 2020/01/15 21:49:45 Waiting for: tcp://redis:6379
campaign_1 | 2020/01/15 21:49:45 Connected to tcp://redis:6379
campaign_1 | 2020/01/15 21:49:45 Connected to tcp://mysql:3306
campaign_1 | Loading composer repositories with package information
campaign_1 | Installing dependencies (including require-dev) from lock file
campaign_1 | Package operations: 160 installs, 0 updates, 0 removals
campaign_1 | As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.
campaign_1 | This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.
campaign_1 | Installing 'unzip' may remediate them.
sso_1 | 2020/01/15 21:49:46 Waiting for: tcp://mysql:3306
sso_1 | 2020/01/15 21:49:46 Waiting for: tcp://redis:6379
sso_1 | 2020/01/15 21:49:46 Connected to tcp://mysql:3306
sso_1 | 2020/01/15 21:49:46 Connected to tcp://redis:6379
beam_1 | - Installing kylekatarnls/update-helper (1.2.0): DownloadinDownloading (100%)
mailer_1 | - Installing ocramius/package-versions (1.4.2): DownloadingDownloading (100%)
sso_1 | Loading composer repositories with package information
sso_1 | Installing dependencies (including require-dev) from lock file
sso_1 | Package operations: 150 installs, 0 updates, 0 removals
sso_1 | As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension.
sso_1 | This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost.
sso_1 | Installing 'unzip' may remediate them.
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
mysql_1 | 2020-01-15T21:49:47.649130Z 2 [Note] Got timeout reading communication packets
remp_nginx_1 exited with code 1
telegraf_1 | 2020/01/15 21:49:48 Problem with dial: dial tcp 172.18.0.6:9092: getsockopt: connection refused. Sleeping 10s
kafka_1 | 2020-01-15 21:49:48,788 INFO exited: kafka (exit status 1; not expected)
beam_1 | - Installing symfony/polyfill-php73 (v1.13.1): Downloading Downloading (100%)
campaign_1 | - Installing kylekatarnls/update-helper (1.2.0): DownloadinDownloading (100%)
mailer_1 | - Installing symfony/polyfill-ctype (v1.13.1): Downloading Downloading (100%)
mysql_1 | 2020-01-15T21:49:49.068812Z 3 [Note] Got timeout reading communication packets
beam_segments_1 | 2020/01/15 21:49:49 Problem with dial: dial tcp 172.18.0.8:9200: connect: connection refused. Sleeping 10s
mysql_1 | 2020-01-15T21:49:49.254263Z 9 [Note] Got an error reading communication packets
elasticsearch_1 | [2020-01-15T21:49:49,494][INFO ][o.e.n.Node ] [] initializing ...
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
sso_1 | - Installing kylekatarnls/update-helper (1.2.0): DownloadinDownloading (100%)
kafka_1 | 2020-01-15 21:49:49,792 INFO spawned: 'kafka' with pid 322
remp_beam_tracker_1 exited with code 1
elasticsearch_1 | [2020-01-15T21:49:49,941][INFO ][o.e.e.NodeEnvironment ] [VvR31nN] using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/mapper/ubuntu--vg-root)]], net usable_space [46.4gb], net total_space [231.5gb], types [ext4]
elasticsearch_1 | [2020-01-15T21:49:49,942][INFO ][o.e.e.NodeEnvironment ] [VvR31nN] heap size [990.7mb], compressed ordinary object pointers [true]
elasticsearch_1 | [2020-01-15T21:49:50,415][INFO ][o.e.n.Node ] node name [VvR31nN] derived from node ID [VvR31nNPTbKbEAoqC97OvQ]; set [node.name] to override
elasticsearch_1 | [2020-01-15T21:49:50,416][INFO ][o.e.n.Node ] version[6.2.2], pid[9], build[10b1edd/2018-02-16T19:01:30.685723Z], OS[Linux/4.15.0-72-generic/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/1.8.0_161/25.161-b14]
elasticsearch_1 | [2020-01-15T21:49:50,421][INFO ][o.e.n.Node ] JVM arguments [-Xms1g, -Xmx1g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Djava.io.tmpdir=/tmp/elasticsearch.nSxnJgTd, -XX:+HeapDumpOnOutOfMemoryError, -XX:+PrintGCDetails, -XX:+PrintGCDateStamps, -XX:+PrintTenuringDistribution, -XX:+PrintGCApplicationStoppedTime, -Xloggc:logs/gc.log, -XX:+UseGCLogFileRotation, -XX:NumberOfGCLogFiles=32, -XX:GCLogFileSize=64m, -Des.cgroups.hierarchy.override=/, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/usr/share/elasticsearch/config]
kafka_1 | 2020-01-15 21:49:50,816 INFO success: kafka entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
campaign_1 | - Installing psr/simple-cache (1.0.1): Downloading (connectDownloading (100%)
beam_1 | - Installing symfony/polyfill-ctype (v1.13.1): Downloading Downloading (100%)
mailer_1 | - Installing symfony/yaml (v3.4.36): Downloading (connectinDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
sso_1 | - Installing cash/lrucache (1.0.0): Downloading (connectingDownloading (100%)
kafka_1 | waiting for kafka to be ready
campaign_1 | - Installing psr/cache (1.0.1):Downloading (100%) )
beam_1 | - Installing symfony/polyfill-mbstring (v1.13.1): DownloadiDownloading (100%)
mysql_1 | 2020-01-15T21:49:53.289000Z 10 [Note] Got an error reading communication packets
mysql_1 | 2020-01-15T21:49:53.452816Z 4 [Note] Got timeout reading communication packets
mailer_1 | - Installing symfony/process (v4.4.1): Downloading (connectDownloading (100%)
mysql_1 | 2020-01-15T21:49:54.015236Z 5 [Note] Got timeout reading communication packets
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
sso_1 | - Installing symfony/polyfill-ctype (v1.13.1): Downloading Downloading (100%)
beam_1 | - Installing symfony/polyfill-php72 (v1.13.1): Downloading Downloading (100%)
mysql_1 | 2020-01-15T21:49:55.430310Z 7 [Note] Got timeout reading communication packets
campaign_1 | - Installing predis/predis (v1.1.1): Downloading (connectinDownloading (100%)
mailer_1 | - Installing symfony/polyfill-mbstring (v1.13.1): DownloadiDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
mysql_1 | 2020-01-15T21:49:56.436899Z 8 [Note] Got timeout reading communication packets
beam_1 | - Installing symfony/polyfill-intl-idn (v1.13.1): DownloadiDownloading (100%)
sso_1 | - Installing symfony/yaml (v4.4.1): Downloading (connectingDownloading (100%)
beam_tracker_1 | 2020/01/15 21:49:57 kafka: client has run out of available brokers to talk to (Is your cluster reachable?)
beam_tracker_1 | 2020/01/15 21:49:57 Command exited with error: exit status 1
mysql_1 | 2020-01-15T21:49:57.444375Z 11 [Note] Got an error reading communication packets
mailer_1 | - Installing psr/log (1.1.2): Downloading (100%)
campaign_1 | - Installing psr/log (1.1.2): Downloading (100%)
telegraf_1 | 2020/01/15 21:49:58 Problem with dial: dial tcp 172.18.0.6:9092: getsockopt: connection refused. Sleeping 10s
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
sso_1 | - Installing symfony/process (v4.4.1): Downloading (connectDownloading (100%)
beam_segments_1 | 2020/01/15 21:49:59 Problem with dial: dial tcp 172.18.0.8:9200: connect: connection refused. Sleeping 10s
beam_1 | - Installing symfony/mime (v5.0.1): Downloading (connectingDownloading (100%)
mailer_1 | - Installing symfony/debug (v4.4.1): Downloading (connectinDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
sso_1 | - Installing psr/container (1.0.0): Downloading (connectingDownloading (100%)
campaign_1 | - Installing cache/tag-interop (1.0.0): Downloading (connecDownloading (100%)
remp_nginx_1 exited with code 1
beam_tracker_1 | 2020/01/15 21:50:00 [INFO] connecting to broker bind=kafka:9092
Exception in thread Thread-46:
Traceback (most recent call last):
File "site-packages/docker/api/client.py", line 261, in _raise_for_status
File "site-packages/requests/models.py", line 940, in raise_for_status
requests.exceptions.HTTPError: 409 Client Error: Conflict for url: http+docker://localhost/v1.25/containers/d6b51e86b31e8370d66d83fd2efe29e36133425e276fc205ddcdefc6133aad66/attach?logs=0&stdout=1&stderr=1&stream=1

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "threading.py", line 916, in _bootstrap_inner
File "threading.py", line 864, in run
File "compose/cli/log_printer.py", line 233, in watch_events
File "compose/container.py", line 215, in attach_log_stream
File "compose/container.py", line 307, in attach
File "site-packages/docker/utils/decorators.py", line 19, in wrapped
File "site-packages/docker/api/container.py", line 61, in attach
File "site-packages/docker/api/client.py", line 400, in _read_from_socket
File "site-packages/docker/api/client.py", line 311, in _get_raw_response_socket
File "site-packages/docker/api/client.py", line 263, in _raise_for_status
File "site-packages/docker/errors.py", line 31, in create_api_error_from_http_exception
docker.errors.APIError: 409 Client Error: Conflict ("b'container d6b51e86b31e8370d66d83fd2efe29e36133425e276fc205ddcdefc6133aad66 is restarting, wait until the container is running'")

beam_1 | - Installing symfony/http-foundation (v4.4.1): Downloading Downloading (100%)
kafka_1 | creating topics: beam_events:1:1
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
sso_1 | - Installing symfony/service-contracts (v2.0.1): DownloadinDownloading (100%)
campaign_1 | - Installing cache/adapter-common (1.1.0): Downloading (conDownloading (100%)
mailer_1 | - Installing symfony/console (v3.4.36): Downloading (connecDownloading (100%)
remp_nginx_1 exited with code 1
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
beam_tracker_1 | 2020/01/15 21:50:04 property cache reloaded
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] starting property caching
beam_tracker_1 | 2020/01/15 21:50:04 entity schema cache reloaded
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] mount ctrl=Swagger files=swagger/swagger.json route=GET /swagger.json
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] mount ctrl=Track action=Commerce route=POST /track/commerce
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] mount ctrl=Track action=Entity route=POST /track/entity
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] mount ctrl=Track action=Event route=POST /track/event
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] mount ctrl=Track action=Pageview route=POST /track/pageview
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] starting server bind=:8081
beam_tracker_1 | 2020/01/15 21:50:04 [INFO] starting entity schemas caching
beam_1 | - Installing symfony/event-dispatcher-contracts (v1.1.7): DDownloading (100%)
campaign_1 | - Installing cache/hierarchical-cache (1.0.0): Downloading Downloading (100%)
elasticsearch_1 | [2020-01-15T21:50:04,839][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [aggs-matrix-stats]
elasticsearch_1 | [2020-01-15T21:50:04,840][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [analysis-common]
elasticsearch_1 | [2020-01-15T21:50:04,840][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [ingest-common]
elasticsearch_1 | [2020-01-15T21:50:04,841][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [lang-expression]
elasticsearch_1 | [2020-01-15T21:50:04,842][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [lang-mustache]
elasticsearch_1 | [2020-01-15T21:50:04,843][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [lang-painless]
elasticsearch_1 | [2020-01-15T21:50:04,846][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [mapper-extras]
elasticsearch_1 | [2020-01-15T21:50:04,847][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [parent-join]
elasticsearch_1 | [2020-01-15T21:50:04,848][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [percolator]
elasticsearch_1 | [2020-01-15T21:50:04,848][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [rank-eval]
elasticsearch_1 | [2020-01-15T21:50:04,849][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [reindex]
elasticsearch_1 | [2020-01-15T21:50:04,850][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [repository-url]
elasticsearch_1 | [2020-01-15T21:50:04,850][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [transport-netty4]
elasticsearch_1 | [2020-01-15T21:50:04,851][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded module [tribe]
elasticsearch_1 | [2020-01-15T21:50:04,852][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [ingest-geoip]
elasticsearch_1 | [2020-01-15T21:50:04,853][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [ingest-user-agent]
elasticsearch_1 | [2020-01-15T21:50:04,855][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-core]
elasticsearch_1 | [2020-01-15T21:50:04,856][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-deprecation]
elasticsearch_1 | [2020-01-15T21:50:04,856][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-graph]
elasticsearch_1 | [2020-01-15T21:50:04,857][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-logstash]
elasticsearch_1 | [2020-01-15T21:50:04,857][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-ml]
elasticsearch_1 | [2020-01-15T21:50:04,857][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-monitoring]
elasticsearch_1 | [2020-01-15T21:50:04,857][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-security]
elasticsearch_1 | [2020-01-15T21:50:04,857][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-upgrade]
elasticsearch_1 | [2020-01-15T21:50:04,857][INFO ][o.e.p.PluginsService ] [VvR31nN] loaded plugin [x-pack-watcher]
mailer_1 | - Installing psr/container (1.0.0): Downloading (connectingDownloading (100%)
sso_1 | - Installing symfony/polyfill-php73 (v1.13.1): Downloading Downloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
campaign_1 | - Installing cache/predis-adapter (1.0.0): Downloading (conDownloading (100%)
beam_1 | - Installing symfony/event-dispatcher (v4.4.1): DownloadingDownloading (100%)
sso_1 | - Installing symfony/polyfill-mbstring (v1.13.1): DownloadiDownloading (100%)
mailer_1 | - Installing pimple/pimple (v3.2.3): Downloading (connectinDownloading (100%)
telegraf_1 | 2020/01/15 21:50:08 Connected to tcp://kafka:9092
telegraf_1 | 2020-01-15T21:50:08Z I! Starting Telegraf 1.10.4
telegraf_1 | 2020-01-15T21:50:08Z I! Using config file: /etc/telegraf/telegraf.conf
telegraf_1 | 2020-01-15T21:50:08Z I! Loaded inputs: kafka_consumer
telegraf_1 | 2020-01-15T21:50:08Z I! Loaded aggregators:
telegraf_1 | 2020-01-15T21:50:08Z I! Loaded processors:
telegraf_1 | 2020-01-15T21:50:08Z I! Loaded outputs: remp_elasticsearch remp_elasticsearch remp_elasticsearch remp_elasticsearch remp_elasticsearch remp_elasticsearch remp_elasticsearch
telegraf_1 | 2020-01-15T21:50:08Z I! Tags enabled: host=46e69431a66e
telegraf_1 | 2020-01-15T21:50:08Z I! [agent] Config: Interval:1s, Quiet:false, Hostname:"46e69431a66e", Flush Interval:1s
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
campaign_1 | - Installing cash/lrucache (1.0.0): Downloading (connectingDownloading (100%)
beam_segments_1 | 2020/01/15 21:50:09 Problem with dial: dial tcp 172.18.0.8:9200: connect: connection refused. Sleeping 10s
beam_1 | - Installing symfony/var-dumper (v4.4.1): Downloading (connDownloading (100%)
sso_1 | - Installing symfony/console (v4.4.1): Downloading (connectDownloading (100%)
mailer_1 | - Installing deployer/phar-update (v2.1.0): Downloading (coDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
campaign_1 | - Installing symfony/polyfill-ctype (v1.13.1): Downloading Downloading (100%)
mysql_1 | 2020-01-15T21:50:10.812818Z 12 [Note] Got timeout reading communication packets
kafka_1 | WARNING: Due to limitations in metric names, topics with a period ('.') or underscore ('_') could collide. To avoid issues it is best to use either, but not both.
beam_1 | - Installing psr/log (1.1.2): Downloading (100%)
kafka_1 | Error while executing topic command : Topic "beam_events" already exists.
kafka_1 | [2020-01-15 21:50:12,039] ERROR org.apache.kafka.common.errors.TopicExistsException: Topic "beam_events" already exists.
kafka_1 | (kafka.admin.TopicCommand$)
kafka_1 | beam_events:1:1 created
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
campaign_1 | - Installing symfony/yaml (v4.4.1): Downloading (connectingDownloading (100%)
sso_1 | - Installing pimple/pimple (v3.2.3): Downloading (connectinDownloading (100%)
mailer_1 | - Installing deployer/deployer (v6.6.0): Downloading (conneDownloading (100%)
telegraf_1 | 2020-01-15T21:50:13Z E! [agent] Failed to connect to output remp_elasticsearch, retrying in 15s, error was 'health check timeout: Head http://elasticsearch:9200: dial tcp 172.18.0.8:9200: connect: connection refused: no Elasticsearch node available'
beam_1 | - Installing symfony/debug (v4.4.1): Downloading (connectinDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
campaign_1 | - Installing symfony/process (v4.4.1): Downloading (connectDownloading (100%)
beam_1 | - Installing symfony/error-handler (v4.4.1): Downloading (cDownloading (100%)
sso_1 | - Installing deployer/phar-update (v2.1.0): Downloading (coDownloading (100%)
mailer_1 | - Installing deployer/recipes (6.2.2): Downloading (connectDownloading (100%)
campaign_1 | - Installing psr/container (1.0.0): Downloading (connectingDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:16Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
elasticsearch_1 | [2020-01-15T21:50:17,366][INFO ][o.e.x.m.j.p.l.CppLogMessageHandler] [controller/145] [Main.cc@128] controller (64 bit): Version 6.2.2 (Build 61c43548e5e0f2) Copyright (c) 2018 Elasticsearch BV
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:17Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
beam_1 | - Installing symfony/http-kernel (v4.4.1): Downloading (conDownloading (100%)
campaign_1 | - Installing symfony/service-contracts (v2.0.1): DownloadinDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
beam_segments_1 | 2020/01/15 21:50:19 Problem with dial: dial tcp 172.18.0.8:9200: connect: connection refused. Sleeping 10s
mailer_1 | - Installing composer/ca-bundle (1.2.4): Downloading (conneDownloading (100%)
sso_1 | - Installing deployer/deployer (v6.6.0): Downloading (conneDownloading (100%)
elasticsearch_1 | [2020-01-15T21:50:19,529][INFO ][o.e.d.DiscoveryModule ] [VvR31nN] using discovery type [zen]
campaign_1 | - Installing symfony/polyfill-php73 (v1.13.1): Downloading Downloading (100%)
beam_1 | - Installing vlucas/phpdotenv (v2.6.1): Downloading (connecDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
elasticsearch_1 | [2020-01-15T21:50:21,183][INFO ][o.e.n.Node ] initialized
elasticsearch_1 | [2020-01-15T21:50:21,183][INFO ][o.e.n.Node ] [VvR31nN] starting ...
elasticsearch_1 | [2020-01-15T21:50:21,478][INFO ][o.e.t.TransportService ] [VvR31nN] publish_address {127.0.0.1:9300}, bound_addresses {127.0.0.1:9300}
elasticsearch_1 | [2020-01-15T21:50:21,584][WARN ][o.e.b.BootstrapChecks ] [VvR31nN] max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
sso_1 | - Installing deployer/recipes (6.2.2): Downloading (connectDownloading (100%)
mailer_1 | - Installing embed/embed (v3.4.2): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing symfony/polyfill-mbstring (v1.13.1): DownloadiDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed connect to elasticsearch:9200; Connection refused
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["reporting","warning"],"pid":1,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["error","elasticsearch","admin"],"pid":1,"message":"Request error, retrying\nHEAD http://elasticsearch:9200/ => connect ECONNREFUSED 172.18.0.8:9200"}
beam_1 | - Installing symfony/css-selector (v5.0.1): Downloading (coDownloading (100%)
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["security","warning"],"pid":1,"message":"Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["security","warning"],"pid":1,"message":"Session cookies will be transmitted over insecure connections. This is not recommended."}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["warning","elasticsearch","admin"],"pid":1,"message":"Unable to revive connection: http://elasticsearch:9200/"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from yellow to red - Request Timeout after 3000ms","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["listening","info"],"pid":1,"message":"Server running at http://0:5601"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["warning","elasticsearch","admin"],"pid":1,"message":"Unable to revive connection: http://elasticsearch:9200/"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["warning","elasticsearch","admin"],"pid":1,"message":"No living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["error","elasticsearch","data"],"pid":1,"message":"Request error, retrying\nGET http://elasticsearch:9200/_xpack => connect ECONNREFUSED 172.18.0.8:9200"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["warning","elasticsearch","data"],"pid":1,"message":"Unable to revive connection: http://elasticsearch:9200/"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["warning","elasticsearch","data"],"pid":1,"message":"No living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["license","warning","xpack"],"pid":1,"message":"License information from the X-Pack plugin could not be obtained from Elasticsearch for the [data] cluster. Error: No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:23Z","tags":["status","plugin:[email protected]","error"],"pid":1,"state":"red","message":"Status changed from red to red - No Living connections","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
sso_1 | - Installing dnoegel/php-xdg-base-dir (0.1): Downloading (cDownloading (100%)
elasticsearch_1 | [2020-01-15T21:50:24,778][INFO ][o.e.c.s.MasterService ] [VvR31nN] zen-disco-elected-as-master ([0] nodes joined), reason: new_master {VvR31nN}{VvR31nNPTbKbEAoqC97OvQ}{q66kFmZmSBGC7IJin5y6YQ}{127.0.0.1}{127.0.0.1:9300}{ml.machine_memory=16728121344, ml.max_open_jobs=20, ml.enabled=true}
elasticsearch_1 | [2020-01-15T21:50:24,792][INFO ][o.e.c.s.ClusterApplierService] [VvR31nN] new_master {VvR31nN}{VvR31nNPTbKbEAoqC97OvQ}{q66kFmZmSBGC7IJin5y6YQ}{127.0.0.1}{127.0.0.1:9300}{ml.machine_memory=16728121344, ml.max_open_jobs=20, ml.enabled=true}, reason: apply cluster state (from master [master {VvR31nN}{VvR31nNPTbKbEAoqC97OvQ}{q66kFmZmSBGC7IJin5y6YQ}{127.0.0.1}{127.0.0.1:9300}{ml.machine_memory=16728121344, ml.max_open_jobs=20, ml.enabled=true} committed version [1] source [zen-disco-elected-as-master ([0] nodes joined)]])
elasticsearch_1 | [2020-01-15T21:50:24,826][INFO ][o.e.h.n.Netty4HttpServerTransport] [VvR31nN] publish_address {172.18.0.8:9200}, bound_addresses {0.0.0.0:9200}
elasticsearch_1 | [2020-01-15T21:50:24,826][INFO ][o.e.n.Node ] [VvR31nN] started
mailer_1 | - Installing guzzlehttp/promises (v1.3.1): Downloading (conDownloading (100%)
elasticsearch_1 | % Total % Received % Xferd Average Speed Time Time Time Current
elasticsearch_1 | Dload Upload Total Spent Left Speed
campaign_1 | - Installing symfony/console (v4.4.1): Downloading (connectDownloading (100%)
100 417 100 417 0 0 1653 0 --:--:-- --:--:-- --:--:-- 1654
elasticsearch_1 | {
elasticsearch_1 | "name" : "VvR31nN",
elasticsearch_1 | "cluster_name" : "elasticsearch",
elasticsearch_1 | "cluster_uuid" : "na",
elasticsearch_1 | "version" : {
elasticsearch_1 | "number" : "6.2.2",
elasticsearch_1 | "build_hash" : "10b1edd",
elasticsearch_1 | "build_date" : "2018-02-16T19:01:30.685723Z",
elasticsearch_1 | "build_snapshot" : false,
elasticsearch_1 | "lucene_version" : "7.2.1",
elasticsearch_1 | "minimum_wire_compatibility_version" : "5.6.0",
elasticsearch_1 | "minimum_index_compatibility_version" : "5.0.0"
elasticsearch_1 | },
elasticsearch_1 | "tagline" : "You Know, for Search"
elasticsearch_1 | }
beam_1 | - Installing tijsverkoyen/css-to-inline-styles (2.2.2): DowDownloading (100%)
elasticsearch_1 | [2020-01-15T21:50:25,890][INFO ][o.e.l.LicenseService ] [VvR31nN] license [48b0242d-2e0e-47e8-9547-95b2476db117] mode [trial] - valid
elasticsearch_1 | [2020-01-15T21:50:25,907][INFO ][o.e.g.GatewayService ] [VvR31nN] recovered [11] indices into cluster_state
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"Request Timeout after 3000ms"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["license","info","xpack"],"pid":1,"message":"Imported license information from Elasticsearch for the [data] cluster: mode: trial | status: active | expiry date: 2020-02-14T13:06:29+00:00"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["status","plugin:[email protected]","info"],"pid":1,"state":"green","message":"Status changed from red to green - Ready","prevState":"red","prevMsg":"No Living connections"}
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:26Z","tags":["info","monitoring-ui","kibana-monitoring"],"pid":1,"message":"Starting all Kibana monitoring collectors"}
mailer_1 | - Installing ralouphie/getallheaders (3.0.3): Downloading (Downloading (100%)
sso_1 | - Installing doctrine/cache (1.10.0): Downloading (connectiDownloading (100%)
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
beam_1 | - Installing symfony/routing (v4.4.1): Downloading (connectDownloading (100%)
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
telegraf_1 | 2020-01-15T21:50:28Z I! Elasticsearch version: 6.2.2
telegraf_1 | 2020-01-15T21:50:28Z I! Started the kafka consumer service, brokers: [kafka:9092], topics: [beam_events]
beam_segments_1 | 2020/01/15 21:50:29 Connected to tcp://elasticsearch:9200
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Swagger files=swagger/swagger.json route=GET /swagger.json
beam_segments_1 | 2020/01/15 21:50:29 segment cache reloaded
beam_segments_1 | 2020/01/15 21:50:29 POST /events/_doc/_search HTTP/1.1
beam_segments_1 | Host: elasticsearch:9200
beam_segments_1 | User-Agent: elastic/6.2.21 (linux-amd64)
beam_segments_1 | Transfer-Encoding: chunked
beam_segments_1 | Accept: application/json
beam_segments_1 | Authorization: Basic ZWxhc3RpYzo=
beam_segments_1 | Content-Type: application/json
beam_segments_1 | Accept-Encoding: gzip
beam_segments_1 |
beam_segments_1 | 4c
beam_segments_1 | {"aggregations":{"buckets":{"terms":{"field":"category.keyword"}}},"size":0}
beam_segments_1 | 0
beam_segments_1 |
beam_segments_1 |
mailer_1 | - Installing psr/http-message (1.0.1): Downloading (connectDownloading (100%)
sso_1 | - Installing doctrine/event-manager (1.1.0): Downloading (cDownloading (100%)
beam_segments_1 | 2020/01/15 21:50:29 HTTP/1.1 200 OK
beam_segments_1 | Access-Control-Allow-Credentials: true
beam_segments_1 | Content-Type: application/json; charset=UTF-8
beam_segments_1 |
beam_segments_1 | {"took":147,"timed_out":false,"_shards":{"total":5,"successful":2,"skipped":0,"failed":0},"hits":{"total":0,"max_score":0.0,"hits":[]},"aggregations":{"buckets":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[]}}}
beam_segments_1 | 2020/01/15 21:50:29 POST http://elasticsearch:9200/events/_doc/_search [status:200, request:0.199s]
beam_segments_1 | 2020/01/15 21:50:29 event categories cache reloaded
beam_segments_1 | 2020/01/15 21:50:29 event actions cache reloaded
beam_segments_1 | 2020/01/15 21:50:29 POST /pageviews/_doc/_search HTTP/1.1
beam_segments_1 | Host: elasticsearch:9200
beam_segments_1 | User-Agent: elastic/6.2.21 (linux-amd64)
beam_segments_1 | Transfer-Encoding: chunked
beam_segments_1 | Accept: application/json
beam_segments_1 | Authorization: Basic ZWxhc3RpYzo=
beam_segments_1 | Content-Type: application/json
beam_segments_1 | Accept-Encoding: gzip
beam_segments_1 |
beam_segments_1 | 74
beam_segments_1 | {"aggregations":{"user_id.keyword_unique":{"cardinality":{"field":"user_id.keyword"}}},"query":{"bool":{}},"size":0}
beam_segments_1 | 0
beam_segments_1 |
beam_segments_1 |
beam_segments_1 | 2020/01/15 21:50:29 HTTP/1.1 200 OK
beam_segments_1 | Access-Control-Allow-Credentials: true
beam_segments_1 | Content-Type: application/json; charset=UTF-8
beam_segments_1 |
beam_segments_1 | {"took":29,"timed_out":false,"_shards":{"total":5,"successful":5,"skipped":0,"failed":0},"hits":{"total":0,"max_score":0.0,"hits":[]},"aggregations":{"user_id.keyword_unique":{"value":0}}}
beam_segments_1 | 2020/01/15 21:50:29 POST http://elasticsearch:9200/pageviews/_doc/_search [status:200, request:0.048s]
beam_segments_1 | 2020/01/15 21:50:29 segment's count all cache reloaded
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Journal action=Flags route=GET /journal/flags
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Events action=Actions route=GET /journal/events/categories/:category/actions
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Events action=Categories route=GET /journal/events/categories
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Events action=Count route=POST /journal/events/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Events action=CountAction route=POST /journal/events/categories/:category/actions/:action/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Events action=List route=POST /journal/events/list
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Events action=Users route=GET /journal/events/users
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=Actions route=GET /journal/commerce/categories/:category/actions
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=Categories route=GET /journal/commerce/categories
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=Count route=POST /journal/commerce/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=CountStep route=POST /journal/commerce/steps/:step/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=List route=POST /journal/commerce/list
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=Sum route=POST /journal/commerce/sum
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Commerce action=SumStep route=POST /journal/commerce/steps/:step/sum
beam_segments_1 | 2020/01/15 21:50:29 [INFO] starting property caching
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=Actions route=GET /journal/pageviews/categories/:category/actions
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=Avg route=POST /journal/pageviews/actions/:action/avg
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=Categories route=GET /journal/pageviews/categories
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=Count route=POST /journal/pageviews/actions/:action/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=List route=POST /journal/pageviews/list
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=Sum route=POST /journal/pageviews/actions/:action/sum
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Pageviews action=Unique route=POST /journal/pageviews/actions/:action/unique/:item
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=CheckBrowser route=GET /segments/:segment_code/browsers/check/:browser_id
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=CheckUser route=GET /segments/:segment_code/users/check/:user_id
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=Count route=POST /segments/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=CreateOrUpdate route=POST /segments/detail
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=Criteria route=GET /segments/criteria
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=Get route=GET /segments/show
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=Groups route=GET /segments/groups
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=List route=GET /segments
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=Related route=POST /segments/related
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Segments action=Users route=GET /segments/:segment_code/users
beam_segments_1 | 2020/01/15 21:50:29 [INFO] mount ctrl=Concurrents action=Count route=POST /journal/concurrents/count
beam_segments_1 | 2020/01/15 21:50:29 [INFO] starting server bind=:8082
campaign_1 | - Installing pimple/pimple (v3.2.3): Downloading (connectinDownloading (100%)
beam_1 | - Installing symfony/process (v4.4.1): Downloading (connectDownloading (100%)
elasticsearch_1 | {"error":{"root_cause":[{"type":"resource_already_exists_exception","reason":"index [commerce/N_OoXaMEQaON_r1Dq6Y12w] already exists","index_uuid":"N_OoXaMEQaON_r1Dq6Y12w","index":"commerce"}],"type":"resource_already_exists_exception","reason":"index [commerce/N_OoXaMEQaON_r1Dq6Y12w] already exists","index_uuid":"N_OoXaMEQaON_r1Dq6Y12w","index":"commerce"},"status":400}{"error":{"root_cause":[{"type":"resource_already_exists_exception","reason":"index [events/uZIfFa-FSdacQofKKay6Uw] already exists","index_uuid":"uZIfFa-FSdacQofKKay6Uw","index":"events"}],"type":"resource_already_exists_exception","reason":"index [events/uZIfFa-FSdacQofKKay6Uw] already exists","index_uuid":"uZIfFa-FSdacQofKKay6Uw","index":"events"},"status":400}{"error":{"root_cause":[{"type":"resource_already_exists_exception","reason":"index [pageviews/d4tu6tfETOynNtAR4RCuTA] already exists","index_uuid":"d4tu6tfETOynNtAR4RCuTA","index":"pageviews"}],"type":"resource_already_exists_exception","reason":"index [pageviews/d4tu6tfETOynNtAR4RCuTA] already exists","index_uuid":"d4tu6tfETOynNtAR4RCuTA","index":"pageviews"},"status":400}{"error":{"root_cause":[{"type":"resource_already_exists_exception","reason":"index [pageviews_time_spent/a6n1N_SzQOGpEpRl_NDT1A] already exists","index_uuid":"a6n1N_SzQOGpEpRl_NDT1A","index":"pageviews_time_spent"}],"type":"resource_already_exists_exception","reason":"index [pageviews_time_spent/a6n1N_SzQOGpEpRl_NDT1A] already exists","index_uuid":"a6n1N_SzQOGpEpRl_NDT1A","index":"pageviews_time_spent"},"status":400}{"error":{"root_cause":[{"type":"resource_already_exists_exception","reason":"index [concurrents_by_browser/CvC59H1fQtmVMJOaJFpesA] already exists","index_uuid":"CvC59H1fQtmVMJOaJFpesA","index":"concurrents_by_browser"}],"type":"resource_already_exists_exception","reason":"index [concurrents_by_browser/CvC59H1fQtmVMJOaJFpesA] already exists","index_uuid":"CvC59H1fQtmVMJOaJFpesA","index":"concurrents_by_browser"},"status":400}[2020-01-15T21:50:31,085][INFO ][o.e.c.r.a.AllocationService] [VvR31nN] Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.monitoring-es-6-2020.01.15][0]] ...]).
sso_1 | - Installing doctrine/inflector (1.3.1): Downloading (conneDownloading (100%)
mailer_1 | - Installing guzzlehttp/psr7 (1.6.1): Downloading (connectiDownloading (100%)
campaign_1 | - Installing deployer/phar-update (v2.1.0): Downloading (coDownloading (100%)
beam_1 | - Installing symfony/finder (v4.4.1): Downloading (connectiDownloading (100%)
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
sso_1 | - Installing doctrine/lexer (1.2.0): Downloading (connectinDownloading (100%)
kibana_1 | {"type":"log","@timestamp":"2020-01-15T21:50:33Z","tags":["license","info","xpack"],"pid":1,"message":"Imported license information from Elasticsearch for the [monitoring] cluster: mode: trial | status: active | expiry date: 2020-02-14T13:06:29+00:00"}
mailer_1 | - Installing halaxa/json-machine (0.3.2): Downloading (connDownloading (100%)
campaign_1 | - Installing deployer/deployer (v6.6.0): Downloading (conneDownloading (100%)
beam_1 | - Installing psr/container (1.0.0): Downloading (connectingDownloading (100%)
sso_1 | - Installing dragonmantank/cron-expression (v2.3.0): DownloDownloading (100%)
mailer_1 | - Installing justinrainbow/json-schema (5.2.9): DownloadingDownloading (100%)
beam_1 | - Installing symfony/service-contracts (v2.0.1): DownloadinDownloading (100%)
campaign_1 | - Installing deployer/recipes (6.2.2): Downloading (connectDownloading (100%)
sso_1 | - Installing erusev/parsedown (1.7.3): Downloading (connectDownloading (100%)
campaign_1 | - Installing dnoegel/php-xdg-base-dir (0.1): Downloading (cDownloading (100%)
beam_1 | - Installing symfony/console (v4.4.1): Downloading (connectDownloading (100%)
mailer_1 | - Installing tracy/tracy (v2.6.5): Downloading (connecting.Downloading (100%)
sso_1 | - Installing vlucas/phpdotenv (v2.6.1): Downloading (connecDownloading (100%)
campaign_1 | - Installing doctrine/cache (1.10.0): Downloading (connectiDownloading (100%)
sso_1 | - Installing symfony/css-selector (v5.0.1): Downloading (coDownloading (100%)
mailer_1 | - Installing nette/utils (v2.5.4): Downloading (connecting.Downloading (100%)
beam_1 | - Installing symfony/polyfill-iconv (v1.13.1): Downloading Downloading (100%)
campaign_1 | - Installing doctrine/event-manager (1.1.0): Downloading (cDownloading (100%)
sso_1 | - Installing tijsverkoyen/css-to-inline-styles (2.2.2): DowDownloading (100%)
beam_1 | - Installing doctrine/lexer (1.2.0): Downloading (connectinDownloading (100%)
mailer_1 | - Installing nette/finder (v2.5.1): Downloading (connectingDownloading (100%)
campaign_1 | - Installing doctrine/inflector (1.3.1): Downloading (conneDownloading (100%)
sso_1 | - Installing symfony/polyfill-php72 (v1.13.1): Downloading Downloading (100%)
campaign_1 | - Installing doctrine/lexer (1.2.0): Downloading (connectinDownloading (100%)
beam_1 | - Installing egulias/email-validator (2.1.11): Downloading Downloading (100%)
mailer_1 | - Installing nette/caching (v2.5.9): Downloading (connectinDownloading (100%)
sso_1 | - Installing symfony/var-dumper (v4.4.1): Downloading (connDownloading (100%)
mailer_1 | - Installing nette/reflection (v2.4.2): Downloading (connecDownloading (100%)
campaign_1 | - Installing dragonmantank/cron-expression (v2.3.0): DownloDownloading (100%)
beam_1 | - Installing swiftmailer/swiftmailer (v6.2.3): Downloading Downloading (100%)
sso_1 | - Installing symfony/routing (v4.4.1): Downloading (connectDownloading (100%)
beam_1 | - Installing paragonie/random_compat (v9.99.99): DownloadinDownloading (100%)
campaign_1 | - Installing erusev/parsedown (1.7.3): Downloading (connectDownloading (100%)
mailer_1 | - Installing nette/php-generator (v3.3.1): Downloading (conDownloading (100%)
campaign_1 | - Installing vlucas/phpdotenv (v2.6.1): Downloading (connecDownloading (100%)
sso_1 | - Installing symfony/polyfill-intl-idn (v1.13.1): DownloadiDownloading (100%)
beam_1 | - Installing ramsey/uuid (3.9.1): Downloading (connecting..Downloading (100%)
mailer_1 | - Installing nette/neon (v3.0.0): Downloading (connecting..Downloading (100%)
beam_1 | - Installing psr/simple-cache (1.0.1): Downloading (connectDownloading (100%)
campaign_1 | - Installing symfony/css-selector (v5.0.1): Downloading (coDownloading (100%)
sso_1 | - Installing symfony/mime (v5.0.1): Downloading (connectingDownloading (100%)
mailer_1 | - Installing nette/di (v2.4.16): Downloading (connecting...Downloading (100%)
campaign_1 | - Installing tijsverkoyen/css-to-inline-styles (2.2.2): DowDownloading (100%)
beam_1 | - Installing opis/closure (3.5.1): Downloading (connecting.Downloading (100%)
sso_1 | - Installing symfony/http-foundation (v4.4.1): Downloading Downloading (100%)
campaign_1 | - Installing symfony/polyfill-php72 (v1.13.1): Downloading Downloading (100%)
mailer_1 | - Installing nette/http (v2.4.11): Downloading (connecting.Downloading (100%)
beam_1 | - Installing symfony/translation-contracts (v2.0.1): DownloDownloading (100%)
sso_1 | - Installing symfony/event-dispatcher-contracts (v1.1.7): DDownloading (100%)
campaign_1 | - Installing symfony/var-dumper (v4.4.1): Downloading (connDownloading (100%)
mailer_1 | - Installing nette/component-model (v2.4.0): Downloading (cDownloading (100%)
beam_1 | - Installing symfony/translation (v4.4.1): Downloading (conDownloading (100%)
sso_1 | - Installing symfony/event-dispatcher (v4.4.1): DownloadingDownloading (100%)
campaign_1 | - Installing symfony/routing (v4.4.1): Downloading (connectDownloading (100%)
mailer_1 | - Installing nette/application (v2.4.14): Downloading (connDownloading (100%)
beam_1 | - Installing nesbot/carbon (1.39.1): Downloading (connectinDownloading (100%)
campaign_1 | - Installing symfony/polyfill-intl-idn (v1.13.1): DownloadiDownloading (100%)
sso_1 | - Installing psr/log (1.1.2): Downloading (100%)
mailer_1 | - Installing kdyby/autowired (v1.5.0): Downloading (connectDownloading (100%)
sso_1 | - Installing symfony/debug (v4.4.1): Downloading (connectinDownloading (100%)
campaign_1 | - Installing symfony/mime (v5.0.1): Downloading (connectingDownloading (100%)
beam_1 | - Installing monolog/monolog (1.25.2): Downloading (connectDownloading (100%)
beam_1 | - Installing league/flysystem (1.0.57): Downloading (connecDownloading (100%)
sso_1 | - Installing symfony/error-handler (v4.4.1): Downloading (cDownloading (100%)
campaign_1 | - Installing symfony/http-foundation (v4.4.1): Downloading Downloading (100%)
mailer_1 | - Installing latte/latte (v2.5.3): Downloading (connecting.Downloading (100%)
beam_1 | - Installing ralouphie/getallheaders (3.0.3): Downloading (Downloading (100%)
mailer_1 | - Installing league/event (2.2.0): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing symfony/event-dispatcher-contracts (v1.1.7): DDownloading (100%)
sso_1 | - Installing symfony/http-kernel (v4.4.1): Downloading (conDownloading (100%)
mailer_1 | - Installing webmozart/assert (1.6.0): Downloading (connectDownloading (100%)
beam_1 | - Installing psr/http-message (1.0.1): Downloading (connectDownloading (100%)
campaign_1 | - Installing symfony/event-dispatcher (v4.4.1): DownloadingDownloading (100%)
sso_1 | - Installing symfony/finder (v4.4.1): Downloading (connectiDownloading (100%)
mailer_1 | - Installing psr/http-factory (1.0.1): Downloading (connectDownloading (100%)
campaign_1 | - Installing symfony/debug (v4.4.1): Downloading (connectinDownloading (100%)
beam_1 | - Installing guzzlehttp/psr7 (1.6.1): Downloading (connectiDownloading (100%)
sso_1 | - Installing symfony/polyfill-iconv (v1.13.1): Downloading Downloading (100%)
mailer_1 | - Installing php-http/message-factory (v1.0.2): DownloadingDownloading (100%)
beam_1 | - Installing guzzlehttp/promises (v1.3.1): Downloading (conDownloading (100%)
campaign_1 | - Installing symfony/error-handler (v4.4.1): Downloading (cDownloading (100%)
sso_1 | - Installing egulias/email-validator (2.1.11): Downloading Downloading (100%)
mailer_1 | - Installing php-http/discovery (1.7.0): Downloading (conneDownloading (100%)
beam_1 | - Installing guzzlehttp/guzzle (6.4.1): Downloading (connecDownloading (100%)
campaign_1 | - Installing symfony/http-kernel (v4.4.1): Downloading (conDownloading (100%)
mailer_1 | - Installing php-http/multipart-stream-builder (1.1.0): DowDownloading (100%)
sso_1 | - Installing swiftmailer/swiftmailer (v6.2.3): Downloading Downloading (100%)
beam_1 | - Installing laravel/slack-notification-channel (v1.0.3): DDownloading (100%)
mailer_1 | - Installing clue/stream-filter (v1.4.1): Downloading (connDownloading (100%)
campaign_1 | - Installing symfony/finder (v4.4.1): Downloading (connectiDownloading (100%)
sso_1 | - Installing paragonie/random_compat (v9.99.99): DownloadinDownloading (100%)
mailer_1 | - Installing php-http/message (1.8.0): Downloading (connectDownloading (100%)
campaign_1 | - Installing symfony/polyfill-iconv (v1.13.1): Downloading Downloading (100%)
sso_1 | - Installing ramsey/uuid (3.9.1): Downloading (connecting..Downloading (100%)
beam_1 | - Installing php-http/promise (v1.0.0): Downloading (connecDownloading (100%)
sso_1 | - Installing psr/simple-cache (1.0.1): Downloading (connectDownloading (100%)
mailer_1 | - Installing php-http/promise (v1.0.0): Downloading (connecDownloading (100%)
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
campaign_1 | - Installing egulias/email-validator (2.1.11): Downloading Downloading (100%)
beam_1 | - Installing php-http/httplug (v1.1.0): Downloading (connecDownloading (100%)
mailer_1 | - Installing php-http/httplug (v1.1.0): Downloading (connecDownloading (100%)
sso_1 | - Installing opis/closure (3.5.1): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing swiftmailer/swiftmailer (v6.2.3): Downloading Downloading (100%)
beam_1 | - Installing php-http/guzzle6-adapter (v1.1.1): DownloadingDownloading (100%)
sso_1 | - Installing symfony/translation-contracts (v2.0.1): DownloDownloading (100%)
mailer_1 | - Installing symfony/options-resolver (v5.0.1): DownloadingDownloading (100%)
campaign_1 | - Installing paragonie/random_compat (v9.99.99): DownloadinDownloading (100%)
beam_1 | - Installing psr/http-factory (1.0.1): Downloading (connectDownloading (100%)
mailer_1 | - Installing php-http/client-common (1.10.0): Downloading (Downloading (100%)
sso_1 | - Installing symfony/translation (v4.4.1): Downloading (conDownloading (100%)
campaign_1 | - Installing ramsey/uuid (3.9.1): Downloading (connecting..Downloading (100%)
beam_1 | - Installing zendframework/zend-diactoros (2.2.1): DownloadDownloading (100%)
sso_1 | - Installing nesbot/carbon (1.39.1): Downloading (connectinDownloading (100%)
mailer_1 | - Installing mailgun/mailgun-php (2.8.1): Downloading (connDownloading (100%)
campaign_1 | - Installing opis/closure (3.5.1): Downloading (connecting.Downloading (100%)
beam_1 | - Installing lcobucci/jwt (3.3.1): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing symfony/translation-contracts (v2.0.1): DownloDownloading (100%)
mailer_1 | - Installing monolog/monolog (1.25.2): Downloading (connectDownloading (100%)
sso_1 | - Installing monolog/monolog (1.25.2): Downloading (connectDownloading (100%)
campaign_1 | - Installing symfony/translation (v4.4.1): Downloading (conDownloading (100%)
beam_1 | - Installing nexmo/client-core (1.8.1): Downloading (connecDownloading (100%)
sso_1 | - Installing league/flysystem (1.0.57): Downloading (connecDownloading (100%)
mailer_1 | - Installing nette/database (v2.4.9): Downloading (connectiDownloading (100%)
sso_1 | - Installing ralouphie/getallheaders (3.0.3): Downloading (Downloading (100%)
beam_1 | - Installing nexmo/client (1.9.1): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing nesbot/carbon (1.39.1): Downloading (connectinDownloading (100%)
mailer_1 | - Installing nette/mail (v2.4.6): Downloading (connecting..Downloading (100%)
beam_1 | - Installing laravel/nexmo-notification-channel (v1.0.1): DDownloading (100%)
sso_1 | - Installing psr/http-message (1.0.1): Downloading (connectDownloading (100%)
campaign_1 | - Installing monolog/monolog (1.25.2): Downloading (connectDownloading (100%)
mailer_1 | - Installing guzzlehttp/guzzle (6.4.1): Downloading (connecDownloading (100%)
beam_1 | - Installing erusev/parsedown (1.7.3): Downloading (connectDownloading (100%)
sso_1 | - Installing guzzlehttp/psr7 (1.6.1): Downloading (connectiDownloading (100%)
beam_1 | - Installing dragonmantank/cron-expression (v2.3.0): DownloDownloading (100%)
campaign_1 | - Installing league/flysystem (1.0.57): Downloading (connecDownloading (100%)
mailer_1 | - Installing oops/webpack-nette-adapter (1.1.0): DownloadinDownloading (100%)
sso_1 | - Installing guzzlehttp/promises (v1.3.1): Downloading (conDownloading (100%)
beam_1 | - Installing doctrine/inflector (1.3.1): Downloading (conneDownloading (100%)
mailer_1 | - Installing phpseclib/phpseclib (2.0.23): Downloading (conDownloading (100%)
sso_1 | - Installing guzzlehttp/guzzle (6.4.1): Downloading (connecDownloading (100%)
campaign_1 | - Installing ralouphie/getallheaders (3.0.3): Downloading (Downloading (100%)
beam_1 | - Installing laravel/framework (v5.7.28): Downloading (connDownloading (100%)
mailer_1 | - Installing php-amqplib/php-amqplib (v2.11.0): DownloadingDownloading (100%)
sso_1 | - Installing laravel/slack-notification-channel (v1.0.3): DDownloading (100%)
beam_1 | - Installing asm89/stack-cors (1.2.0): Downloading (connectDownloading (100%)
mailer_1 | - Installing php-http/curl-client (v1.7.1): Downloading (coDownloading (100%)
campaign_1 | - Installing psr/http-message (1.0.1): Downloading (connectDownloading (100%)
sso_1 | - Installing php-http/promise (v1.0.0): Downloading (connecDownloading (100%)
campaign_1 | - Installing guzzlehttp/psr7 (1.6.1): Downloading (connectiDownloading (100%)
mailer_1 | - Installing predis/predis (v1.1.1): Downloading (connectinDownloading (100%)
mailer_1 | - Installing remp/journal (dev-master): Mirroring from ../Composer/journal
sso_1 | - Installing php-http/httplug (v1.1.0): Downloading (connecDownloading (100%)
beam_1 | - Installing barryvdh/laravel-cors (v0.11.4): Downloading (Downloading (100%)
sso_1 | - Installing php-http/guzzle6-adapter (v1.1.1): DownloadingDownloading (100%)
campaign_1 | - Installing guzzlehttp/promises (v1.3.1): Downloading (conDownloading (100%)
beam_1 | - Installing cash/lrucache (1.0.0): Downloading (connectingDownloading (100%)
mailer_1 | - Installing gburtini/distributions (0.0.2): Downloading (cDownloading (100%)
mailer_1 | - Installing remp/multi-armed-bandit (dev-master): Mirroring from ../Composer/multi-armed-bandit
sso_1 | - Installing psr/http-factory (1.0.1): Downloading (connectDownloading (100%)
beam_1 | - Installing symfony/yaml (v4.4.1): Downloading (connectingDownloading (100%)
mailer_1 | - Installing nette/security (v2.4.4): Downloading (connectiDownloading (100%)
mailer_1 | - Installing remp/nette-sso (dev-master): Mirroring from ../Composer/nette-sso
campaign_1 | - Installing guzzlehttp/guzzle (6.4.1): Downloading (connecDownloading (100%)
mailer_1 | - Installing symfony/filesystem (v4.4.1): Downloading (connDownloading (100%)
beam_1 | - Installing pimple/pimple (v3.2.3): Downloading (connectinDownloading (100%)
sso_1 | - Installing zendframework/zend-diactoros (2.2.1): DownloadDownloading (100%)
campaign_1 | - Installing laravel/slack-notification-channel (v1.0.3): DDownloading (100%)
mailer_1 | - Installing symfony/config (v3.4.36): Downloading (connectDownloading (100%)
campaign_1 | - Installing php-http/promise (v1.0.0): Downloading (connecDownloading (100%)
beam_1 | - Installing deployer/phar-update (v2.1.0): Downloading (coDownloading (100%)
sso_1 | - Installing lcobucci/jwt (3.3.1): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing php-http/httplug (v1.1.0): Downloading (connecDownloading (100%)
beam_1 | - Installing deployer/deployer (v6.6.0): Downloading (conneDownloading (100%)
mailer_1 | - Installing robmorgan/phinx (v0.8.1): Downloading (connectDownloading (100%)
sso_1 | - Installing nexmo/client-core (1.8.1): Downloading (connecDownloading (100%)
campaign_1 | - Installing php-http/guzzle6-adapter (v1.1.1): DownloadingDownloading (100%)
mailer_1 | - Installing paragonie/random_compat (v9.99.99): DownloadinDownloading (100%)
beam_1 | - Installing deployer/recipes (6.2.2): Downloading (connectDownloading (100%)
campaign_1 | - Installing psr/http-factory (1.0.1): Downloading (connectDownloading (100%)
sso_1 | - Installing nexmo/client (1.9.1): Downloading (connecting.Downloading (100%)
mailer_1 | - Installing ramsey/uuid (3.9.1): Downloading (connecting..Downloading (100%)
sso_1 | - Installing laravel/nexmo-notification-channel (v1.0.1): DDownloading (100%)
beam_1 | - Installing dnoegel/php-xdg-base-dir (0.1): Downloading (cDownloading (100%)
campaign_1 | - Installing zendframework/zend-diactoros (2.2.1): DownloadDownloading (100%)
beam_1 | - Installing doctrine/cache (1.10.0): Downloading (connectiDownloading (100%)
mailer_1 | - Installing tomaj/hermes (2.2.2): Downloading (connecting.Downloading (100%)
campaign_1 | - Installing lcobucci/jwt (3.3.1): Downloading (connecting.Downloading (100%)
beam_1 | - Installing doctrine/event-manager (1.1.0): Downloading (cDownloading (100%)
sso_1 | - Installing laravel/framework (v5.7.28): Downloading (connDownloading (100%)
mailer_1 | - Installing nette/forms (v2.4.10): Downloading (connectingDownloading (100%)
beam_1 | - Installing fideloper/proxy (4.2.1): Downloading (connectiDownloading (100%)
campaign_1 | - Installing nexmo/client-core (1.8.1): Downloading (connecDownloading (100%)
sso_1 | - Installing fideloper/proxy (4.2.1): Downloading (connectiDownloading (100%)
mailer_1 | - Installing tomaj/nette-bootstrap-form (1.3.0): DownloadinDownloading (100%)
campaign_1 | - Installing nexmo/client (1.9.1): Downloading (connecting.Downloading (100%)
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailer_1 | - Installing league/fractal (0.17.0): Downloading (connectiDownloading (100%)
campaign_1 | - Installing laravel/nexmo-notification-channel (v1.0.1): DDownloading (100%)
mailer_1 | - Installing tomaj/nette-api (1.16.0): Downloading (connectDownloading (100%)
beam_1 | - Installing fzaninotto/faker (v1.9.0): Downloading (connecDownloading (100%)
campaign_1 | - Installing laravel/framework (v5.7.28): Downloading (connDownloading (100%)
mailer_1 | - Installing tomaj/nette-errbit (3.0.2): Downloading (conneDownloading (100%)
beam_1 | - Installing phpseclib/phpseclib (2.0.23): Downloading (conDownloading (100%)
campaign_1 | - Installing fico7489/laravel-pivot (2.3.8): Downloading (cDownloading (100%)
mailer_1 | - Installing twig/twig (v2.12.2): Downloading (connecting..Downloading (100%)
beam_1 | - Installing psr/cache (1.0.1):Downloading (100%) )
mailer_1 | - Installing vlucas/phpdotenv (v2.6.1): Downloading (connecDownloading (100%)
beam_1 | - Installing firebase/php-jwt (v5.0.0): Downloading (connecDownloading (100%)
campaign_1 | - Installing fideloper/proxy (4.2.1): Downloading (connectiDownloading (100%)
mailer_1 | - Installing doctrine/lexer (1.2.0): Downloading (connectinDownloading (100%)
beam_1 | - Installing google/auth (v1.6.1): Downloading (connecting.Downloading (100%)
sso_1 | - Installing fzaninotto/faker (v1.9.0): Downloading (connecDownloading (100%)
mailer_1 | - Installing symfony/service-contracts (v2.0.1): DownloadinDownloading (100%)
sso_1 | - Installing jakub-onderka/php-console-color (v0.2): DownloDownloading (100%)
mailer_1 | - Installing symfony/stopwatch (v5.0.1): Downloading (conneDownloading (100%)
sso_1 | - Installing airbrake/phpbrake (v0.5.3): Downloading (conneDownloading (100%)
mailer_1 | - Installing symfony/polyfill-php72 (v1.13.1): Downloading Downloading (100%)
campaign_1 | - Installing fzaninotto/faker (v1.9.0): Downloading (connecDownloading (100%)
mailer_1 | - Installing symfony/polyfill-php70 (v1.13.1): Downloading Downloading (100%)
sso_1 | - Installing kouz/laravel-airbrake (0.4.1): Downloading (coDownloading (100%)
mailer_1 | - Installing symfony/finder (v4.4.1): Downloading (connectiDownloading (100%)
sso_1 | - Installing laracasts/flash (3.0.3): Downloading (connectiDownloading (100%)
campaign_1 | - Installing composer/ca-bundle (1.2.4): Downloading (conneDownloading (100%)
mailer_1 | - Installing psr/event-dispatcher (1.0.0): Downloading (conDownloading (100%)
sso_1 | - Installing league/oauth1-client (1.7.0): Downloading (conDownloading (100%)
campaign_1 | - Installing maxmind/web-service-common (v0.5.0): DownloadiDownloading (100%)
beam_1 | - Installing google/apiclient-services (v0.121): DownloadinDownloading (100%)
mailer_1 | - Installing symfony/event-dispatcher-contracts (v2.0.1): DDownloading (100%)
sso_1 | - Installing laravel/socialite (v4.3.1): Downloading (conneDownloading (100%)
campaign_1 | - Installing maxmind-db/reader (v1.5.0): Downloading (conneDownloading (100%)
mailer_1 | - Installing symfony/event-dispatcher (v5.0.1): DownloadingDownloading (100%)
sso_1 | - Installing laravelcollective/html (v5.7.1): Downloading (Downloading (100%)
beam_1 | - Installing google/apiclient (v2.4.0): Downloading (connecDownloading (100%)
campaign_1 | - Installing geoip2/geoip2 (v2.9.0): Downloading (connectinDownloading (100%)
campaign_1 | - Installing jakub-onderka/php-console-color (v0.2): DownloDownloading (100%)
beam_1 | - Installing jakub-onderka/php-console-color (v0.2): DownloDownloading (100%)
sso_1 | - Installing league/uri-hostname-parser (1.1.1): DownloadinDownloading (100%)
mailer_1 | - Installing php-cs-fixer/diff (v1.3.0): Downloading (conneDownloading (100%)
beam_1 | - Installing airbrake/phpbrake (v0.5.3): Downloading (conneDownloading (100%)
campaign_1 | - Installing airbrake/phpbrake (v0.5.3): Downloading (conneDownloading (100%)
sso_1 | - Installing league/uri-interfaces (1.1.1): Downloading (coDownloading (100%)
mailer_1 | - Installing doctrine/annotations (v1.8.0): Downloading (coDownloading (100%)
campaign_1 | - Installing kouz/laravel-airbrake (0.4.1): Downloading (coDownloading (100%)
beam_1 | - Installing kouz/laravel-airbrake (0.4.1): Downloading (coDownloading (100%)
sso_1 | - Installing league/uri-components (1.8.2): Downloading (coDownloading (100%)
mailer_1 | - Installing composer/xdebug-handler (1.4.0): Downloading (Downloading (100%)
campaign_1 | - Installing laracasts/flash (3.0.3): Downloading (connectiDownloading (100%)
beam_1 | - Installing laracasts/flash (3.0.3): Downloading (connectiDownloading (100%)
sso_1 | - Installing league/uri-manipulations (1.5.0): Downloading Downloading (100%)
mailer_1 | - Installing composer/semver (1.5.0): Downloading (connectiDownloading (100%)
beam_1 | - Installing laravelcollective/html (v5.7.1): Downloading (Downloading (100%)
campaign_1 | - Installing laravelcollective/html (v5.7.1): Downloading (Downloading (100%)
sso_1 | - Installing league/uri-parser (1.4.1): Downloading (connecDownloading (100%)
beam_1 | - Installing league/uri-hostname-parser (1.1.1): DownloadinDownloading (100%)
mailer_1 | - Installing friendsofphp/php-cs-fixer (v2.16.1): DownloadiDownloading (100%)
campaign_1 | - Installing league/uri-hostname-parser (1.1.1): DownloadinDownloading (100%)
sso_1 | - Installing league/uri-schemes (1.2.1): Downloading (conneDownloading (100%)
beam_1 | - Installing league/uri-interfaces (1.1.1): Downloading (coDownloading (100%)
campaign_1 | - Installing league/uri-interfaces (1.1.1): Downloading (coDownloading (100%)
mailer_1 | - Installing nette/tester (v1.7.2): Downloading (connectingDownloading (100%)
sso_1 | - Installing nikic/php-parser (v3.1.5): Downloading (connecDownloading (100%)
beam_1 | - Installing league/uri-components (1.8.2): Downloading (coDownloading (100%)
campaign_1 | - Installing league/uri-components (1.8.2): Downloading (coDownloading (100%)
mailer_1 | - Installing phpdocumentor/reflection-common (2.0.0): DownlDownloading (100%)
beam_1 | - Installing league/uri-manipulations (1.5.0): Downloading Downloading (100%)
sso_1 | - Installing phpseclib/phpseclib (2.0.23): Downloading (conDownloading (100%)
campaign_1 | - Installing league/uri-manipulations (1.5.0): Downloading Downloading (100%)
beam_1 | - Installing league/uri-parser (1.4.1): Downloading (connecDownloading (100%)
mailer_1 | - Installing phpdocumentor/type-resolver (1.0.1): DownloadiDownloading (100%)
sso_1 | - Installing php-amqplib/php-amqplib (v2.11.0): DownloadingDownloading (100%)
campaign_1 | - Installing league/uri-parser (1.4.1): Downloading (connecDownloading (100%)
beam_1 | - Installing league/uri-schemes (1.2.1): Downloading (conneDownloading (100%)
mailer_1 | - Installing phpdocumentor/reflection-docblock (4.3.2): DowDownloading (100%)
campaign_1 | - Installing league/uri-schemes (1.2.1): Downloading (conneDownloading (100%)
beam_1 | - Installing madewithlove/illuminate-psr-cache-bridge (1.0.3): Downloading (100%)
sso_1 | - Installing predis/predis (v1.1.1): Downloading (connectinDownloading (100%)
mailer_1 | - Installing phpstan/phpdoc-parser (0.3.5): Downloading (coDownloading (100%)
beam_1 | - Installing marc-mabe/php-enum (v3.1.1): Downloading (connDownloading (100%)
campaign_1 | - Installing nikic/php-parser (v3.1.5): Downloading (connecDownloading (100%)
sso_1 | - Installing tracy/tracy (v2.7.1): Downloading (connecting.Downloading (100%)
mailer_1 | - Installing nikic/php-parser (v4.3.0): Downloading (connecDownloading (100%)
beam_1 | - Installing matomo/searchengine-and-social-list (1.4.4): DDownloading (100%)
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailer_1 | - Installing nette/robot-loader (v3.1.1): Downloading (connDownloading (100%)
sso_1 | - Installing webmozart/assert (1.6.0): Downloading (connectDownloading (100%)
campaign_1 | - Installing phpseclib/phpseclib (2.0.23): Downloading (conDownloading (100%)
beam_1 | - Installing nikic/php-parser (v3.1.5): Downloading (connecDownloading (100%)
mailer_1 | - Installing nette/bootstrap (v2.4.6): Downloading (connectDownloading (100%)
sso_1 | - Installing webmozart/path-util (2.3.0): Downloading (connDownloading (100%)
campaign_1 | - Installing php-amqplib/php-amqplib (v2.11.0): DownloadingDownloading (100%)
mailer_1 | - Installing jean85/pretty-package-versions (1.2): DownloadDownloading (100%)
sso_1 | - Installing webmozart/glob (4.1.0): Downloading (connectinDownloading (100%)
beam_1 | - Installing php-amqplib/php-amqplib (v2.11.0): DownloadingDownloading (100%)
campaign_1 | - Installing mustangostang/spyc (0.6.3): Downloading (conneDownloading (100%)
mailer_1 | - Installing phpstan/phpstan (0.11.6): Downloading (connectDownloading (100%)
beam_1 | - Installing mustangostang/spyc (0.6.3): Downloading (conneDownloading (100%)
sso_1 | - Installing recca0120/terminal (v1.7.0): Downloading (connDownloading (100%)
campaign_1 | - Installing piwik/device-detector (3.12.1): Downloading (cDownloading (100%)
mailer_1 | - Installing phpunit/php-token-stream (3.1.1): Downloading Downloading (100%)
beam_1 | - Installing piwik/device-detector (3.12.1): Downloading (cDownloading (100%)
sso_1 | - Installing recca0120/laravel-tracy (1.10.0): Downloading Downloading (100%)
sso_1 | - Installing remp/laravel-helpers (dev-master): Mirroring from ../Composer/laravel-helpers
mailer_1 | - Installing sebastian/version (2.0.1): Downloading (connecDownloading (100%)
campaign_1 | - Installing tracy/tracy (v2.7.1): Downloading (connecting.Downloading (100%)
beam_1 | - Installing tracy/tracy (v2.7.1): Downloading (connecting.Downloading (100%)
sso_1 | - Installing jakub-onderka/php-console-highlighter (v0.3.2): Downloading (100%)
mailer_1 | - Installing sebastian/resource-operations (2.0.1): DownloaDownloading (100%)
campaign_1 | - Installing webmozart/assert (1.6.0): Downloading (100%)
mailer_1 | - Installing sebastian/recursion-context (3.0.0): Downloading (100%)
beam_1 | - Installing webmozart/assert (1.6.0): Downloading (100%)
sso_1 | - Installing psy/psysh (v0.8.18): Downloading (100%)
sso_1 | - Installing league/uri (5.3.0)
sso_1 | - Installing remp/laravel-sso (dev-master): Mirroring from ../Composer/laravel-sso
campaign_1 | - Installing webmozart/path-util (2.3.0): Downloading (100%)
mailer_1 | - Installing sebastian/object-reflector (1.1.1): Downloading (100%)
beam_1 | - Installing webmozart/path-util (2.3.0): Downloading (100%)
campaign_1 | - Installing webmozart/glob (4.1.0): Downloading (100%)
sso_1 | - Installing arrilot/laravel-widgets (3.13.0): Downloading (100%)
sso_1 | - Installing remp/laravel-widgets (dev-master): Mirroring from ../Composer/laravel-widgets
mailer_1 | - Installing sebastian/object-enumerator (3.0.3): Downloading (100%)
beam_1 | - Installing webmozart/glob (4.1.0): Downloading (100%)
campaign_1 | - Installing recca0120/terminal (v1.7.0): Downloading (100%)
sso_1 | - Installing symfony/polyfill-util (v1.13.1): Downloading (100%)
mailer_1 | - Installing sebastian/global-state (2.0.0): Downloading (100%)
beam_1 | - Installing recca0120/terminal (v1.7.0): Downloading (100%)
mailer_1 | - Installing sebastian/exporter (3.1.2): Downloading (100%)
sso_1 | - Installing symfony/polyfill-php56 (v1.13.1): Downloading (100%)
campaign_1 | - Installing recca0120/laravel-tracy (1.10.0): Downloading (100%)
campaign_1 | - Installing remp/laravel-helpers (dev-master): Mirroring from ../Composer/laravel-helpers
beam_1 | - Installing recca0120/laravel-tracy (1.10.0): Downloading (100%)
beam_1 | - Installing remp/journal (dev-master): Mirroring from ../Composer/journal
beam_1 | - Installing remp/laravel-helpers (dev-master): Mirroring from ../Composer/laravel-helpers
mailer_1 | - Installing sebastian/environment (4.2.3): Downloading (100%)
sso_1 | - Installing namshi/jose (7.2.3): Downloading (100%)
beam_1 | - Installing jakub-onderka/php-console-highlighter (v0.3.2): Downloading (connectiDownloading (100%)
campaign_1 | - Installing jakub-onderka/php-console-highlighter (v0.3.2): Downloading (connectiDownloading (100%)
mailer_1 | - Installing sebastian/diff (3.0.2): Downloading (100%)
sso_1 | - Installing tymon/jwt-auth (1.0.0-rc.5): Downloading (100%)
campaign_1 | - Installing psy/psysh (v0.8.18): Downloading (100%)
campaign_1 | - Installing league/uri (5.3.0)
campaign_1 | - Installing remp/laravel-sso (dev-master): Mirroring from ../Composer/laravel-sso
beam_1 | - Installing psy/psysh (v0.8.18): Downloading (100%)
beam_1 | - Installing league/uri (5.3.0)
beam_1 | - Installing remp/laravel-sso (dev-master): Mirroring from ../Composer/laravel-sso
campaign_1 | - Installing arrilot/laravel-widgets (3.13.0): Downloading (100%)
mailer_1 | - Installing sebastian/comparator (3.0.2): Downloading (100%)
campaign_1 | - Installing remp/laravel-widgets (dev-master): Mirroring from ../Composer/laravel-widgets
sso_1 | - Installing yajra/laravel-datatables-oracle (v8.13.7): Downloading (connecting...Downloading (100%)
beam_1 | - Installing arrilot/laravel-widgets (3.13.0): Downloading (100%)
beam_1 | - Installing remp/laravel-widgets (dev-master): Mirroring from ../Composer/laravel-widgets
mailer_1 | - Installing phpunit/php-timer (2.1.2): Downloading (100%)
campaign_1 | - Installing gburtini/distributions (0.0.2): Downloading (100%)
campaign_1 | - Installing remp/multi-armed-bandit (dev-master): Mirroring from ../Composer/multi-armed-bandit
sso_1 | - Installing doctrine/dbal (v2.10.0): Downloading (100%)
beam_1 | - Installing doctrine/collections (1.6.4): Downloading (100%)
mailer_1 | - Installing phpunit/php-text-template (1.2.1): Downloading (100%)
sso_1 | - Installing symfony/filesystem (v4.4.1): Downloading (100%)
campaign_1 | - Installing tightenco/ziggy (v0.6.9): Downloading (100%)
beam_1 | - Installing simshaun/recurr (v3.1.1): Downloading (100%)
mailer_1 | - Installing phpunit/php-file-iterator (2.0.2): Downloading (100%)
sso_1 | - Installing seld/phar-utils (1.0.1): Downloading (100%)
campaign_1 | - Installing yajra/laravel-datatables-oracle (v8.13.7): Downloading (connecting...Downloading (100%)
sso_1 | - Installing seld/jsonlint (1.7.2): Downloading (100%)
mailer_1 | - Installing theseer/tokenizer (1.1.3): Downloading (100%)
beam_1 | - Installing snowplow/referer-parser (dev-master 5626967): Downloading (connectingDownloading (100%)
campaign_1 | - Installing doctrine/dbal (v2.10.0): Downloading (100%)
mailer_1 | - Installing sebastian/code-unit-reverse-lookup (1.0.1): Downloading (connecting..Downloading (100%)
beam_1 | - Installing tightenco/ziggy (v0.7.1): Downloading (100%)
campaign_1 | - Installing symfony/filesystem (v4.4.1): Downloading (100%)
mailer_1 | - Installing phpunit/php-code-coverage (6.1.4): Downloading (100%)
beam_1 | - Installing yadakhov/insert-on-duplicate-key (v1.2.0): Downloading (connecting...Downloading (100%)
sso_1 | - Installing justinrainbow/json-schema (5.2.9): Downloading (100%)
campaign_1 | - Installing seld/phar-utils (1.0.1): Downloading (100%)
mailer_1 | - Installing doctrine/instantiator (1.3.0): Downloading (100%)
beam_1 | - Installing yajra/laravel-datatables-oracle (v8.13.7): Downloading (connecting...Downloading (100%)
campaign_1 | - Installing seld/jsonlint (1.7.2): Downloading (100%)
sso_1 | - Installing composer/xdebug-handler (1.4.0): Downloading (100%)
sso_1 | - Installing composer/spdx-licenses (1.5.2): Downloading (100%)
mailer_1 | - Installing phpspec/prophecy (1.9.0): Downloading (100%)
campaign_1 | - Installing justinrainbow/json-schema (5.2.9): Downloading (100%)
beam_1 | - Installing doctrine/dbal (v2.10.0): Downloading (100%)
sso_1 | - Installing composer/semver (1.5.0): Downloading (100%)
beam_1 | - Installing symfony/filesystem (v4.4.1): Downloading (100%)
campaign_1 | - Installing composer/xdebug-handler (1.4.0): Downloading (100%)
mailer_1 | - Installing phar-io/version (2.0.1): Downloading (100%)
sso_1 | - Installing composer/ca-bundle (1.2.4): Downloading (100%)
beam_1 | - Installing seld/phar-utils (1.0.1): Downloading (100%)
campaign_1 | - Installing composer/spdx-licenses (1.5.2): Downloading (100%)
mailer_1 | - Installing phar-io/manifest (1.0.3): Downloading (100%)
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailer_1 | - Installing myclabs/deep-copy (1.9.3): Downloading (100%)
beam_1 | - Installing seld/jsonlint (1.7.2): Downloading (100%)
campaign_1 | - Installing composer/semver (1.5.0): Downloading (100%)
sso_1 | - Installing composer/composer (1.9.1): Downloading (100%)
beam_1 | - Installing justinrainbow/json-schema (5.2.9): Downloading (100%)
beam_1 | - Installing composer/xdebug-handler (1.4.0): Downloading (100%)
sso_1 | - Installing barryvdh/reflection-docblock (v2.0.6): Downloading (100%)
beam_1 | - Installing composer/spdx-licenses (1.5.2): Downloading (100%)
mailer_1 | - Installing phpunit/phpunit (7.5.17): Downloading (100%)
campaign_1 | - Installing composer/composer (1.9.1): Downloading (100%)
sso_1 | - Installing barryvdh/laravel-ide-helper (v2.6.6): Downloading (100%)
beam_1 | - Installing composer/semver (1.5.0): Downloading (100%)
campaign_1 | - Installing barryvdh/reflection-docblock (v2.0.6): Downloading (100%)
sso_1 | - Installing symfony/stopwatch (v5.0.1): Downloading (100%)
beam_1 | - Installing composer/ca-bundle (1.2.4): Downloading (100%)
mailer_1 | - Installing squizlabs/php_codesniffer (3.5.2): Downloading (100%)
sso_1 | - Installing symfony/polyfill-php70 (v1.13.1): Downloading (100%)
campaign_1 | - Installing barryvdh/laravel-ide-helper (v2.6.6): Downloading (100%)
sso_1 | - Installing symfony/options-resolver (v5.0.1): Downloading (100%)
beam_1 | - Installing composer/composer (1.9.1): Downloading (100%)
mailer_1 | - Installing symfony/var-dumper (v3.3.18): Downloading (100%)
campaign_1 | - Installing symfony/stopwatch (v4.4.1): Downloading (100%)
mailer_1 | symfony/console suggests installing symfony/lock
mailer_1 | guzzlehttp/psr7 suggests installing zendframework/zend-httphandlerrunner (Emit PSR-7 responses)
mailer_1 | tracy/tracy suggests installing https://nette.org/donate (Please support Tracy via a donation)
mailer_1 | php-http/discovery suggests installing puli/composer-plugin (Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details.)
mailer_1 | php-http/message suggests installing slim/slim (Used with Slim Framework PSR-7 implementation)
mailer_1 | php-http/message suggests installing zendframework/zend-diactoros (Used with Diactoros Factories)
mailer_1 | php-http/client-common suggests installing php-http/cache-plugin (PSR-6 Cache plugin)
mailer_1 | php-http/client-common suggests installing php-http/logger-plugin (PSR-3 Logger plugin)
mailer_1 | php-http/client-common suggests installing php-http/stopwatch-plugin (Symfony Stopwatch plugin)
mailer_1 | monolog/monolog suggests installing aws/aws-sdk-php (Allow sending log messages to AWS services like DynamoDB)
mailer_1 | monolog/monolog suggests installing doctrine/couchdb (Allow sending log messages to a CouchDB server)
mailer_1 | monolog/monolog suggests installing ext-amqp (Allow sending log messages to an AMQP server (1.0+ required))
mailer_1 | monolog/monolog suggests installing ext-mongo (Allow sending log messages to a MongoDB server)
mailer_1 | monolog/monolog suggests installing graylog2/gelf-php (Allow sending log messages to a GrayLog2 server)
mailer_1 | monolog/monolog suggests installing mongodb/mongodb (Allow sending log messages to a MongoDB server via PHP Driver)
mailer_1 | monolog/monolog suggests installing php-console/php-console (Allow sending log messages to Google Chrome)
mailer_1 | monolog/monolog suggests installing rollbar/rollbar (Allow sending log messages to Rollbar)
mailer_1 | monolog/monolog suggests installing ruflin/elastica (Allow sending log messages to an Elastic Search server)
mailer_1 | monolog/monolog suggests installing sentry/sentry (Allow sending log messages to a Sentry server)
mailer_1 | phpseclib/phpseclib suggests installing ext-gmp (Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.)
mailer_1 | phpseclib/phpseclib suggests installing ext-libsodium (SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.)
mailer_1 | phpseclib/phpseclib suggests installing ext-mcrypt (Install the Mcrypt extension in order to speed up a few other cryptographic operations.)
mailer_1 | predis/predis suggests installing ext-phpiredis (Allows faster serialization and deserialization of the Redis protocol)
mailer_1 | paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
mailer_1 | ramsey/uuid suggests installing ext-libsodium (Provides the PECL libsodium extension for use with the SodiumRandomGenerator)
mailer_1 | ramsey/uuid suggests installing ext-uuid (Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator)
mailer_1 | ramsey/uuid suggests installing moontoast/math (Provides support for converting UUID to 128-bit integer (in string form).)
mailer_1 | ramsey/uuid suggests installing paragonie/random-lib (Provides RandomLib for use with the RandomLibAdapter)
mailer_1 | ramsey/uuid suggests installing ramsey/uuid-console (A console application for generating UUIDs with ramsey/uuid)
mailer_1 | ramsey/uuid suggests installing ramsey/uuid-doctrine (Allows the use of Ramsey\Uuid\Uuid as Doctrine field type.)
mailer_1 | tomaj/hermes suggests installing aws/aws-sdk-php (Allow use Amazon SQS driver)
mailer_1 | tomaj/hermes suggests installing ext-redis (Allow use for redis driver with native redis php extension)
mailer_1 | tomaj/hermes suggests installing ext-zmq (Allow use for ZeroMQ driver with native zmq php extension)
mailer_1 | league/fractal suggests installing illuminate/pagination (The Illuminate Pagination component.)
mailer_1 | league/fractal suggests installing pagerfanta/pagerfanta (Pagerfanta Paginator)
mailer_1 | league/fractal suggests installing zendframework/zend-paginator (Zend Framework Paginator)
mailer_1 | symfony/service-contracts suggests installing symfony/service-implementation
mailer_1 | symfony/event-dispatcher suggests installing symfony/dependency-injection
mailer_1 | symfony/event-dispatcher suggests installing symfony/http-kernel
mailer_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-isidenticalstring (For IsIdenticalString constraint.)
mailer_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-xmlmatchesxsd (For XmlMatchesXsd constraint.)
mailer_1 | sebastian/global-state suggests installing ext-uopz ()
mailer_1 | phpunit/phpunit suggests installing ext-soap (
)
mailer_1 | phpunit/phpunit suggests installing phpunit/php-invoker (^2.0)
mailer_1 | symfony/var-dumper suggests installing ext-symfony_debug
mailer_1 | Generating autoload files
mailer_1 | ocramius/package-versions: Generating version class...
mailer_1 | ocramius/package-versions: ...done generating version class
sso_1 | - Installing php-cs-fixer/diff (v1.3.0): Downloading (100%)
campaign_1 | - Installing symfony/polyfill-php70 (v1.13.1): Downloading (100%)
mailer_1 | yarn install v1.21.1
mailer_1 | warning package.json: No license field
mailer_1 | warning No license field
mailer_1 | [1/5] Validating package.json...
mailer_1 | warning No license field
mailer_1 | [2/5] Resolving packages...
beam_1 | - Installing barryvdh/reflection-docblock (v2.0.6): Downloading (100%)
mailer_1 | [3/5] Fetching packages...
sso_1 | - Installing doctrine/annotations (v1.8.0): Downloading (100%)
campaign_1 | - Installing symfony/options-resolver (v4.4.1): Downloading (100%)
beam_1 | - Installing barryvdh/laravel-ide-helper (v2.6.6): Downloading (100%)
campaign_1 | - Installing php-cs-fixer/diff (v1.3.0): Downloading (100%)
beam_1 | - Installing symfony/stopwatch (v5.0.1): Downloading (100%)
mailer_1 | warning [email protected]: Invalid bin field for "file-loader".
campaign_1 | - Installing doctrine/annotations (v1.8.0): Downloading (100%)
beam_1 | - Installing symfony/polyfill-php70 (v1.13.1): Downloading (100%)
sso_1 | - Installing friendsofphp/php-cs-fixer (v2.16.1): Downloading (100%)
beam_1 | - Installing symfony/options-resolver (v5.0.1): Downloading (100%)
sso_1 | - Installing sebastian/recursion-context (3.0.0): Downloading (100%)
campaign_1 | - Installing friendsofphp/php-cs-fixer (v2.14.0): Downloading (100%)
sso_1 | - Installing sebastian/exporter (3.1.2): Downloading (100%)
campaign_1 | - Installing m6web/redis-mock (v4.7.0): Downloading (100%)
beam_1 | - Installing php-cs-fixer/diff (v1.3.0): Downloading (100%)
sso_1 | - Installing sebastian/diff (3.0.2): Downloading (100%)
campaign_1 | - Installing josiasmontag/laravel-redis-mock (1.2.2): Downloading (100%)
beam_1 | - Installing doctrine/annotations (v1.8.0): Downloading (100%)
sso_1 | - Installing sebastian/comparator (3.0.2): Downloading (100%)
campaign_1 | - Installing sebastian/recursion-context (3.0.0): Downloading (100%)
mailer_1 | warning [email protected]: Invalid bin entry for "sha.js" (in "sha.js").
campaign_1 | - Installing sebastian/exporter (3.1.2): Downloading (100%)
beam_1 | - Installing friendsofphp/php-cs-fixer (v2.16.1): Downloading (100%)
sso_1 | - Installing hamcrest/hamcrest-php (v2.0.0): Downloading (100%)
mailer_1 | info [email protected]: The platform "linux" is incompatible with this module.
mailer_1 | info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
mailer_1 | [4/5] Linking dependencies...
mailer_1 | warning " > [email protected]" has unmet peer dependency "moment-timezone@^0.4.0".
mailer_1 | warning " > [email protected]" has unmet peer dependency "css-loader@".
mailer_1 | warning " > [email protected]" has unmet peer dependency "webpack@^3.0.0 || ^4.0.0".
sso_1 | - Installing mockery/mockery (1.3.0): Downloading (100%)
campaign_1 | - Installing sebastian/diff (3.0.2): Downloading (100%)
beam_1 | - Installing predis/predis (v1.1.1): Downloading (100%)
campaign_1 | - Installing sebastian/comparator (3.0.2): Downloading (100%)
sso_1 | - Installing filp/whoops (2.5.0): Downloading (100%)
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
beam_1 | - Installing cakephp/chronos (1.3.0): Downloading (100%)
mailer_1 | [5/5] Building fresh packages...
mailer_1 | Done in 38.83s.
mailer_1 | /root/remp.sh: line 15: npm: command not found
sso_1 | - Installing nunomaduro/collision (v2.1.1): Downloading (100%)
campaign_1 | - Installing hamcrest/hamcrest-php (v2.0.0): Downloading (100%)
mailer_1 | yarn run v1.21.1
mailer_1 | warning package.json: No license field
mailer_1 | $ node node_modules/cross-env/dist/bin/cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js
sso_1 | - Installing phpdocumentor/reflection-common (2.0.0): Downloading (100%)
campaign_1 | - Installing mockery/mockery (1.3.0): Downloading (100%)
sso_1 | - Installing phpdocumentor/type-resolver (1.0.1): Downloading (100%)
sso_1 | - Installing phpdocumentor/reflection-docblock (4.3.2): Downloading (connecting...Downloading (100%)
campaign_1 | - Installing filp/whoops (2.5.0): Downloading (100%)
mailer_1 | 10% building 3/7 modules 4 active ...e_modules/style-loader/lib/addStyles.jsBrowserslist: caniuse-lite is outdated. Please run next command yarn upgrade
sso_1 | - Installing phpunit/php-token-stream (3.1.1): Downloading (100%)
beam_1 | - Installing laravel/horizon (v2.2.2): Downloading (100%)
campaign_1 | - Installing nunomaduro/collision (v2.1.1): Downloading (100%)
sso_1 | - Installing sebastian/version (2.0.1): Downloading (100%)
beam_1 | - Installing laravel/tinker (v1.0.10): Downloading (100%)
campaign_1 | - Installing phpdocumentor/reflection-common (2.0.0): Downloading (100%)
sso_1 | - Installing sebastian/resource-operations (2.0.1): Downloading (100%)
beam_1 | - Installing sebastian/recursion-context (3.0.0): Downloading (100%)
campaign_1 | - Installing phpdocumentor/type-resolver (1.0.1): Downloading (100%)
sso_1 | - Installing sebastian/object-reflector (1.1.1): Downloading (100%)
beam_1 | - Installing sebastian/exporter (3.1.2): Downloading (100%)
campaign_1 | - Installing phpdocumentor/reflection-docblock (4.3.2): Downloading (connecting...Downloading (100%)
sso_1 | - Installing sebastian/object-enumerator (3.0.3): Downloading (100%)
beam_1 | - Installing sebastian/diff (3.0.2): Downloading (100%)
sso_1 | - Installing sebastian/global-state (2.0.0): Downloading (100%)
campaign_1 | - Installing phpunit/php-token-stream (3.1.1): Downloading (100%)
beam_1 | - Installing sebastian/comparator (3.0.2): Downloading (100%)
campaign_1 | - Installing sebastian/version (2.0.1): Downloading (100%)
sso_1 | - Installing sebastian/environment (4.2.3): Downloading (100%)
beam_1 | - Installing hamcrest/hamcrest-php (v2.0.0): Downloading (100%)
sso_1 | - Installing phpunit/php-timer (2.1.2): Downloading (100%)
campaign_1 | - Installing sebastian/resource-operations (2.0.1): Downloading (100%)
sso_1 | - Installing phpunit/php-text-template (1.2.1): Downloading (100%)
beam_1 | - Installing mockery/mockery (1.3.0): Downloading (100%)
campaign_1 | - Installing sebastian/object-reflector (1.1.1): Downloading (100%)
sso_1 | - Installing phpunit/php-file-iterator (2.0.2): Downloading (100%)
campaign_1 | - Installing sebastian/object-enumerator (3.0.3): Downloading (100%)
beam_1 | - Installing filp/whoops (2.5.0): Downloading (100%)
98% after emitting SizeLimitsPlugin DONE Compiled successfully in 22015ms9:56:01 PM
mailer_1 |
sso_1 | - Installing theseer/tokenizer (1.1.3): Downloading (100%)
Asset Size Chunks Chunk Names
mailer_1 | /js/app.js 40.9 KiB /js/app [emitted] /js/app
mailer_1 | /js/manifest.js 6.05 KiB /js/manifest [emitted] /js/manifest
mailer_1 | /js/vendor.js 4.32 MiB /js/vendor [emitted] /js/vendor
mailer_1 | css/app.css 306 KiB /js/app [emitted] /js/app
mailer_1 | css/vendor.css 534 KiB /js/app [emitted] /js/app
mailer_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1 19.7 KiB [emitted]
mailer_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760 106 KiB [emitted]
mailer_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512 44.3 KiB [emitted]
mailer_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb 17.6 KiB [emitted]
mailer_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158 22.9 KiB [emitted]
mailer_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.ttf?b351bd62abcd96e924d9f44a3da169a7 96.9 KiB [emitted]
mailer_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff2?a4d31128b633bc0b1cc1f18a34fb3851 37.5 KiB [emitted]
mailer_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff?d2a55d331bdd1a7ea97a8a1fbb3c569c 49.1 KiB [emitted]
mailer_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.eot?7ad17c6085dee9a33787bac28fb23d46 19.9 KiB [emitted]
mailer_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.svg?ff423a4251cf2986555523dfe315c42b 61.5 KiB [emitted]
mailer_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.ttf?e49d52e74b7689a0727def99da31f3eb 40.3 KiB [emitted]
mailer_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff2?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
mailer_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
mailer_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.svg?eb896e02814c0d03409c6373f151f7c3 1.87 MiB [emitted]
mailer_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.woff?c2183257e7a697769df4200c547551f1 215 KiB [emitted]
mailer_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.svg?c904f2792d8edc1386c42db47ab1d547 1.64 MiB [emitted]
mailer_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.woff?7e6a5123891a4871dfc410fbd88cd445 244 KiB [emitted]
mailer_1 | images/vendor/remp/logo_dark.svg?a59eb1db3c379683cf35178538a10989 4.06 KiB [emitted]
mailer_1 | images/vendor/remp/select.png?49ba2d14cefacfa9e7a0604e1121cc21 128 bytes [emitted]
mailer_1 | images/vendor/remp/[email protected]?a0bce7e2e7cd47ff73b45979c9d08ed5 217 bytes [emitted]
mailer_1 | Done in 27.85s.
campaign_1 | - Installing sebastian/global-state (2.0.0): Downloading (100%)
mailer_1 | Nette\Neon\Exception: Invalid combination of tabs and spaces on line 25, column 4. in /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php:356
mailer_1 | Stack trace:
mailer_1 | #0 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(218): Nette\Neon\Decoder->error('Invalid combina...')
mailer_1 | #1 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(226): Nette\Neon\Decoder->parse(' ')
mailer_1 | #2 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(226): Nette\Neon\Decoder->parse(' ')
mailer_1 | #3 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(100): Nette\Neon\Decoder->parse('')
mailer_1 | #4 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Neon.php(40): Nette\Neon\Decoder->decode('services:\n #...')
mailer_1 | #5 /var/www/html/Mailer/vendor/nette/di/src/DI/Config/Adapters/NeonAdapter.php(35): Nette\Neon\Neon::decode('services:\n #...')
mailer_1 | #6 /var/www/html/Mailer/vendor/nette/di/src/DI/Config/Loader.php(53): Nette\DI\Config\Adapters\NeonAdapter->load('/var/www/html/M...')
mailer_1 | #7 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(287): Nette\DI\Config\Loader->load('/var/www/html/M...', NULL)
mailer_1 | #8 [internal function]: Nette\Configurator->generateContainer(Object(Nette\DI\Compiler))
mailer_1 | #9 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(125): call_user_func_array(Array, Array)
mailer_1 | #10 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(85): Nette\DI\ContainerLoader->generate('Container_1c87e...', Array)
mailer_1 | #11 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(47): Nette\DI\ContainerLoader->loadFile('Container_1c87e...', Array)
mailer_1 | #12 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(267): Nette\DI\ContainerLoader->load(Array, Array)
mailer_1 | #13 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(242): Nette\Configurator->loadContainer()
mailer_1 | #14 /var/www/html/Mailer/app/bootstrap.php(42): Nette\Configurator->createContainer()
mailer_1 | #15 /var/www/html/Mailer/bin/command.php(8): require('/var/www/html/M...')
mailer_1 | #16 {main}
mailer_1 | (stored in /var/www/html/Mailer/app/../log/exception--2020-01-15--22-56--bf3d28e254.html)
mailer_1 | Nette\Neon\Exception: Invalid combination of tabs and spaces on line 25, column 4. in /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php:356
mailer_1 | Stack trace:
mailer_1 | #0 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(218): Nette\Neon\Decoder->error('Invalid combina...')
mailer_1 | #1 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(226): Nette\Neon\Decoder->parse(' ')
mailer_1 | #2 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(226): Nette\Neon\Decoder->parse(' ')
mailer_1 | #3 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(100): Nette\Neon\Decoder->parse('')
mailer_1 | #4 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Neon.php(40): Nette\Neon\Decoder->decode('services:\n #...')
mailer_1 | #5 /var/www/html/Mailer/vendor/nette/di/src/DI/Config/Adapters/NeonAdapter.php(35): Nette\Neon\Neon::decode('services:\n #...')
mailer_1 | #6 /var/www/html/Mailer/vendor/nette/di/src/DI/Config/Loader.php(53): Nette\DI\Config\Adapters\NeonAdapter->load('/var/www/html/M...')
mailer_1 | #7 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(287): Nette\DI\Config\Loader->load('/var/www/html/M...', NULL)
mailer_1 | #8 [internal function]: Nette\Configurator->generateContainer(Object(Nette\DI\Compiler))
mailer_1 | #9 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(125): call_user_func_array(Array, Array)
mailer_1 | #10 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(85): Nette\DI\ContainerLoader->generate('Container_1c87e...', Array)
mailer_1 | #11 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(47): Nette\DI\ContainerLoader->loadFile('Container_1c87e...', Array)
mailer_1 | #12 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(267): Nette\DI\ContainerLoader->load(Array, Array)
mailer_1 | #13 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(242): Nette\Configurator->loadContainer()
mailer_1 | #14 /var/www/html/Mailer/app/bootstrap.php(42): Nette\Configurator->createContainer()
mailer_1 | #15 /var/www/html/Mailer/bin/command.php(8): require('/var/www/html/M...')
mailer_1 | #16 {main}
mailer_1 | (stored in /var/www/html/Mailer/app/../log/exception--2020-01-15--22-56--bf3d28e254.html)
mailer_1 | Nette\Neon\Exception: Invalid combination of tabs and spaces on line 25, column 4. in /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php:356
mailer_1 | Stack trace:
mailer_1 | #0 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(218): Nette\Neon\Decoder->error('Invalid combina...')
mailer_1 | #1 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(226): Nette\Neon\Decoder->parse(' ')
mailer_1 | #2 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(226): Nette\Neon\Decoder->parse(' ')
mailer_1 | #3 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Decoder.php(100): Nette\Neon\Decoder->parse('')
mailer_1 | #4 /var/www/html/Mailer/vendor/nette/neon/src/Neon/Neon.php(40): Nette\Neon\Decoder->decode('services:\n #...')
mailer_1 | #5 /var/www/html/Mailer/vendor/nette/di/src/DI/Config/Adapters/NeonAdapter.php(35): Nette\Neon\Neon::decode('services:\n #...')
mailer_1 | #6 /var/www/html/Mailer/vendor/nette/di/src/DI/Config/Loader.php(53): Nette\DI\Config\Adapters\NeonAdapter->load('/var/www/html/M...')
mailer_1 | #7 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(287): Nette\DI\Config\Loader->load('/var/www/html/M...', NULL)
mailer_1 | #8 [internal function]: Nette\Configurator->generateContainer(Object(Nette\DI\Compiler))
mailer_1 | #9 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(125): call_user_func_array(Array, Array)
mailer_1 | #10 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(85): Nette\DI\ContainerLoader->generate('Container_1c87e...', Array)
mailer_1 | #11 /var/www/html/Mailer/vendor/nette/di/src/DI/ContainerLoader.php(47): Nette\DI\ContainerLoader->loadFile('Container_1c87e...', Array)
mailer_1 | #12 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(267): Nette\DI\ContainerLoader->load(Array, Array)
mailer_1 | #13 /var/www/html/Mailer/vendor/nette/bootstrap/src/Bootstrap/Configurator.php(242): Nette\Configurator->loadContainer()
mailer_1 | #14 /var/www/html/Mailer/app/bootstrap.php(42): Nette\Configurator->createContainer()
mailer_1 | #15 /var/www/html/Mailer/bin/command.php(8): require('/var/www/html/M...')
mailer_1 | #16 {main}
mailer_1 | (stored in /var/www/html/Mailer/app/../log/exception--2020-01-15--22-56--bf3d28e254.html)
mailer_1 | [15-Jan-2020 21:56:03] NOTICE: fpm is running, pid 346
mailer_1 | [15-Jan-2020 21:56:03] NOTICE: ready to handle connections
sso_1 | - Installing sebastian/code-unit-reverse-lookup (1.0.1): Downloading (connecting..Downloading (100%)
beam_1 | - Installing nunomaduro/collision (v2.1.1): Downloading (100%)
campaign_1 | - Installing sebastian/environment (4.2.3): Downloading (100%)
beam_1 | - Installing phpdocumentor/reflection-common (2.0.0): Downloading (100%)
sso_1 | - Installing phpunit/php-code-coverage (6.1.4): Downloading (100%)
campaign_1 | - Installing phpunit/php-timer (2.1.2): Downloading (100%)
beam_1 | - Installing phpdocumentor/type-resolver (1.0.1): Downloading (100%)
campaign_1 | - Installing phpunit/php-text-template (1.2.1): Downloading (100%)
sso_1 | - Installing doctrine/instantiator (1.3.0): Downloading (100%)
campaign_1 | - Installing phpunit/php-file-iterator (2.0.2): Downloading (100%)
beam_1 | - Installing phpdocumentor/reflection-docblock (4.3.2): Downloading (connecting...Downloading (100%)
sso_1 | - Installing phpspec/prophecy (1.9.0): Downloading (100%)
campaign_1 | - Installing theseer/tokenizer (1.1.3): Downloading (100%)
beam_1 | - Installing phpunit/php-token-stream (3.1.1): Downloading (100%)
sso_1 | - Installing phar-io/version (2.0.1): Downloading (100%)
campaign_1 | - Installing sebastian/code-unit-reverse-lookup (1.0.1): Downloading (connecting..Downloading (100%)
beam_1 | - Installing sebastian/version (2.0.1): Downloading (100%)
sso_1 | - Installing phar-io/manifest (1.0.3): Downloading (100%)
beam_1 | - Installing sebastian/resource-operations (2.0.1): Downloading (100%)
campaign_1 | - Installing phpunit/php-code-coverage (6.1.4): Downloading (100%)
sso_1 | - Installing myclabs/deep-copy (1.9.3): Downloading (100%)
beam_1 | - Installing sebastian/object-reflector (1.1.1): Downloading (100%)
campaign_1 | - Installing doctrine/instantiator (1.3.0): Downloading (100%)
beam_1 | - Installing sebastian/object-enumerator (3.0.3): Downloading (100%)
campaign_1 | - Installing phpspec/prophecy (1.9.0): Downloading (100%)
sso_1 | - Installing phpunit/phpunit (7.5.17): Downloading (100%)
beam_1 | - Installing sebastian/global-state (2.0.0): Downloading (100%)
sso_1 | symfony/service-contracts suggests installing symfony/service-implementation
sso_1 | symfony/console suggests installing symfony/lock
sso_1 | doctrine/cache suggests installing alcaeus/mongo-php-adapter (Required to use legacy MongoDB driver)
sso_1 | symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)
sso_1 | symfony/routing suggests installing symfony/expression-language (For using expression matching)
sso_1 | symfony/event-dispatcher-contracts suggests installing psr/event-dispatcher
sso_1 | symfony/event-dispatcher suggests installing symfony/dependency-injection
sso_1 | symfony/http-kernel suggests installing symfony/browser-kit
sso_1 | symfony/http-kernel suggests installing symfony/config
sso_1 | symfony/http-kernel suggests installing symfony/dependency-injection
sso_1 | swiftmailer/swiftmailer suggests installing true/punycode (Needed to support internationalized email addresses, if ext-intl is not installed)
sso_1 | paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
sso_1 | ramsey/uuid suggests installing ext-libsodium (Provides the PECL libsodium extension for use with the SodiumRandomGenerator)
sso_1 | ramsey/uuid suggests installing ext-uuid (Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator)
sso_1 | ramsey/uuid suggests installing moontoast/math (Provides support for converting UUID to 128-bit integer (in string form).)
sso_1 | ramsey/uuid suggests installing paragonie/random-lib (Provides RandomLib for use with the RandomLibAdapter)
sso_1 | ramsey/uuid suggests installing ramsey/uuid-console (A console application for generating UUIDs with ramsey/uuid)
sso_1 | ramsey/uuid suggests installing ramsey/uuid-doctrine (Allows the use of Ramsey\Uuid\Uuid as Doctrine field type.)
sso_1 | symfony/translation suggests installing symfony/config
sso_1 | monolog/monolog suggests installing aws/aws-sdk-php (Allow sending log messages to AWS services like DynamoDB)
sso_1 | monolog/monolog suggests installing doctrine/couchdb (Allow sending log messages to a CouchDB server)
sso_1 | monolog/monolog suggests installing ext-amqp (Allow sending log messages to an AMQP server (1.0+ required))
sso_1 | monolog/monolog suggests installing ext-mongo (Allow sending log messages to a MongoDB server)
sso_1 | monolog/monolog suggests installing graylog2/gelf-php (Allow sending log messages to a GrayLog2 server)
sso_1 | monolog/monolog suggests installing mongodb/mongodb (Allow sending log messages to a MongoDB server via PHP Driver)
sso_1 | monolog/monolog suggests installing php-console/php-console (Allow sending log messages to Google Chrome)
sso_1 | monolog/monolog suggests installing rollbar/rollbar (Allow sending log messages to Rollbar)
sso_1 | monolog/monolog suggests installing ruflin/elastica (Allow sending log messages to an Elastic Search server)
sso_1 | monolog/monolog suggests installing sentry/sentry (Allow sending log messages to a Sentry server)
sso_1 | league/flysystem suggests installing league/flysystem-aws-s3-v2 (Allows you to use S3 storage with AWS SDK v2)
sso_1 | league/flysystem suggests installing league/flysystem-aws-s3-v3 (Allows you to use S3 storage with AWS SDK v3)
sso_1 | league/flysystem suggests installing league/flysystem-azure (Allows you to use Windows Azure Blob storage)
sso_1 | league/flysystem suggests installing league/flysystem-cached-adapter (Flysystem adapter decorator for metadata caching)
sso_1 | league/flysystem suggests installing league/flysystem-eventable-filesystem (Allows you to use EventableFilesystem)
sso_1 | league/flysystem suggests installing league/flysystem-rackspace (Allows you to use Rackspace Cloud Files)
sso_1 | league/flysystem suggests installing league/flysystem-sftp (Allows you to use SFTP server storage via phpseclib)
sso_1 | league/flysystem suggests installing league/flysystem-webdav (Allows you to use WebDAV storage)
sso_1 | league/flysystem suggests installing league/flysystem-ziparchive (Allows you to use ZipArchive adapter)
sso_1 | league/flysystem suggests installing spatie/flysystem-dropbox (Allows you to use Dropbox storage)
sso_1 | league/flysystem suggests installing srmklive/flysystem-dropbox-v2 (Allows you to use Dropbox storage for PHP 5 applications)
sso_1 | guzzlehttp/psr7 suggests installing zendframework/zend-httphandlerrunner (Emit PSR-7 responses)
sso_1 | laravel/framework suggests installing aws/aws-sdk-php (Required to use the SQS queue driver and SES mail driver (^3.0).)
sso_1 | laravel/framework suggests installing laravel/tinker (Required to use the tinker console command (^1.0).)
sso_1 | laravel/framework suggests installing league/flysystem-aws-s3-v3 (Required to use the Flysystem S3 driver (^1.0).)
sso_1 | laravel/framework suggests installing league/flysystem-cached-adapter (Required to use the Flysystem cache (^1.0).)
sso_1 | laravel/framework suggests installing league/flysystem-rackspace (Required to use the Flysystem Rackspace driver (^1.0).)
sso_1 | laravel/framework suggests installing league/flysystem-sftp (Required to use the Flysystem SFTP driver (^1.0).)
sso_1 | laravel/framework suggests installing moontoast/math (Required to use ordered UUIDs (^1.1).)
sso_1 | laravel/framework suggests installing pda/pheanstalk (Required to use the beanstalk queue driver (^3.0|^4.0).)
sso_1 | laravel/framework suggests installing pusher/pusher-php-server (Required to use the Pusher broadcast driver (^3.0).)
sso_1 | laravel/framework suggests installing symfony/dom-crawler (Required to use most of the crawler integration testing tools (^4.1).)
sso_1 | laravel/framework suggests installing symfony/psr-http-message-bridge (Required to psr7 bridging features (^1.0).)
sso_1 | league/uri-hostname-parser suggests installing psr/simple-cache-implementation (To enable using other cache providers)
sso_1 | phpseclib/phpseclib suggests installing ext-gmp (Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.)
sso_1 | phpseclib/phpseclib suggests installing ext-libsodium (SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.)
sso_1 | phpseclib/phpseclib suggests installing ext-mcrypt (Install the Mcrypt extension in order to speed up a few other cryptographic operations.)
sso_1 | predis/predis suggests installing ext-phpiredis (Allows faster serialization and deserialization of the Redis protocol)
sso_1 | tracy/tracy suggests installing https://nette.org/donate (Please support Tracy via a donation)
sso_1 | psy/psysh suggests installing ext-pdo-sqlite (The doc command requires SQLite to work.)
sso_1 | psy/psysh suggests installing hoa/console (A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit.)
sso_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-buttons (Plugin for server-side exporting of dataTables.)
sso_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-editor (Plugin to use DataTables Editor (requires a license).)
sso_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-fractal (Plugin for server-side response using Fractal.)
sso_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-html (Plugin for server-side HTML builder of dataTables.)
sso_1 | barryvdh/reflection-docblock suggests installing dflydev/markdown (~1.0)
sso_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-isidenticalstring (For IsIdenticalString constraint.)
sso_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-xmlmatchesxsd (For XmlMatchesXsd constraint.)
sso_1 | filp/whoops suggests installing whoops/soap (Formats errors as SOAP responses)
sso_1 | sebastian/global-state suggests installing ext-uopz (
)
sso_1 | phpunit/phpunit suggests installing ext-soap ()
sso_1 | phpunit/phpunit suggests installing phpunit/php-invoker (^2.0)
sso_1 | Generating optimized autoload files
sso_1 | Carbon 1 is deprecated, see how to migrate to Carbon 2.
sso_1 | https://carbon.nesbot.com/docs/#api-carbon-2
sso_1 | You can run './vendor/bin/upgrade-carbon' to get help in updating carbon and other frameworks and libraries that depend on it.
sso_1 | > Illuminate\Foundation\ComposerScripts::postAutoloadDump
sso_1 | > @php artisan package:discover
sso_1 | Discovered Package: arrilot/laravel-widgets
sso_1 | Discovered Package: barryvdh/laravel-ide-helper
sso_1 | Discovered Package: fideloper/proxy
sso_1 | Discovered Package: kouz/laravel-airbrake
sso_1 | Discovered Package: laracasts/flash
sso_1 | Discovered Package: laravel/nexmo-notification-channel
sso_1 | Discovered Package: laravel/slack-notification-channel
sso_1 | Discovered Package: laravel/socialite
sso_1 | Discovered Package: laravelcollective/html
sso_1 | Discovered Package: nesbot/carbon
sso_1 | Discovered Package: nunomaduro/collision
sso_1 | Discovered Package: recca0120/laravel-tracy
sso_1 | Discovered Package: recca0120/terminal
sso_1 | Discovered Package: remp/laravel-helpers
sso_1 | Discovered Package: remp/laravel-sso
sso_1 | Discovered Package: remp/laravel-widgets
sso_1 | Discovered Package: tymon/jwt-auth
sso_1 | Discovered Package: yajra/laravel-datatables-oracle
sso_1 | Package manifest generated successfully.
beam_1 | - Installing sebastian/environment (4.2.3): Downloading (100%)
campaign_1 | - Installing phar-io/version (2.0.1): Downloading (100%)
sso_1 | yarn install v1.21.1
sso_1 | [1/5] Validating package.json...
sso_1 | [2/5] Resolving packages...
sso_1 | [3/5] Fetching packages...
beam_1 | - Installing phpunit/php-timer (2.1.2): Downloading (100%)
campaign_1 | - Installing phar-io/manifest (1.0.3): Downloading (100%)
sso_1 | warning [email protected]: Invalid bin field for "file-loader".
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
beam_1 | - Installing phpunit/php-text-template (1.2.1): Downloading (100%)
beam_1 | - Installing phpunit/php-file-iterator (2.0.2): Downloading (100%)
campaign_1 | - Installing myclabs/deep-copy (1.9.3): Downloading (100%)
beam_1 | - Installing theseer/tokenizer (1.1.3): Downloading (100%)
beam_1 | - Installing sebastian/code-unit-reverse-lookup (1.0.1): Downloading (connecting..Downloading (100%)
beam_1 | - Installing phpunit/php-code-coverage (6.1.4): Downloading (100%)
campaign_1 | - Installing phpunit/phpunit (7.5.17): Downloading (100%)
beam_1 | - Installing doctrine/instantiator (1.3.0): Downloading (100%)
campaign_1 | predis/predis suggests installing ext-phpiredis (Allows faster serialization and deserialization of the Redis protocol)
campaign_1 | symfony/service-contracts suggests installing symfony/service-implementation
campaign_1 | symfony/console suggests installing symfony/lock
campaign_1 | doctrine/cache suggests installing alcaeus/mongo-php-adapter (Required to use legacy MongoDB driver)
campaign_1 | symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)
campaign_1 | symfony/routing suggests installing symfony/expression-language (For using expression matching)
campaign_1 | symfony/event-dispatcher-contracts suggests installing psr/event-dispatcher
campaign_1 | symfony/event-dispatcher suggests installing symfony/dependency-injection
campaign_1 | symfony/http-kernel suggests installing symfony/browser-kit
campaign_1 | symfony/http-kernel suggests installing symfony/config
campaign_1 | symfony/http-kernel suggests installing symfony/dependency-injection
campaign_1 | swiftmailer/swiftmailer suggests installing true/punycode (Needed to support internationalized email addresses, if ext-intl is not installed)
campaign_1 | paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
campaign_1 | ramsey/uuid suggests installing ext-libsodium (Provides the PECL libsodium extension for use with the SodiumRandomGenerator)
campaign_1 | ramsey/uuid suggests installing ext-uuid (Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator)
campaign_1 | ramsey/uuid suggests installing moontoast/math (Provides support for converting UUID to 128-bit integer (in string form).)
campaign_1 | ramsey/uuid suggests installing paragonie/random-lib (Provides RandomLib for use with the RandomLibAdapter)
campaign_1 | ramsey/uuid suggests installing ramsey/uuid-console (A console application for generating UUIDs with ramsey/uuid)
campaign_1 | ramsey/uuid suggests installing ramsey/uuid-doctrine (Allows the use of Ramsey\Uuid\Uuid as Doctrine field type.)
campaign_1 | symfony/translation suggests installing symfony/config
campaign_1 | monolog/monolog suggests installing aws/aws-sdk-php (Allow sending log messages to AWS services like DynamoDB)
campaign_1 | monolog/monolog suggests installing doctrine/couchdb (Allow sending log messages to a CouchDB server)
campaign_1 | monolog/monolog suggests installing ext-amqp (Allow sending log messages to an AMQP server (1.0+ required))
campaign_1 | monolog/monolog suggests installing ext-mongo (Allow sending log messages to a MongoDB server)
campaign_1 | monolog/monolog suggests installing graylog2/gelf-php (Allow sending log messages to a GrayLog2 server)
campaign_1 | monolog/monolog suggests installing mongodb/mongodb (Allow sending log messages to a MongoDB server via PHP Driver)
campaign_1 | monolog/monolog suggests installing php-console/php-console (Allow sending log messages to Google Chrome)
campaign_1 | monolog/monolog suggests installing rollbar/rollbar (Allow sending log messages to Rollbar)
campaign_1 | monolog/monolog suggests installing ruflin/elastica (Allow sending log messages to an Elastic Search server)
campaign_1 | monolog/monolog suggests installing sentry/sentry (Allow sending log messages to a Sentry server)
campaign_1 | league/flysystem suggests installing league/flysystem-aws-s3-v2 (Allows you to use S3 storage with AWS SDK v2)
campaign_1 | league/flysystem suggests installing league/flysystem-aws-s3-v3 (Allows you to use S3 storage with AWS SDK v3)
campaign_1 | league/flysystem suggests installing league/flysystem-azure (Allows you to use Windows Azure Blob storage)
campaign_1 | league/flysystem suggests installing league/flysystem-cached-adapter (Flysystem adapter decorator for metadata caching)
campaign_1 | league/flysystem suggests installing league/flysystem-eventable-filesystem (Allows you to use EventableFilesystem)
campaign_1 | league/flysystem suggests installing league/flysystem-rackspace (Allows you to use Rackspace Cloud Files)
campaign_1 | league/flysystem suggests installing league/flysystem-sftp (Allows you to use SFTP server storage via phpseclib)
campaign_1 | league/flysystem suggests installing league/flysystem-webdav (Allows you to use WebDAV storage)
campaign_1 | league/flysystem suggests installing league/flysystem-ziparchive (Allows you to use ZipArchive adapter)
campaign_1 | league/flysystem suggests installing spatie/flysystem-dropbox (Allows you to use Dropbox storage)
campaign_1 | league/flysystem suggests installing srmklive/flysystem-dropbox-v2 (Allows you to use Dropbox storage for PHP 5 applications)
campaign_1 | guzzlehttp/psr7 suggests installing zendframework/zend-httphandlerrunner (Emit PSR-7 responses)
campaign_1 | laravel/framework suggests installing aws/aws-sdk-php (Required to use the SQS queue driver and SES mail driver (^3.0).)
campaign_1 | laravel/framework suggests installing laravel/tinker (Required to use the tinker console command (^1.0).)
campaign_1 | laravel/framework suggests installing league/flysystem-aws-s3-v3 (Required to use the Flysystem S3 driver (^1.0).)
campaign_1 | laravel/framework suggests installing league/flysystem-cached-adapter (Required to use the Flysystem cache (^1.0).)
campaign_1 | laravel/framework suggests installing league/flysystem-rackspace (Required to use the Flysystem Rackspace driver (^1.0).)
campaign_1 | laravel/framework suggests installing league/flysystem-sftp (Required to use the Flysystem SFTP driver (^1.0).)
campaign_1 | laravel/framework suggests installing moontoast/math (Required to use ordered UUIDs (^1.1).)
campaign_1 | laravel/framework suggests installing pda/pheanstalk (Required to use the beanstalk queue driver (^3.0|^4.0).)
campaign_1 | laravel/framework suggests installing pusher/pusher-php-server (Required to use the Pusher broadcast driver (^3.0).)
campaign_1 | laravel/framework suggests installing symfony/dom-crawler (Required to use most of the crawler integration testing tools (^4.1).)
campaign_1 | laravel/framework suggests installing symfony/psr-http-message-bridge (Required to psr7 bridging features (^1.0).)
campaign_1 | maxmind-db/reader suggests installing ext-gmp (bcmath or gmp is required for decoding larger integers with the pure PHP decoder)
campaign_1 | maxmind-db/reader suggests installing ext-maxminddb (A C-based database decoder that provides significantly faster lookups)
campaign_1 | league/uri-hostname-parser suggests installing psr/simple-cache-implementation (To enable using other cache providers)
campaign_1 | phpseclib/phpseclib suggests installing ext-gmp (Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.)
campaign_1 | phpseclib/phpseclib suggests installing ext-libsodium (SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.)
campaign_1 | phpseclib/phpseclib suggests installing ext-mcrypt (Install the Mcrypt extension in order to speed up a few other cryptographic operations.)
campaign_1 | piwik/device-detector suggests installing ext-yaml (Necessary for using the Pecl YAML parser)
campaign_1 | tracy/tracy suggests installing https://nette.org/donate (Please support Tracy via a donation)
campaign_1 | psy/psysh suggests installing ext-pdo-sqlite (The doc command requires SQLite to work.)
campaign_1 | psy/psysh suggests installing hoa/console (A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit.)
campaign_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-buttons (Plugin for server-side exporting of dataTables.)
campaign_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-editor (Plugin to use DataTables Editor (requires a license).)
campaign_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-fractal (Plugin for server-side response using Fractal.)
campaign_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-html (Plugin for server-side HTML builder of dataTables.)
campaign_1 | barryvdh/reflection-docblock suggests installing dflydev/markdown (~1.0)
campaign_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-isidenticalstring (For IsIdenticalString constraint.)
campaign_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-xmlmatchesxsd (For XmlMatchesXsd constraint.)
campaign_1 | filp/whoops suggests installing whoops/soap (Formats errors as SOAP responses)
campaign_1 | sebastian/global-state suggests installing ext-uopz (
)
campaign_1 | phpunit/phpunit suggests installing ext-soap ()
campaign_1 | phpunit/phpunit suggests installing phpunit/php-invoker (^2.0)
campaign_1 | Generating autoload files
campaign_1 | Carbon 1 is deprecated, see how to migrate to Carbon 2.
campaign_1 | https://carbon.nesbot.com/docs/#api-carbon-2
campaign_1 | You can run './vendor/bin/upgrade-carbon' to get help in updating carbon and other frameworks and libraries that depend on it.
campaign_1 | > Illuminate\Foundation\ComposerScripts::postAutoloadDump
campaign_1 | > @php artisan package:discover
campaign_1 | Discovered Package: arrilot/laravel-widgets
campaign_1 | Discovered Package: barryvdh/laravel-ide-helper
campaign_1 | Discovered Package: fideloper/proxy
campaign_1 | Discovered Package: josiasmontag/laravel-redis-mock
campaign_1 | Discovered Package: kouz/laravel-airbrake
campaign_1 | Discovered Package: laracasts/flash
campaign_1 | Discovered Package: laravel/nexmo-notification-channel
campaign_1 | Discovered Package: laravel/slack-notification-channel
campaign_1 | Discovered Package: laravelcollective/html
campaign_1 | Discovered Package: nesbot/carbon
campaign_1 | Discovered Package: nunomaduro/collision
campaign_1 | Discovered Package: recca0120/laravel-tracy
campaign_1 | Discovered Package: recca0120/terminal
campaign_1 | Discovered Package: remp/laravel-helpers
campaign_1 | Discovered Package: remp/laravel-sso
campaign_1 | Discovered Package: remp/laravel-widgets
campaign_1 | Discovered Package: tightenco/ziggy
campaign_1 | Discovered Package: yajra/laravel-datatables-oracle
campaign_1 | Package manifest generated successfully.
campaign_1 | yarn install v1.21.1
beam_1 | - Installing phpspec/prophecy (1.9.0): Downloading (100%)
campaign_1 | [1/5] Validating package.json...
campaign_1 | [2/5] Resolving packages...
sso_1 | warning [email protected]: Invalid bin entry for "sha.js" (in "sha.js").
campaign_1 | [3/5] Fetching packages...
beam_1 | - Installing phar-io/version (2.0.1): Downloading (100%)
beam_1 | - Installing phar-io/manifest (1.0.3): Downloading (100%)
beam_1 | - Installing myclabs/deep-copy (1.9.3): Downloading (100%)
campaign_1 | warning [email protected]: Invalid bin field for "file-loader".
beam_1 | - Installing phpunit/phpunit (7.5.17): Downloading (100%)
beam_1 | symfony/event-dispatcher-contracts suggests installing psr/event-dispatcher
beam_1 | symfony/event-dispatcher suggests installing symfony/dependency-injection
beam_1 | symfony/http-kernel suggests installing symfony/browser-kit
beam_1 | symfony/http-kernel suggests installing symfony/config
beam_1 | symfony/http-kernel suggests installing symfony/dependency-injection
beam_1 | symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)
beam_1 | symfony/routing suggests installing symfony/expression-language (For using expression matching)
beam_1 | symfony/service-contracts suggests installing symfony/service-implementation
beam_1 | symfony/console suggests installing symfony/lock
beam_1 | swiftmailer/swiftmailer suggests installing true/punycode (Needed to support internationalized email addresses, if ext-intl is not installed)
beam_1 | paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
beam_1 | ramsey/uuid suggests installing ext-libsodium (Provides the PECL libsodium extension for use with the SodiumRandomGenerator)
beam_1 | ramsey/uuid suggests installing ext-uuid (Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator)
beam_1 | ramsey/uuid suggests installing moontoast/math (Provides support for converting UUID to 128-bit integer (in string form).)
beam_1 | ramsey/uuid suggests installing paragonie/random-lib (Provides RandomLib for use with the RandomLibAdapter)
beam_1 | ramsey/uuid suggests installing ramsey/uuid-console (A console application for generating UUIDs with ramsey/uuid)
beam_1 | ramsey/uuid suggests installing ramsey/uuid-doctrine (Allows the use of Ramsey\Uuid\Uuid as Doctrine field type.)
beam_1 | symfony/translation suggests installing symfony/config
beam_1 | monolog/monolog suggests installing aws/aws-sdk-php (Allow sending log messages to AWS services like DynamoDB)
beam_1 | monolog/monolog suggests installing doctrine/couchdb (Allow sending log messages to a CouchDB server)
beam_1 | monolog/monolog suggests installing ext-amqp (Allow sending log messages to an AMQP server (1.0+ required))
beam_1 | monolog/monolog suggests installing ext-mongo (Allow sending log messages to a MongoDB server)
beam_1 | monolog/monolog suggests installing graylog2/gelf-php (Allow sending log messages to a GrayLog2 server)
beam_1 | monolog/monolog suggests installing mongodb/mongodb (Allow sending log messages to a MongoDB server via PHP Driver)
beam_1 | monolog/monolog suggests installing php-console/php-console (Allow sending log messages to Google Chrome)
beam_1 | monolog/monolog suggests installing rollbar/rollbar (Allow sending log messages to Rollbar)
beam_1 | monolog/monolog suggests installing ruflin/elastica (Allow sending log messages to an Elastic Search server)
beam_1 | monolog/monolog suggests installing sentry/sentry (Allow sending log messages to a Sentry server)
beam_1 | league/flysystem suggests installing league/flysystem-aws-s3-v2 (Allows you to use S3 storage with AWS SDK v2)
beam_1 | league/flysystem suggests installing league/flysystem-aws-s3-v3 (Allows you to use S3 storage with AWS SDK v3)
beam_1 | league/flysystem suggests installing league/flysystem-azure (Allows you to use Windows Azure Blob storage)
beam_1 | league/flysystem suggests installing league/flysystem-cached-adapter (Flysystem adapter decorator for metadata caching)
beam_1 | league/flysystem suggests installing league/flysystem-eventable-filesystem (Allows you to use EventableFilesystem)
beam_1 | league/flysystem suggests installing league/flysystem-rackspace (Allows you to use Rackspace Cloud Files)
beam_1 | league/flysystem suggests installing league/flysystem-sftp (Allows you to use SFTP server storage via phpseclib)
beam_1 | league/flysystem suggests installing league/flysystem-webdav (Allows you to use WebDAV storage)
beam_1 | league/flysystem suggests installing league/flysystem-ziparchive (Allows you to use ZipArchive adapter)
beam_1 | league/flysystem suggests installing spatie/flysystem-dropbox (Allows you to use Dropbox storage)
beam_1 | league/flysystem suggests installing srmklive/flysystem-dropbox-v2 (Allows you to use Dropbox storage for PHP 5 applications)
beam_1 | guzzlehttp/psr7 suggests installing zendframework/zend-httphandlerrunner (Emit PSR-7 responses)
beam_1 | laravel/framework suggests installing aws/aws-sdk-php (Required to use the SQS queue driver and SES mail driver (^3.0).)
beam_1 | laravel/framework suggests installing league/flysystem-aws-s3-v3 (Required to use the Flysystem S3 driver (^1.0).)
beam_1 | laravel/framework suggests installing league/flysystem-cached-adapter (Required to use the Flysystem cache (^1.0).)
beam_1 | laravel/framework suggests installing league/flysystem-rackspace (Required to use the Flysystem Rackspace driver (^1.0).)
beam_1 | laravel/framework suggests installing league/flysystem-sftp (Required to use the Flysystem SFTP driver (^1.0).)
beam_1 | laravel/framework suggests installing moontoast/math (Required to use ordered UUIDs (^1.1).)
beam_1 | laravel/framework suggests installing pda/pheanstalk (Required to use the beanstalk queue driver (^3.0|^4.0).)
beam_1 | laravel/framework suggests installing pusher/pusher-php-server (Required to use the Pusher broadcast driver (^3.0).)
beam_1 | laravel/framework suggests installing symfony/dom-crawler (Required to use most of the crawler integration testing tools (^4.1).)
beam_1 | laravel/framework suggests installing symfony/psr-http-message-bridge (Required to psr7 bridging features (^1.0).)
beam_1 | doctrine/cache suggests installing alcaeus/mongo-php-adapter (Required to use legacy MongoDB driver)
beam_1 | phpseclib/phpseclib suggests installing ext-gmp (Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.)
beam_1 | phpseclib/phpseclib suggests installing ext-libsodium (SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.)
beam_1 | phpseclib/phpseclib suggests installing ext-mcrypt (Install the Mcrypt extension in order to speed up a few other cryptographic operations.)
beam_1 | google/apiclient suggests installing cache/filesystem-adapter (For caching certs and tokens (using Google_Client::setCache))
beam_1 | league/uri-hostname-parser suggests installing psr/simple-cache-implementation (To enable using other cache providers)
beam_1 | piwik/device-detector suggests installing ext-yaml (Necessary for using the Pecl YAML parser)
beam_1 | tracy/tracy suggests installing https://nette.org/donate (Please support Tracy via a donation)
beam_1 | psy/psysh suggests installing ext-pdo-sqlite (The doc command requires SQLite to work.)
beam_1 | psy/psysh suggests installing hoa/console (A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit.)
beam_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-buttons (Plugin for server-side exporting of dataTables.)
beam_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-editor (Plugin to use DataTables Editor (requires a license).)
beam_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-fractal (Plugin for server-side response using Fractal.)
beam_1 | yajra/laravel-datatables-oracle suggests installing yajra/laravel-datatables-html (Plugin for server-side HTML builder of dataTables.)
beam_1 | barryvdh/reflection-docblock suggests installing dflydev/markdown (~1.0)
beam_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-isidenticalstring (For IsIdenticalString constraint.)
beam_1 | friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-xmlmatchesxsd (For XmlMatchesXsd constraint.)
beam_1 | predis/predis suggests installing ext-phpiredis (Allows faster serialization and deserialization of the Redis protocol)
beam_1 | filp/whoops suggests installing whoops/soap (Formats errors as SOAP responses)
beam_1 | sebastian/global-state suggests installing ext-uopz (
)
beam_1 | phpunit/phpunit suggests installing ext-soap ()
beam_1 | phpunit/phpunit suggests installing phpunit/php-invoker (^2.0)
beam_1 | Generating autoload files
beam_1 | Carbon 1 is deprecated, see how to migrate to Carbon 2.
beam_1 | https://carbon.nesbot.com/docs/#api-carbon-2
beam_1 | You can run './vendor/bin/upgrade-carbon' to get help in updating carbon and other frameworks and libraries that depend on it.
beam_1 | > Illuminate\Foundation\ComposerScripts::postAutoloadDump
beam_1 | > @php artisan package:discover
beam_1 | Discovered Package: arrilot/laravel-widgets
beam_1 | Discovered Package: barryvdh/laravel-cors
beam_1 | Discovered Package: barryvdh/laravel-ide-helper
beam_1 | Discovered Package: fideloper/proxy
beam_1 | Discovered Package: kouz/laravel-airbrake
beam_1 | Discovered Package: laracasts/flash
beam_1 | Discovered Package: laravel/horizon
beam_1 | Discovered Package: laravel/nexmo-notification-channel
beam_1 | Discovered Package: laravel/slack-notification-channel
beam_1 | Discovered Package: laravel/tinker
beam_1 | Discovered Package: laravelcollective/html
beam_1 | Discovered Package: nesbot/carbon
beam_1 | Discovered Package: nunomaduro/collision
beam_1 | Discovered Package: recca0120/laravel-tracy
beam_1 | Discovered Package: recca0120/terminal
beam_1 | Discovered Package: remp/laravel-helpers
beam_1 | Discovered Package: remp/laravel-sso
beam_1 | Discovered Package: remp/laravel-widgets
beam_1 | Discovered Package: tightenco/ziggy
beam_1 | Discovered Package: yajra/laravel-datatables-oracle
beam_1 | Package manifest generated successfully.
beam_1 | yarn install v1.21.1
beam_1 | [1/5] Validating package.json...
beam_1 | [2/5] Resolving packages...
beam_1 | [3/5] Fetching packages...
sso_1 | info [email protected]: The platform "linux" is incompatible with this module.
sso_1 | info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
sso_1 | [4/5] Linking dependencies...
sso_1 | warning " > [email protected]" has unmet peer dependency "webpack@^3.0.0 || ^4.0.0".
beam_1 | warning [email protected]: Invalid bin field for "file-loader".
campaign_1 | warning [email protected]: Invalid bin entry for "sha.js" (in "sha.js").
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
sso_1 | [5/5] Building fresh packages...
sso_1 | Done in 68.46s.
sso_1 | /root/remp.sh: line 15: npm: command not found
sso_1 | yarn run v1.21.1
sso_1 | $ node node_modules/cross-env/dist/bin/cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js
sso_1 | 10% building 3/7 modules 4 active ...e_modules/style-loader/lib/addStyles.jsBrowserslist: caniuse-lite is outdated. Please run next command yarn upgrade
beam_1 | warning [email protected]: Invalid bin entry for "sha.js" (in "sha.js").
campaign_1 | info [email protected]: The platform "linux" is incompatible with this module.
campaign_1 | info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
campaign_1 | [4/5] Linking dependencies...
campaign_1 | warning " > [email protected]" has unmet peer dependency "moment-timezone@^0.4.0".
campaign_1 | warning " > [email protected]" has unmet peer dependency "css-loader@
".
campaign_1 | warning " > [email protected]" has unmet peer dependency "webpack@^3.0.0 || ^4.0.0".
98% after emitting SizeLimitsPlugin DONE Compiled successfully in 29711ms9:58:13 PM
sso_1 |
Asset Size Chunks Chunk Names
sso_1 | /js/app.js 17.2 KiB /js/app [emitted] /js/app
sso_1 | /js/manifest.js 6.05 KiB /js/manifest [emitted] /js/manifest
sso_1 | /js/vendor.js 2.39 MiB /js/vendor [emitted] /js/vendor
sso_1 | css/app.css 287 KiB /js/app [emitted] /js/app
sso_1 | css/vendor.css 514 KiB /js/app [emitted] /js/app
sso_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1 19.7 KiB [emitted]
sso_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760 106 KiB [emitted]
sso_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512 44.3 KiB [emitted]
sso_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb 17.6 KiB [emitted]
sso_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158 22.9 KiB [emitted]
sso_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.ttf?b351bd62abcd96e924d9f44a3da169a7 96.9 KiB [emitted]
sso_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff2?a4d31128b633bc0b1cc1f18a34fb3851 37.5 KiB [emitted]
sso_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff?d2a55d331bdd1a7ea97a8a1fbb3c569c 49.1 KiB [emitted]
sso_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.eot?7ad17c6085dee9a33787bac28fb23d46 19.9 KiB [emitted]
sso_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.svg?ff423a4251cf2986555523dfe315c42b 61.5 KiB [emitted]
sso_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.ttf?e49d52e74b7689a0727def99da31f3eb 40.3 KiB [emitted]
sso_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff2?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
sso_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
sso_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.svg?eb896e02814c0d03409c6373f151f7c3 1.87 MiB [emitted]
sso_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.woff?c2183257e7a697769df4200c547551f1 215 KiB [emitted]
sso_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.svg?c904f2792d8edc1386c42db47ab1d547 1.64 MiB [emitted]
sso_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.woff?7e6a5123891a4871dfc410fbd88cd445 244 KiB [emitted]
sso_1 | images/logo_dark.svg?a59eb1db3c379683cf35178538a10989 4.06 KiB [emitted]
sso_1 | images/vendor/remp/select.png?49ba2d14cefacfa9e7a0604e1121cc21 128 bytes [emitted]
sso_1 | images/vendor/remp/[email protected]?a0bce7e2e7cd47ff73b45979c9d08ed5 217 bytes [emitted]
sso_1 | Done in 37.45s.
sso_1 | Nothing to migrate.
sso_1 | Database seeding completed successfully.
sso_1 | Application key set successfully.
sso_1 | A new helper file was written to _ide_helper.php
sso_1 | A new meta file was written to .phpstorm.meta.php
sso_1 | Model information was written to _ide_helper_models.php
sso_1 | jwt-auth secret [uqBaAEhFCVwnYZjRjGzt9T6XBjlMBc1wk7awYsbkhzIMfxqQ4o3oh8tuPZoO9TGh] set successfully.
sso_1 | [15-Jan-2020 21:58:18] NOTICE: fpm is running, pid 458
sso_1 | [15-Jan-2020 21:58:18] NOTICE: ready to handle connections
campaign_1 | [5/5] Building fresh packages...
campaign_1 | Done in 96.13s.
campaign_1 | /root/remp.sh: line 15: npm: command not found
beam_1 | info [email protected]: The platform "linux" is incompatible with this module.
beam_1 | info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
beam_1 | [4/5] Linking dependencies...
beam_1 | warning " > [email protected]" has unmet peer dependency "moment-timezone@^0.4.0".
beam_1 | warning " > [email protected]" has unmet peer dependency "webpack@^3.0.0 || ^4.0.0".
campaign_1 | yarn run v1.21.1
campaign_1 | $ node node_modules/cross-env/dist/bin/cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
campaign_1 | 10% building 4/9 modules 5 active ...e_modules/style-loader/lib/addStyles.jsBrowserslist: caniuse-lite is outdated. Please run next command yarn upgrade
beam_1 | [5/5] Building fresh packages...
beam_1 | Done in 87.03s.
beam_1 | /root/remp.sh: line 15: npm: command not found
beam_1 | yarn run v1.21.1
beam_1 | $ node node_modules/cross-env/dist/bin/cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js
beam_1 | 10% building 4/9 modules 5 active ...e_modules/style-loader/lib/addStyles.jsBrowserslist: caniuse-lite is outdated. Please run next command yarn upgrade
98% after emitting SizeLimitsPlugin DONE Compiled successfully in 35859ms9:59:07 PM
campaign_1 |
Asset Size Chunks Chunk Names
campaign_1 | /js/app.js 551 KiB /js/app [emitted] /js/app
campaign_1 | /js/banner.js 517 bytes /js/banner [emitted] /js/banner
campaign_1 | /js/manifest.js 6.05 KiB /js/manifest [emitted] /js/manifest
campaign_1 | /js/vendor.js 3.6 MiB /js/vendor [emitted] /js/vendor
campaign_1 | css/app.css 308 KiB /js/app [emitted] /js/app
campaign_1 | css/vendor.css 525 KiB /js/app [emitted] /js/app
campaign_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1 19.7 KiB [emitted]
campaign_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760 106 KiB [emitted]
campaign_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512 44.3 KiB [emitted]
campaign_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb 17.6 KiB [emitted]
campaign_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158 22.9 KiB [emitted]
campaign_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.ttf?b351bd62abcd96e924d9f44a3da169a7 96.9 KiB [emitted]
campaign_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff2?a4d31128b633bc0b1cc1f18a34fb3851 37.5 KiB [emitted]
campaign_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff?d2a55d331bdd1a7ea97a8a1fbb3c569c 49.1 KiB [emitted]
campaign_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.eot?7ad17c6085dee9a33787bac28fb23d46 19.9 KiB [emitted]
campaign_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.svg?ff423a4251cf2986555523dfe315c42b 61.5 KiB [emitted]
campaign_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.ttf?e49d52e74b7689a0727def99da31f3eb 40.3 KiB [emitted]
campaign_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff2?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
campaign_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
campaign_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.svg?eb896e02814c0d03409c6373f151f7c3 1.87 MiB [emitted]
campaign_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.woff?c2183257e7a697769df4200c547551f1 215 KiB [emitted]
campaign_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.svg?c904f2792d8edc1386c42db47ab1d547 1.64 MiB [emitted]
campaign_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.woff?7e6a5123891a4871dfc410fbd88cd445 244 KiB [emitted]
campaign_1 | images/bar.png?f17021610710e69933ac64cec2692cca 4.07 KiB [emitted]
campaign_1 | images/collapsible_bar.png?3d5570f2155bbccf7e63b55419a0135b 8.09 KiB [emitted]
campaign_1 | images/marker.png?4f932ddbee5d5e9ebd89a2ec63eda2d1 652 bytes [emitted]
campaign_1 | images/mask.png?c6dc921c0d6f2197793d9174b4267ca0 1.97 KiB [emitted]
campaign_1 | images/medium_rectangle.png?661e93f2561892182c104b4303c9edb9 6.73 KiB [emitted]
campaign_1 | images/overlay_rectangle.png?46d408cc813aef40a644fbfdd3a6bc1d 17.6 KiB [emitted]
campaign_1 | images/short_message.png?c17dbf25817231cceee9c6bff82a7996 3.4 KiB [emitted]
campaign_1 | images/vendor/remp/logo_dark.svg?a59eb1db3c379683cf35178538a10989 4.06 KiB [emitted]
campaign_1 | images/vendor/remp/select.png?49ba2d14cefacfa9e7a0604e1121cc21 128 bytes [emitted]
campaign_1 | images/vendor/remp/[email protected]?a0bce7e2e7cd47ff73b45979c9d08ed5 217 bytes [emitted]
campaign_1 | images/wheel.png?2b6d304868ff398c17252b7b0a0414c4 11.5 KiB [emitted]
campaign_1 | Done in 42.99s.
campaign_1 | Nothing to migrate.
campaign_1 | Seeding: CountrySeeder
campaign_1 | Seeding: CampaignSeeder
campaign_1 | Database seeding completed successfully.
campaign_1 | Application key set successfully.
campaign_1 | Exception: Class auth.password does not exist
campaign_1 | Skipping \Illuminate\Support\Facades\Password.
campaign_1 | Exception: Class auth.password does not exist
campaign_1 | Skipping \Illuminate\Support\Facades\Password.
campaign_1 | A new helper file was written to _ide_helper.php
campaign_1 | Cannot make 'Airbrake\Notifier': phpbrake: Notifier requires projectId and projectKey
campaign_1 | Cannot make 'Faker\Generator': Class 'Faker\Provider\en_US\Barcode' not found.
campaign_1 | Cannot make 'Illuminate\Contracts\Auth\Authenticatable': Class does not exist
campaign_1 | Cannot make 'Illuminate\Database\Eloquent\Factory': Class 'Faker\Provider\en_US\Barcode' not found.
campaign_1 | Cannot make 'Psr\Http\Message\ServerRequestInterface': Class 'Symfony\Bridge\PsrHttpMessage\Factory\DiactorosFactory' not found.
campaign_1 | Cannot make 'auth.loaded': Class '1' not found.
campaign_1 | Cannot make 'env': Class 'local' not found.
campaign_1 | Cannot make 'filesystem.cloud': Class 'League\Flysystem\AwsS3v3\AwsS3Adapter' not found.
campaign_1 | A new meta file was written to .phpstorm.meta.php
campaign_1 | Loading model 'App\AbstractTemplate'
campaign_1 | Loading model 'App\CampaignBannerPurchaseStats'
campaign_1 | Loading model 'App\ShortMessageTemplate'
campaign_1 | Loading model 'App\CampaignSegment'
campaign_1 | Loading model 'App\OverlayRectangleTemplate'
campaign_1 | Loading model 'App\CampaignBannerStats'
campaign_1 | Loading model 'App\MediumRectangleTemplate'
campaign_1 | Loading model 'App\CollapsibleBarTemplate'
campaign_1 | Loading model 'App\HtmlTemplate'
campaign_1 | Loading model 'App\HtmlOverlayTemplate'
campaign_1 | Loading model 'App\BarTemplate'
campaign_1 | Loading model 'App\Campaign'
campaign_1 | Loading model 'App\Schedule'
campaign_1 | Loading model 'App\Country'
campaign_1 | Loading model 'App\CampaignBanner'
campaign_1 | Loading model 'App\Banner'
campaign_1 | Model information was written to _ide_helper_models.php
campaign_1 | [15-Jan-2020 21:59:13] NOTICE: fpm is running, pid 472
campaign_1 | [15-Jan-2020 21:59:13] NOTICE: ready to handle connections
98% after emitting SizeLimitsPlugin DONE Compiled successfully in 33448ms9:59:20 PM
beam_1 |
Asset Size Chunks Chunk Names
beam_1 | /js/app.js 418 KiB /js/app [emitted] /js/app
beam_1 | /js/manifest.js 6.05 KiB /js/manifest [emitted] /js/manifest
beam_1 | /js/remplib.js 31.5 KiB /js/remplib [emitted] /js/remplib
beam_1 | /js/vendor.js 5.61 MiB /js/vendor [emitted] /js/vendor
beam_1 | css/app.css 298 KiB /js/app [emitted] /js/app
beam_1 | css/vendor.css 525 KiB /js/app [emitted] /js/app
beam_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1 19.7 KiB [emitted]
beam_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760 106 KiB [emitted]
beam_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512 44.3 KiB [emitted]
beam_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb 17.6 KiB [emitted]
beam_1 | fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158 22.9 KiB [emitted]
beam_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.ttf?b351bd62abcd96e924d9f44a3da169a7 96.9 KiB [emitted]
beam_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff2?a4d31128b633bc0b1cc1f18a34fb3851 37.5 KiB [emitted]
beam_1 | fonts/vendor/material-design-iconic-dist/Material-Design-Iconic-Font.woff?d2a55d331bdd1a7ea97a8a1fbb3c569c 49.1 KiB [emitted]
beam_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.eot?7ad17c6085dee9a33787bac28fb23d46 19.9 KiB [emitted]
beam_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.svg?ff423a4251cf2986555523dfe315c42b 61.5 KiB [emitted]
beam_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.ttf?e49d52e74b7689a0727def99da31f3eb 40.3 KiB [emitted]
beam_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff2?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
beam_1 | fonts/vendor/remp/glyphicons/glyphicons-halflings-regular.woff?68ed1dac06bf0409c18ae7bc62889170 22.8 KiB [emitted]
beam_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.svg?eb896e02814c0d03409c6373f151f7c3 1.87 MiB [emitted]
beam_1 | fonts/vendor/remp/noto-sans/NotoSans_Bold.woff?c2183257e7a697769df4200c547551f1 215 KiB [emitted]
beam_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.svg?c904f2792d8edc1386c42db47ab1d547 1.64 MiB [emitted]
beam_1 | fonts/vendor/remp/noto-sans/NotoSans_gdi.woff?7e6a5123891a4871dfc410fbd88cd445 244 KiB [emitted]
beam_1 | images/vendor/remp/logo_dark.svg?a59eb1db3c379683cf35178538a10989 4.06 KiB [emitted]
beam_1 | images/vendor/remp/select.png?49ba2d14cefacfa9e7a0604e1121cc21 128 bytes [emitted]
beam_1 | images/vendor/remp/[email protected]?a0bce7e2e7cd47ff73b45979c9d08ed5 217 bytes [emitted]
beam_1 | Done in 40.64s.
beam_1 | Nothing to migrate.
beam_1 | Seeding: PropertySeeder
beam_1 | Seeding: SegmentSeeder
beam_1 | Generating segments...
beam_1 | * Segment first-pageview-in-30-days exists
beam_1 | * Segment first-pageview-in-90-days exists
beam_1 | * Segment 2-5-pageviews-in-30-days exists
beam_1 | * Segment 6-10-pageviews-in-30-days exists
beam_1 | * Segment 11-plus-pageviews-in-30-days exists
beam_1 | * Segment first-article-in-30-days exists
beam_1 | * Segment 2-3-article-views-in-30-days exists
beam_1 | * Segment 4-plus-article-views-in-30-days exists
beam_1 | * Segment never-seen-the-checkout exists
beam_1 | * Segment seen-checkout-once-didnt-pay exists
beam_1 | * Segment seen-checkout-2-5-didnt-pay exists
beam_1 | Seeding: ArticleSeeder
beam_1 | Seeding: EntitySeeder
beam_1 | Database seeding completed successfully.
beam_1 | Application key set successfully.
beam_1 | A new helper file was written to _ide_helper.php
beam_1 | A new meta file was written to .phpstorm.meta.php
beam_1 | Model information was written to _ide_helper_models.php
beam_1 | [15-Jan-2020 21:59:29] NOTICE: fpm is running, pid 483
beam_1 | [15-Jan-2020 21:59:29] NOTICE: ready to handle connections
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
beam_tracker_1 | 2020/01/15 21:59:34 property cache reloaded
beam_tracker_1 | 2020/01/15 21:59:44 entity schema cache reloaded
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events
mailhog_1 | [APIv1] KEEPALIVE /api/v1/events

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

docker-compose.override.yml

version: "3"

services:
  nginx:
    environment:
      NGINX_PORT: "80"
    ports:
      - "80:80"

  campaign:
    environment:
      XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network

    # add these volumes only after initial installation (containers would override each others cache otherwise)
    #volumes:
    #  - "/home/user/.cache/composer:/composer:rw"
    #  - "/home/user/.cache/yarn:/yarn:rw"

  mailer:
    environment:
      XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network

    # add these volumes only after initial installation (containers would override each others cache otherwise)
    #volumes:
    #  - "/home/user/.cache/composer:/composer:rw"
    #  - "/home/user/.cache/yarn:/yarn:rw"

  beam:
    environment:
      XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network

    # add these volumes only after initial installation (containers would override each others cache otherwise)
    #volumes:
    #  - "/home/user/.cache/composer:/composer:rw"
    #  - "/home/user/.cache/yarn:/yarn:rw"

  sso:
    environment:
      XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network

    # add these volumes only after initial installation (containers would override each others cache otherwise)
    #volumes:
    #  - "/home/user/.cache/composer:/composer:rw"
    #  - "/home/user/.cache/yarn:/yarn:rw"

from remp.

rootpd avatar rootpd commented on August 13, 2024
  • Could send me output of docker-compose ps after this change? Just to confirm the port is now being exposed correctly.
  • You're on Mac, right?
  • Can you confirm that you also set up all hosts in your hosts file?

from remp.

jessemarco avatar jessemarco commented on August 13, 2024
  1. Sir, I am on linux Ubuntu 18.04, check above statement
  2. /etc/hosts is as follow
# CAMPAIGN
127.0.0.1 campaign.remp.press # web administration

# MAILER
127.0.0.1 mailer.remp.press # web administration

# BEAM
127.0.0.1 beam.remp.press # web administration
127.0.0.1 tracker.beam.remp.press # event tracker API; swagger @ http://tracker.beam.remp.press/swagger.json
127.0.0.1 segments.beam.remp.press # segments API; swagger @ http://segments.beam.remp.press/swagger.json

# SSO
127.0.0.1 sso.remp.press # web administration and API

# SERVICE APPS
127.0.0.1 adminer.remp.press # adminer for manipulating with MySQL
127.0.0.1 mailhog.remp.press # mailhog for catching and debugging sent emails
127.0.0.1 kibana.beam.remp.press # kibana for manipulating with Elastic data
  1. docker-compose ps
remp_adminer_1         docker-php-entrypoint dock ...   Up           9000/tcp                    
remp_beam_1            docker-php-entrypoint dock ...   Up           9000/tcp                    
remp_beam_segments_1   dockerize -timeout 1m -wai ...   Up                                       
remp_beam_tracker_1    dockerize -timeout 1m -wai ...   Up                                       
remp_campaign_1        docker-php-entrypoint dock ...   Up           9000/tcp                    
remp_elasticsearch_1   /usr/local/bin/docker-entr ...   Up           9200/tcp, 9300/tcp          
remp_kafka_1           ./kafka-start.sh                 Up           2181/tcp, 9092/tcp          
remp_kibana_1          /bin/bash /usr/local/bin/k ...   Up           5601/tcp                    
remp_mailer_1          docker-php-entrypoint dock ...   Up           9000/tcp                    
remp_mailhog_1         MailHog                          Up           1025/tcp, 8025/tcp          
remp_mysql_1           docker-entrypoint.sh --cha ...   Up           3306/tcp, 33060/tcp         
remp_nginx_1           /bin/bash -c envsubst '$NG ...   Restarting                               
remp_redis_1           docker-entrypoint.sh redis ...   Up           6379/tcp                    
remp_sso_1             docker-php-entrypoint dock ...   Up           9000/tcp                    
remp_telegraf_1        /entrypoint.sh dockerize - ...   Up           8092/udp, 8094/tcp, 8125/udp

My eye is on NGINX.
remp_nginx_1 /bin/bash -c envsubst '$NG ... Restarting

from remp.

rootpd avatar rootpd commented on August 13, 2024

Yeah, something might be wrong there. Maybe something else is already running on port 80 on your machine? Can you run docker-compose logs -f nginx and paste the output here? Not full output, just the last couple of lines, they'll tell us enough.

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Output:
nginx_1 | 2020/01/16 11:16:48 [emerg] 1#1: a duplicate listen 0.0.0.0:80 in /etc/nginx/conf.d/default.conf:8
nginx_1 | nginx: [emerg] a duplicate listen 0.0.0.0:80 in /etc/nginx/conf.d/default.conf:8
remp_nginx_1 exited with code 1

  • I do have apache2 installed as well, but service is turned off.

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Status of apache2


● apache2.service - The Apache HTTP Server
   Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
  Drop-In: /lib/systemd/system/apache2.service.d
           └─apache2-systemd.conf
   Active: inactive (dead) since Thu 2020-01-16 12:01:20 CET; 18min ago
  Process: 31213 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS)
  Process: 26613 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS)
  Process: 1871 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)
 Main PID: 2154 (code=exited, status=0/SUCCESS)

Jan 16 11:55:07 jesse systemd[1]: Starting The Apache HTTP Server...
Jan 16 11:55:08 jesse apachectl[1871]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerNam
Jan 16 11:55:08 jesse systemd[1]: Started The Apache HTTP Server.
Jan 16 12:00:07 jesse systemd[1]: Reloading The Apache HTTP Server.
Jan 16 12:00:07 jesse apachectl[26613]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerNa
Jan 16 12:00:07 jesse systemd[1]: Reloaded The Apache HTTP Server.
Jan 16 12:01:19 jesse systemd[1]: Stopping The Apache HTTP Server...
Jan 16 12:01:19 jesse apachectl[31213]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerNa
Jan 16 12:01:20 jesse systemd[1]: Stopped The Apache HTTP Server.

from remp.

rootpd avatar rootpd commented on August 13, 2024

Oh, the port 80 is now duplicated in nginx configuration that's being passed into the container because of the environment variable. Can you please try to use NGINX_PORT: "8000" in your nginx environment (docker-compose.override.yml)?

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

docker-compose.override.yml

 nginx:
    environment:
      NGINX_PORT: "8000"
    ports:
      - "80:80"`

from remp.

rootpd avatar rootpd commented on August 13, 2024

Yep, that could work. Nginx is running on port 80 inside the container all the time (due to inter-container communication), this will only tell that it will listen on port 8000 which you'll never need to use. (hotfix)

After this change, if you stop docker compose and start it again, the nginx should stop restarting.

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Thank you for excellent collaboration.

NGINX_PORT: "8000" did magic.

I logged-in with google account and tried servers.

Everything works except these:

http://tracker.beam.remp.press/
http://segments.beam.remp.press/

from remp.

rootpd avatar rootpd commented on August 13, 2024

Those two should be Go-based APIs. Can you paste logs from one of those services?

docker-compose logs -f beam_tracker
docker-compose logs -f beam_segments

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

beam_tracker log

beam_tracker_1 | 2020/01/16 10:55:23 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 10:55:23 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:55:23 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:55:24 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:55:35 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:55:45 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:55:56 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:56:07 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:56:18 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:56:23 Timeout after 1m0s waiting on dependencies to become available: [tcp://kafka:2181 tcp://mysql:3306]
beam_tracker_1 | 2020/01/16 10:56:25 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 10:56:25 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:56:25 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:56:25 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:56:36 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:56:47 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:56:58 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:57:09 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:57:20 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:57:25 Timeout after 1m0s waiting on dependencies to become available: [tcp://kafka:2181 tcp://mysql:3306]
beam_tracker_1 | 2020/01/16 10:57:27 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 10:57:27 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:57:27 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:57:27 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:57:38 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:57:49 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:58:00 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:58:11 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:58:22 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:58:27 Timeout after 1m0s waiting on dependencies to become available: [tcp://kafka:2181 tcp://mysql:3306]
beam_tracker_1 | 2020/01/16 10:58:29 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 10:58:29 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:58:29 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:58:29 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:58:40 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:58:51 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:59:02 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:59:13 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:59:24 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:59:29 Timeout after 1m0s waiting on dependencies to become available: [tcp://kafka:2181 tcp://mysql:3306]
beam_tracker_1 | 2020/01/16 10:59:31 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 10:59:31 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:59:31 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 10:59:31 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:59:42 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 10:59:53 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:00:04 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:00:15 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:00:26 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:00:31 Timeout after 1m0s waiting on dependencies to become available: [tcp://kafka:2181 tcp://mysql:3306]
beam_tracker_1 | 2020/01/16 11:00:33 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 11:00:33 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 11:00:33 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 11:00:33 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:00:44 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:00:55 Problem with dial: dial tcp: lookup kafka on 127.0.0.11:53: no such host. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:01:05 Connected to tcp://kafka:2181
beam_tracker_1 | 2020/01/16 11:01:06 [INFO] connecting to broker bind=kafka:9092
beam_tracker_1 | 2020/01/16 11:01:06 kafka: client has run out of available brokers to talk to (Is your cluster reachable?)
beam_tracker_1 | 2020/01/16 11:01:06 Command exited with error: exit status 1
beam_tracker_1 | 2020/01/16 11:01:08 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 11:01:09 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 11:01:09 Connected to tcp://kafka:2181
beam_tracker_1 | 2020/01/16 11:01:09 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 11:01:09 [INFO] connecting to broker bind=kafka:9092
beam_tracker_1 | 2020/01/16 11:01:10 property cache reloaded
beam_tracker_1 | 2020/01/16 11:01:10 entity schema cache reloaded
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] starting property caching
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] mount ctrl=Swagger files=swagger/swagger.json route=GET /swagger.json
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] mount ctrl=Track action=Commerce route=POST /track/commerce
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] mount ctrl=Track action=Entity route=POST /track/entity
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] mount ctrl=Track action=Event route=POST /track/event
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] mount ctrl=Track action=Pageview route=POST /track/pageview
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] starting server bind=:8081
beam_tracker_1 | 2020/01/16 11:01:10 [INFO] starting entity schemas caching
beam_tracker_1 | 2020/01/16 11:41:01 Received signal: terminated
beam_tracker_1 | 2020/01/16 11:41:01 [INFO] shutting down signal=terminated
beam_tracker_1 | 2020/01/16 11:41:01 [INFO] entity schemas caching stopped
beam_tracker_1 | 2020/01/16 11:41:01 [INFO] property caching stopped
beam_tracker_1 | 2020/01/16 11:41:01 [INFO] bye bye
beam_tracker_1 | 2020/01/16 11:41:01 Command finished successfully.
beam_tracker_1 | 2020/01/16 11:41:22 Waiting for: tcp://kafka:2181
beam_tracker_1 | 2020/01/16 11:41:22 Waiting for: tcp://mysql:3306
beam_tracker_1 | 2020/01/16 11:41:22 Connected to tcp://mysql:3306
beam_tracker_1 | 2020/01/16 11:41:22 Problem with dial: dial tcp 172.18.0.2:2181: connect: connection refused. Sleeping 10s
beam_tracker_1 | 2020/01/16 11:41:32 Connected to tcp://kafka:2181
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] connecting to broker bind=kafka:9092
beam_tracker_1 | 2020/01/16 11:41:32 property cache reloaded
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] starting property caching
beam_tracker_1 | 2020/01/16 11:41:32 entity schema cache reloaded
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] mount ctrl=Swagger files=swagger/swagger.json route=GET /swagger.json
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] starting entity schemas caching
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] mount ctrl=Track action=Commerce route=POST /track/commerce
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] mount ctrl=Track action=Entity route=POST /track/entity
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] mount ctrl=Track action=Event route=POST /track/event
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] mount ctrl=Track action=Pageview route=POST /track/pageview
beam_tracker_1 | 2020/01/16 11:41:32 [INFO] starting server bind=:8081
beam_tracker_1 | 2020/01/16 11:47:11 [INFO] started req_id=WWisFtfVXa-1 GET=/ from=172.18.0.9 ctrl= action=
beam_tracker_1 | 2020/01/16 11:47:11 [INFO] headers req_id=WWisFtfVXa-1 User-Agent=Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0 Accept=text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8 Accept-Language=en-US,en;q=0.5 Accept-Encoding=gzip, deflate Dnt=1 Upgrade-Insecure-Requests=1 Connection=close
beam_tracker_1 | 2020/01/16 11:47:11 [INFO] response req_id=WWisFtfVXa-1 body={"id":"0+dJohf2","code":"not_found","status":404,"detail":"/"}
beam_tracker_1 | 2020/01/16 11:47:11 [INFO] completed req_id=WWisFtfVXa-1 status=404 error=0+dJohf2 bytes=63 time=353.554µs ctrl= action=
beam_tracker_1 | 2020/01/16 11:47:14 [INFO] started req_id=WWisFtfVXa-2 GET=/ from=172.18.0.9 ctrl= action=
beam_tracker_1 | 2020/01/16 11:47:14 [INFO] headers req_id=WWisFtfVXa-2 User-Agent=Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0 Accept=text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8 Accept-Language=en-US,en;q=0.5 Accept-Encoding=gzip, deflate Dnt=1 Upgrade-Insecure-Requests=1 Connection=close
beam_tracker_1 | 2020/01/16 11:47:14 [INFO] response req_id=WWisFtfVXa-2 body={"id":"Shrjzic1","code":"not_found","status":404,"detail":"/"}
beam_tracker_1 | 2020/01/16 11:47:14 [INFO] completed req_id=WWisFtfVXa-2 status=404 error=Shrjzic1 bytes=63 time=234.518µs ctrl= action=
beam_tracker_1 | 2020/01/16 11:50:57 [INFO] started req_id=WWisFtfVXa-3 GET=/ from=172.18.0.9 ctrl= action=
beam_tracker_1 | 2020/01/16 11:50:57 [INFO] headers req_id=WWisFtfVXa-3 User-Agent=Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0 Accept=text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8 Accept-Language=en-US,en;q=0.5 Accept-Encoding=gzip, deflate Dnt=1 Upgrade-Insecure-Requests=1 Connection=close
beam_tracker_1 | 2020/01/16 11:50:57 [INFO] response req_id=WWisFtfVXa-3 body={"id":"yTMVZA3q","code":"not_found","status":404,"detail":"/"}
beam_tracker_1 | 2020/01/16 11:50:57 [INFO] completed req_id=WWisFtfVXa-3 status=404 error=yTMVZA3q bytes=63 time=135.341µs ctrl= action=

from remp.

rootpd avatar rootpd commented on August 13, 2024

It looks like it was just waiting for the first kafka initialization, can you check now? (the logs indicate that in the end it started successfully)

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Access denied. Problem persist.

from remp.

rootpd avatar rootpd commented on August 13, 2024

That host is just an API, you need to hit specific URL to get successful response. Can you try these? They're swagger specs of the APIs.

http://tracker.berm.remp.press/swagger.json
http://segments.berm.remp.press/swagger.json

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

I have tried to see response of those jsons, no resposponse. Others work, except those two.

Output:
server not found

from remp.

rootpd avatar rootpd commented on August 13, 2024

My bad, there was a typo.. Let's try it again:

http://tracker.beam.remp.press/swagger.json
http://segments.beam.remp.press/swagger.json

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

tracker

{
"swagger": "2.0",
"info": {
"title": "Beam tracker",
"description": "Track events and pageviews",
"license": {
"name": "MIT"
},
"version": ""
},
"host": "localhost:8081",
"schemes": [
"http"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/swagger.json": {
"get": {
"summary": "Download swagger/swagger.json",
"operationId": "swagger#/swagger.json",
"responses": {
"200": {
"description": "File downloaded",
"schema": {
"type": "file"
}
}
},
"schemes": [
"http"
]
}
},
"/track/commerce": {
"post": {
"tags": [
"track"
],
"summary": "commerce track",
"description": "Track new pageview",
"operationId": "track#commerce",
"produces": [
"application/vnd.goa.error"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Commerce is the payload for tracking commerce event",
"required": true,
"schema": {
"$ref": "#/definitions/Commerce"
}
}
],
"responses": {
"202": {
"description": "Accepted"
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Returned when property_token was not found"
}
},
"schemes": [
"http"
]
}
},
"/track/entity": {
"post": {
"tags": [
"track"
],
"summary": "entity track",
"description": "Track generic entity",
"operationId": "track#entity",
"produces": [
"application/vnd.goa.error"
],
"parameters": [
{
"name": "payload",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/Entity"
}
}
],
"responses": {
"202": {
"description": "Accepted"
},
"400": {
"description": "Returned when request does not comply with Swagger specification or entity data does not pass validation",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Returned when property_token was not found"
}
},
"schemes": [
"http"
]
}
},
"/track/event": {
"post": {
"tags": [
"track"
],
"summary": "event track",
"description": "Track generic event",
"operationId": "track#event",
"produces": [
"application/vnd.goa.error"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "TrackEvent is the payload for tracking generic event",
"required": true,
"schema": {
"$ref": "#/definitions/Event"
}
}
],
"responses": {
"202": {
"description": "Accepted"
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Returned when property_token was not found"
}
},
"schemes": [
"http"
]
}
},
"/track/pageview": {
"post": {
"tags": [
"track"
],
"summary": "pageview track",
"description": "Track new pageview",
"operationId": "track#pageview",
"produces": [
"application/vnd.goa.error"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Pageview is the payload for tracking pageview event",
"required": true,
"schema": {
"$ref": "#/definitions/Pageview"
}
}
],
"responses": {
"202": {
"description": "Accepted"
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Returned when property_token was not found"
}
},
"schemes": [
"http"
]
}
}
},
"definitions": {
"Article": {
"title": "Article",
"type": "object",
"properties": {
"author_id": {
"type": "string",
"description": "ID of author",
"example": "Voluptas debitis similique consequatur et itaque."
},
"category": {
"type": "string",
"description": "Page category (homepage, world news...",
"example": "Et perferendis."
},
"id": {
"type": "string",
"description": "ID of article",
"example": "Dignissimos laborum eum repellat."
},
"locked": {
"type": "boolean",
"description": "Flag whether content was locked for the visitor",
"example": false
},
"tags": {
"type": "array",
"items": {
"type": "string",
"example": "Ratione non repellat nihil illum voluptates et."
},
"description": "List of tags (breaking news, trump...",
"example": [
"Ratione non repellat nihil illum voluptates et.",
"Ratione non repellat nihil illum voluptates et."
]
},
"variants": {
"type": "object",
"description": "Hash of key-value pairs bearing A/B test variant information (what's A/B-tested / variant label)",
"example": {
"Vero ex et ipsum rerum non.": "Itaque maiores nihil ducimus repudiandae."
},
"additionalProperties": true
}
},
"description": "Article is the payload for tracking article-related data",
"example": {
"author_id": "Voluptas debitis similique consequatur et itaque.",
"category": "Et perferendis.",
"id": "Dignissimos laborum eum repellat.",
"locked": false,
"tags": [
"Ratione non repellat nihil illum voluptates et.",
"Ratione non repellat nihil illum voluptates et."
],
"variants": {
"Vero ex et ipsum rerum non.": "Itaque maiores nihil ducimus repudiandae."
}
},
"required": [
"id"
]
},
"Commerce": {
"title": "Commerce",
"type": "object",
"properties": {
"article": {
"$ref": "#/definitions/Article"
},
"checkout": {
"$ref": "#/definitions/CommerceCheckout"
},
"payment": {
"$ref": "#/definitions/CommercePayment"
},
"purchase": {
"$ref": "#/definitions/CommercePayment"
},
"refund": {
"$ref": "#/definitions/CommercePayment"
},
"remp_commerce_id": {
"type": "string",
"description": "ID of event",
"example": "Ducimus qui molestiae sed facilis fugit cum."
},
"step": {
"type": "string",
"example": "payment",
"enum": [
"checkout",
"payment",
"purchase",
"refund"
]
},
"system": {
"$ref": "#/definitions/System"
},
"user": {
"$ref": "#/definitions/User"
}
},
"description": "Commerce is the payload for tracking commerce event",
"example": {
"article": {
"author_id": "Voluptas debitis similique consequatur et itaque.",
"category": "Et perferendis.",
"id": "Dignissimos laborum eum repellat.",
"locked": false,
"tags": [
"Ratione non repellat nihil illum voluptates et.",
"Ratione non repellat nihil illum voluptates et."
],
"variants": {
"Vero ex et ipsum rerum non.": "Itaque maiores nihil ducimus repudiandae."
}
},
"checkout": {
"funnel_id": "Quo rerum animi rerum sunt."
},
"payment": {
"funnel_id": "Qui labore est dolorem.",
"product_ids": [
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque."
],
"revenue": {
"amount": 0.32483001495625347,
"currency": "Est veritatis voluptates optio."
},
"transaction_id": "Rerum omnis cupiditate autem autem ea quia."
},
"purchase": {
"funnel_id": "Qui labore est dolorem.",
"product_ids": [
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque."
],
"revenue": {
"amount": 0.32483001495625347,
"currency": "Est veritatis voluptates optio."
},
"transaction_id": "Rerum omnis cupiditate autem autem ea quia."
},
"refund": {
"funnel_id": "Qui labore est dolorem.",
"product_ids": [
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque."
],
"revenue": {
"amount": 0.32483001495625347,
"currency": "Est veritatis voluptates optio."
},
"transaction_id": "Rerum omnis cupiditate autem autem ea quia."
},
"remp_commerce_id": "Ducimus qui molestiae sed facilis fugit cum.",
"step": "payment",
"system": {
"property_token": "6c4ebb56-2a5a-4a82-8a1d-abd5a1ea5df1",
"time": "2011-06-05T06:03:05Z"
},
"user": {
"adblock": true,
"browser_id": "Aperiam et.",
"cookies": false,
"explicit_referer_medium": "Dicta quia a molestiae blanditiis provident sed.",
"id": "Exercitationem et et rem quidem rerum.",
"ip_address": "219.77.152.55",
"referer": "Fugiat dolor.",
"remp_pageview_id": "Est perferendis.",
"remp_session_id": "Repellat dolorem facilis culpa.",
"source": {
"banner_variant": "Dolorum qui quae accusantium blanditiis.",
"utm_campaign": "Soluta architecto delectus odit et commodi.",
"utm_content": "Aut omnis amet similique.",
"utm_medium": "A et quidem totam neque ad totam.",
"utm_source": "Debitis reiciendis enim quis nulla velit cupiditate."
},
"subscriber": true,
"url": "http://jacobson.biz/destany.hauck",
"user_agent": "Ipsam sapiente quae esse.",
"websockets": false,
"window_height": 0.045243842653380016,
"window_width": 0.7293800608318033
}
},
"required": [
"system",
"user",
"step"
]
},
"CommerceCheckout": {
"title": "CommerceCheckout",
"type": "object",
"properties": {
"funnel_id": {
"type": "string",
"description": "ID of funnel user is being routed trough",
"example": "Quo rerum animi rerum sunt."
}
},
"example": {
"funnel_id": "Quo rerum animi rerum sunt."
},
"required": [
"funnel_id"
]
},
"CommercePayment": {
"title": "CommercePayment",
"type": "object",
"properties": {
"funnel_id": {
"type": "string",
"description": "ID of funnel user is being routed trough",
"example": "Qui labore est dolorem."
},
"product_ids": {
"type": "array",
"items": {
"type": "string",
"example": "Delectus iure non libero quo est eaque."
},
"description": "Public IDs of selected products",
"example": [
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque."
]
},
"revenue": {
"$ref": "#/definitions/Revenue"
},
"transaction_id": {
"type": "string",
"description": "Public ID of transaction (variable symbol)",
"example": "Rerum omnis cupiditate autem autem ea quia."
}
},
"example": {
"funnel_id": "Qui labore est dolorem.",
"product_ids": [
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque.",
"Delectus iure non libero quo est eaque."
],
"revenue": {
"amount": 0.32483001495625347,
"currency": "Est veritatis voluptates optio."
},
"transaction_id": "Rerum omnis cupiditate autem autem ea quia."
},
"required": [
"revenue",
"transaction_id",
"product_ids"
]
},
"Entity": {
"title": "Entity",
"type": "object",
"properties": {
"entity_def": {
"type": "object",
"properties": {
"data": {
"type": "object",
"example": {
"Est voluptatem ipsam.": 1057503424790017822
},
"additionalProperties": true
},
"id": {
"type": "string",
"example": "Culpa voluptatum."
},
"name": {
"type": "string",
"example": "Alias minima."
}
},
"example": {
"data": {
"Est voluptatem ipsam.": 1057503424790017822
},
"id": "Culpa voluptatum.",
"name": "Alias minima."
},
"required": [
"id",
"name",
"data"
]
},
"system": {
"$ref": "#/definitions/System"
}
},
"example": {
"entity_def": {
"data": {
"Est voluptatem ipsam.": 1057503424790017822
},
"id": "Culpa voluptatum.",
"name": "Alias minima."
},
"system": {
"property_token": "6c4ebb56-2a5a-4a82-8a1d-abd5a1ea5df1",
"time": "2011-06-05T06:03:05Z"
}
},
"required": [
"entity_def",
"system"
]
},
"Event": {
"title": "Event",
"type": "object",
"properties": {
"action": {
"type": "string",
"description": "Specific action (read, pause, reply)",
"example": "Aliquam non expedita fugiat."
},
"category": {
"type": "string",
"description": "Category of event (time, video, comment)",
"example": "Tempora natus est vero aliquam."
},
"fields": {
"type": "object",
"description": "Additinal key-value data",
"example": {
"Voluptas iste et dignissimos voluptas aut dignissimos.": 521350948147800703
},
"additionalProperties": true
},
"remp_event_id": {
"type": "string",
"description": "ID of event",
"example": "Aspernatur quaerat saepe ex laudantium."
},
"system": {
"$ref": "#/definitions/System"
},
"tags": {
"type": "object",
"description": "Custom filtering tags",
"example": {
"Eaque rerum dolores.": "Amet quia animi in laboriosam."
},
"additionalProperties": true
},
"user": {
"$ref": "#/definitions/User"
},
"value": {
"type": "number",
"description": "Numeric value of event (read 60 seconds, paused after 200 seconds, 3rd comment",
"example": 0.9048569852958863,
"format": "double"
}
},
"description": "TrackEvent is the payload for tracking generic event",
"example": {
"action": "Aliquam non expedita fugiat.",
"category": "Tempora natus est vero aliquam.",
"fields": {
"Voluptas iste et dignissimos voluptas aut dignissimos.": 521350948147800703
},
"remp_event_id": "Aspernatur quaerat saepe ex laudantium.",
"system": {
"property_token": "6c4ebb56-2a5a-4a82-8a1d-abd5a1ea5df1",
"time": "2011-06-05T06:03:05Z"
},
"tags": {
"Eaque rerum dolores.": "Amet quia animi in laboriosam."
},
"user": {
"adblock": true,
"browser_id": "Aperiam et.",
"cookies": false,
"explicit_referer_medium": "Dicta quia a molestiae blanditiis provident sed.",
"id": "Exercitationem et et rem quidem rerum.",
"ip_address": "219.77.152.55",
"referer": "Fugiat dolor.",
"remp_pageview_id": "Est perferendis.",
"remp_session_id": "Repellat dolorem facilis culpa.",
"source": {
"banner_variant": "Dolorum qui quae accusantium blanditiis.",
"utm_campaign": "Soluta architecto delectus odit et commodi.",
"utm_content": "Aut omnis amet similique.",
"utm_medium": "A et quidem totam neque ad totam.",
"utm_source": "Debitis reiciendis enim quis nulla velit cupiditate."
},
"subscriber": true,
"url": "http://jacobson.biz/destany.hauck",
"user_agent": "Ipsam sapiente quae esse.",
"websockets": false,
"window_height": 0.045243842653380016,
"window_width": 0.7293800608318033
},
"value": 0.9048569852958863
},
"required": [
"system",
"category",
"action"
]
},
"Pageview": {
"title": "Pageview",
"type": "object",
"properties": {
"action": {
"type": "string",
"example": "load",
"enum": [
"load",
"timespent",
"progress"
]
},
"article": {
"$ref": "#/definitions/Article"
},
"progress": {
"$ref": "#/definitions/Progress"
},
"system": {
"$ref": "#/definitions/System"
},
"timespent": {
"$ref": "#/definitions/TimeSpent"
},
"user": {
"$ref": "#/definitions/User"
}
},
"description": "Pageview is the payload for tracking pageview event",
"example": {
"action": "load",
"article": {
"author_id": "Voluptas debitis similique consequatur et itaque.",
"category": "Et perferendis.",
"id": "Dignissimos laborum eum repellat.",
"locked": false,
"tags": [
"Ratione non repellat nihil illum voluptates et.",
"Ratione non repellat nihil illum voluptates et."
],
"variants": {
"Vero ex et ipsum rerum non.": "Itaque maiores nihil ducimus repudiandae."
}
},
"progress": {
"article_ratio": 0.2518016955935884,
"page_ratio": 0.15937341845818054,
"unload": false
},
"system": {
"property_token": "6c4ebb56-2a5a-4a82-8a1d-abd5a1ea5df1",
"time": "2011-06-05T06:03:05Z"
},
"timespent": {
"seconds": 8053083494188614573,
"unload": false
},
"user": {
"adblock": true,
"browser_id": "Aperiam et.",
"cookies": false,
"explicit_referer_medium": "Dicta quia a molestiae blanditiis provident sed.",
"id": "Exercitationem et et rem quidem rerum.",
"ip_address": "219.77.152.55",
"referer": "Fugiat dolor.",
"remp_pageview_id": "Est perferendis.",
"remp_session_id": "Repellat dolorem facilis culpa.",
"source": {
"banner_variant": "Dolorum qui quae accusantium blanditiis.",
"utm_campaign": "Soluta architecto delectus odit et commodi.",
"utm_content": "Aut omnis amet similique.",
"utm_medium": "A et quidem totam neque ad totam.",
"utm_source": "Debitis reiciendis enim quis nulla velit cupiditate."
},
"subscriber": true,
"url": "http://jacobson.biz/destany.hauck",
"user_agent": "Ipsam sapiente quae esse.",
"websockets": false,
"window_height": 0.045243842653380016,
"window_width": 0.7293800608318033
}
},
"required": [
"system",
"user",
"action"
]
},
"Progress": {
"title": "Progress",
"type": "object",
"properties": {
"article_ratio": {
"type": "number",
"description": "Article reading ratio",
"example": 0.2518016955935884,
"minimum": 0,
"maximum": 1
},
"page_ratio": {
"type": "number",
"description": "Whole page reading ratio",
"example": 0.15937341845818054,
"minimum": 0,
"maximum": 1
},
"unload": {
"type": "boolean",
"description": "Flag to indicate last update of progress on page before unload event",
"example": false
}
},
"description": "Update reading progress on pageview",
"example": {
"article_ratio": 0.2518016955935884,
"page_ratio": 0.15937341845818054,
"unload": false
},
"required": [
"page_ratio"
]
},
"Revenue": {
"title": "Revenue",
"type": "object",
"properties": {
"amount": {
"type": "number",
"description": "Numeric amount of money",
"example": 0.32483001495625347,
"format": "double"
},
"currency": {
"type": "string",
"description": "ISO 4217 representation of currency",
"example": "Est veritatis voluptates optio."
}
},
"example": {
"amount": 0.32483001495625347,
"currency": "Est veritatis voluptates optio."
},
"required": [
"amount",
"currency"
]
},
"System": {
"title": "System",
"type": "object",
"properties": {
"property_token": {
"type": "string",
"description": "Property token",
"example": "6c4ebb56-2a5a-4a82-8a1d-abd5a1ea5df1",
"format": "uuid"
},
"time": {
"type": "string",
"description": "Time of occurrence",
"example": "2011-06-05T06:03:05Z",
"format": "date-time"
}
},
"example": {
"property_token": "6c4ebb56-2a5a-4a82-8a1d-abd5a1ea5df1",
"time": "2011-06-05T06:03:05Z"
},
"required": [
"property_token",
"time"
]
},
"TimeSpent": {
"title": "TimeSpent",
"type": "object",
"properties": {
"seconds": {
"type": "integer",
"description": "Number of seconds from previous update of time spent on page",
"example": 8053083494188614573,
"format": "int64"
},
"unload": {
"type": "boolean",
"description": "Flag to indicate last update of time spent on page before unload event",
"example": false
}
},
"description": "Update time spent on page",
"example": {
"seconds": 8053083494188614573,
"unload": false
},
"required": [
"seconds"
]
},
"User": {
"title": "User",
"type": "object",
"properties": {
"adblock": {
"type": "boolean",
"description": "Flag whether user has adblock enabled",
"example": true
},
"browser_id": {
"type": "string",
"description": "Anonymized ID of user's browser",
"example": "Aperiam et."
},
"cookies": {
"type": "boolean",
"description": "Flag whether user has cookies enabled",
"example": false
},
"explicit_referer_medium": {
"type": "string",
"description": "Explicit referer medium value that overrides implicit referer medium based on Referer header",
"example": "Dicta quia a molestiae blanditiis provident sed."
},
"id": {
"type": "string",
"description": "ID of logged user",
"example": "Exercitationem et et rem quidem rerum."
},
"ip_address": {
"type": "string",
"description": "IP address of client",
"example": "219.77.152.55",
"format": "ip"
},
"referer": {
"type": "string",
"description": "Value of HTTP referer header (if present)",
"example": "Fugiat dolor."
},
"remp_pageview_id": {
"type": "string",
"description": "ID of pageview",
"example": "Est perferendis."
},
"remp_session_id": {
"type": "string",
"description": "ID of reader's session",
"example": "Repellat dolorem facilis culpa."
},
"source": {
"$ref": "#/definitions/source"
},
"subscriber": {
"type": "boolean",
"description": "Flag whether user is subscriber (has paid for access)",
"example": true
},
"url": {
"type": "string",
"description": "URL of the content/conversion point",
"example": "http://jacobson.biz/destany.hauck",
"format": "uri"
},
"user_agent": {
"type": "string",
"description": "User agent of client",
"example": "Ipsam sapiente quae esse."
},
"websockets": {
"type": "boolean",
"description": "Flag whether user has websockets supported browser",
"example": false
},
"window_height": {
"type": "number",
"description": "Height of the users browser window",
"example": 0.045243842653380016,
"format": "double"
},
"window_width": {
"type": "number",
"description": "Width of the users browser window",
"example": 0.7293800608318033,
"format": "double"
}
},
"example": {
"adblock": true,
"browser_id": "Aperiam et.",
"cookies": false,
"explicit_referer_medium": "Dicta quia a molestiae blanditiis provident sed.",
"id": "Exercitationem et et rem quidem rerum.",
"ip_address": "219.77.152.55",
"referer": "Fugiat dolor.",
"remp_pageview_id": "Est perferendis.",
"remp_session_id": "Repellat dolorem facilis culpa.",
"source": {
"banner_variant": "Dolorum qui quae accusantium blanditiis.",
"utm_campaign": "Soluta architecto delectus odit et commodi.",
"utm_content": "Aut omnis amet similique.",
"utm_medium": "A et quidem totam neque ad totam.",
"utm_source": "Debitis reiciendis enim quis nulla velit cupiditate."
},
"subscriber": true,
"url": "http://jacobson.biz/destany.hauck",
"user_agent": "Ipsam sapiente quae esse.",
"websockets": false,
"window_height": 0.045243842653380016,
"window_width": 0.7293800608318033
}
},
"error": {
"title": "Mediatype identifier: application/vnd.goa.error; view=default",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "an application-specific error code, expressed as a string value.",
"example": "invalid_value"
},
"detail": {
"type": "string",
"description": "a human-readable explanation specific to this occurrence of the problem.",
"example": "Value of ID must be an integer"
},
"id": {
"type": "string",
"description": "a unique identifier for this particular occurrence of the problem.",
"example": "3F1FKVRR"
},
"meta": {
"type": "object",
"description": "a meta object containing non-standard meta-information about the error.",
"example": {
"timestamp": 1458609066
},
"additionalProperties": true
},
"status": {
"type": "string",
"description": "the HTTP status code applicable to this problem, expressed as a string value.",
"example": "400"
}
},
"description": "Error response media type (default view)",
"example": {
"code": "invalid_value",
"detail": "Value of ID must be an integer",
"id": "3F1FKVRR",
"meta": {
"timestamp": 1458609066
},
"status": "400"
}
},
"source": {
"title": "source",
"type": "object",
"properties": {
"banner_variant": {
"type": "string",
"description": "Reference to specific banner variant (e.g. variant ID)",
"example": "Dolorum qui quae accusantium blanditiis."
},
"utm_campaign": {
"type": "string",
"description": "Reference to specific campaign (e.g. campaign ID",
"example": "Soluta architecto delectus odit et commodi."
},
"utm_content": {
"type": "string",
"description": "Reference to specific campaign mean (e.g. banner ID)",
"example": "Aut omnis amet similique."
},
"utm_medium": {
"type": "string",
"description": "Medium through which the came (e.g. overlay, inline)",
"example": "A et quidem totam neque ad totam."
},
"utm_source": {
"type": "string",
"description": "Origin of user (e.g. remp_campaign)",
"example": "Debitis reiciendis enim quis nulla velit cupiditate."
}
},
"description": "User-source related data",
"example": {
"banner_variant": "Dolorum qui quae accusantium blanditiis.",
"utm_campaign": "Soluta architecto delectus odit et commodi.",
"utm_content": "Aut omnis amet similique.",
"utm_medium": "A et quidem totam neque ad totam.",
"utm_source": "Debitis reiciendis enim quis nulla velit cupiditate."
}
}
},
"responses": {
"Accepted": {
"description": "Accepted"
},
"BadRequest": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

segments

{
"swagger": "2.0",
"info": {
"title": "Beam Journal",
"description": "Provides journal records",
"license": {
"name": "MIT"
},
"version": ""
},
"host": "localhost:8082",
"schemes": [
"http"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/journal/commerce/categories": {
"get": {
"tags": [
"commerce"
],
"summary": "categories commerce",
"description": "List of all available categories",
"operationId": "commerce#categories",
"produces": [
"text/plain"
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/commerce/categories/{category}/actions": {
"get": {
"tags": [
"commerce"
],
"summary": "actions commerce",
"description": "List of all available actions for given category",
"operationId": "commerce#actions",
"produces": [
"text/plain"
],
"parameters": [
{
"name": "category",
"in": "path",
"description": "Category (step) under which the actions were tracked",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/commerce/count": {
"post": {
"tags": [
"commerce"
],
"summary": "count commerce",
"description": "Returns counts of commerce events",
"operationId": "commerce#count",
"produces": [
"application/vnd.goa.error",
"application/vnd.count+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter commerce counts",
"required": true,
"schema": {
"$ref": "#/definitions/CommerceOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/commerce/list": {
"post": {
"tags": [
"commerce"
],
"summary": "list commerce",
"description": "Returns full list of events",
"operationId": "commerce#list",
"produces": [
"application/vnd.commerces+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter pageview list",
"required": true,
"schema": {
"$ref": "#/definitions/ListCommerceOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CommercesCollection"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/commerce/steps/{step}/count": {
"post": {
"tags": [
"commerce"
],
"summary": "count_step commerce",
"description": "Returns counts of commerce events",
"operationId": "commerce#count_step",
"produces": [
"application/vnd.count+json; type=collection",
"application/vnd.goa.error"
],
"parameters": [
{
"name": "step",
"in": "path",
"description": "Identification of commerce step",
"required": true,
"type": "string",
"enum": [
"checkout",
"payment",
"purchase",
"refund"
]
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter commerce counts",
"required": true,
"schema": {
"$ref": "#/definitions/CommerceOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/commerce/steps/{step}/sum": {
"post": {
"tags": [
"commerce"
],
"summary": "sum_step commerce",
"description": "Returns sum of amounts within events",
"operationId": "commerce#sum_step",
"produces": [
"application/vnd.goa.error",
"application/vnd.sum+json; type=collection"
],
"parameters": [
{
"name": "step",
"in": "path",
"description": "Identification of commerce step",
"required": true,
"type": "string",
"enum": [
"checkout",
"payment",
"purchase",
"refund"
]
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter commerce counts",
"required": true,
"schema": {
"$ref": "#/definitions/CommerceOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SumCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/commerce/sum": {
"post": {
"tags": [
"commerce"
],
"summary": "sum commerce",
"description": "Returns sum of amounts within events",
"operationId": "commerce#sum",
"produces": [
"application/vnd.goa.error",
"application/vnd.sum+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter commerce counts",
"required": true,
"schema": {
"$ref": "#/definitions/CommerceOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SumCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/concurrents/count": {
"post": {
"tags": [
"concurrents"
],
"summary": "count concurrents",
"description": "Returns recent concurrent connections identified by browser id",
"operationId": "concurrents#count",
"produces": [
"application/vnd.count+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter concurrent views",
"required": true,
"schema": {
"$ref": "#/definitions/ConcurrentsOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/events/categories": {
"get": {
"tags": [
"events"
],
"summary": "categories events",
"description": "List of all tracked categories",
"operationId": "events#categories",
"produces": [
"text/plain"
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/events/categories/{category}/actions": {
"get": {
"tags": [
"events"
],
"summary": "actions events",
"description": "List of all tracked actions for given category",
"operationId": "events#actions",
"produces": [
"text/plain"
],
"parameters": [
{
"name": "category",
"in": "path",
"description": "Category under which the actions were tracked",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/events/categories/{category}/actions/{action}/count": {
"post": {
"tags": [
"events"
],
"summary": "count_action events",
"description": "Returns counts of events for given action and category",
"operationId": "events#count_action",
"produces": [
"application/vnd.goa.error",
"application/vnd.count+json; type=collection"
],
"parameters": [
{
"name": "action",
"in": "path",
"description": "Event action",
"required": true,
"type": "string"
},
{
"name": "category",
"in": "path",
"description": "Event category",
"required": true,
"type": "string"
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter event counts",
"required": true,
"schema": {
"$ref": "#/definitions/EventOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/events/count": {
"post": {
"tags": [
"events"
],
"summary": "count events",
"description": "Returns counts of events",
"operationId": "events#count",
"produces": [
"application/vnd.goa.error",
"application/vnd.count+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter event counts",
"required": true,
"schema": {
"$ref": "#/definitions/EventOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/events/list": {
"post": {
"tags": [
"events"
],
"summary": "list events",
"description": "Returns full list of events",
"operationId": "events#list",
"produces": [
"application/vnd.events+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter events list",
"required": true,
"schema": {
"$ref": "#/definitions/ListEventOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/EventsCollection"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/events/users": {
"get": {
"tags": [
"events"
],
"summary": "users events",
"description": "List of all tracked users",
"operationId": "events#users",
"produces": [
"text/plain"
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/flags": {
"get": {
"tags": [
"journal"
],
"summary": "flags journal",
"description": "List of all available flags",
"operationId": "journal#flags",
"produces": [
"application/vnd.flags+json"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/Flags"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/actions/{action}/avg": {
"post": {
"tags": [
"pageviews"
],
"summary": "avg pageviews",
"description": "Returns avg of amounts within events",
"operationId": "pageviews#avg",
"produces": [
"application/vnd.goa.error",
"application/vnd.avg+json; type=collection"
],
"parameters": [
{
"name": "action",
"in": "path",
"description": "Identification of pageview action",
"required": true,
"type": "string",
"enum": [
"timespent"
]
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter pageview counts",
"required": true,
"schema": {
"$ref": "#/definitions/PageviewOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/AvgCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/actions/{action}/count": {
"post": {
"tags": [
"pageviews"
],
"summary": "count pageviews",
"description": "Returns counts of pageviews",
"operationId": "pageviews#count",
"produces": [
"application/vnd.goa.error",
"application/vnd.count+json; type=collection"
],
"parameters": [
{
"name": "action",
"in": "path",
"description": "Identification of pageview action",
"required": true,
"type": "string",
"enum": [
"load",
"progress"
]
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter pageview counts",
"required": true,
"schema": {
"$ref": "#/definitions/PageviewOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/actions/{action}/sum": {
"post": {
"tags": [
"pageviews"
],
"summary": "sum pageviews",
"description": "Returns sum of amounts within events",
"operationId": "pageviews#sum",
"produces": [
"application/vnd.goa.error",
"application/vnd.sum+json; type=collection"
],
"parameters": [
{
"name": "action",
"in": "path",
"description": "Identification of pageview action",
"required": true,
"type": "string",
"enum": [
"timespent"
]
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter pageview counts",
"required": true,
"schema": {
"$ref": "#/definitions/PageviewOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SumCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/actions/{action}/unique/{item}": {
"post": {
"tags": [
"pageviews"
],
"summary": "unique pageviews",
"description": "Returns unique count of amounts within events",
"operationId": "pageviews#unique",
"produces": [
"application/vnd.goa.error",
"application/vnd.count+json; type=collection"
],
"parameters": [
{
"name": "action",
"in": "path",
"description": "Identification of pageview action",
"required": true,
"type": "string",
"enum": [
"load"
]
},
{
"name": "item",
"in": "path",
"description": "Identification of queried unique items",
"required": true,
"type": "string",
"enum": [
"browsers"
]
},
{
"name": "payload",
"in": "body",
"description": "Parameters to filter pageview counts",
"required": true,
"schema": {
"$ref": "#/definitions/PageviewOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CountCollection"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/categories": {
"get": {
"tags": [
"pageviews"
],
"summary": "categories pageviews",
"description": "List of all available categories",
"operationId": "pageviews#categories",
"produces": [
"text/plain"
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/categories/{category}/actions": {
"get": {
"tags": [
"pageviews"
],
"summary": "actions pageviews",
"description": "List of all available actions for given category",
"operationId": "pageviews#actions",
"produces": [
"text/plain"
],
"parameters": [
{
"name": "category",
"in": "path",
"description": "Category under which the actions were tracked",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK"
}
},
"schemes": [
"http"
]
}
},
"/journal/pageviews/list": {
"post": {
"tags": [
"pageviews"
],
"summary": "list pageviews",
"description": "Returns full list of pageviews",
"operationId": "pageviews#list",
"produces": [
"application/vnd.pageviews+json; type=collection"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Parameters to filter pageview list",
"required": true,
"schema": {
"$ref": "#/definitions/ListPageviewOptionsPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/PageviewsCollection"
}
}
},
"schemes": [
"http"
]
}
},
"/segments": {
"get": {
"tags": [
"segments"
],
"summary": "list segments",
"description": "List all segments.",
"operationId": "segments#list",
"produces": [
"application/vnd.goa.error",
"application/vnd.segment+json; type=collection"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentCollection"
}
},
"400": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Not Found"
}
},
"schemes": [
"http"
]
}
},
"/segments/count": {
"post": {
"tags": [
"segments"
],
"summary": "count segments",
"description": "Returns number of users in segment based on provided criteria",
"operationId": "segments#count",
"produces": [
"application/vnd.goa.error",
"application/vnd.segment.count+json"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Request parameters for endpoints segments/count and segments/related",
"required": true,
"schema": {
"$ref": "#/definitions/SegmentTinyPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentCount"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/segments/criteria": {
"get": {
"tags": [
"segments"
],
"summary": "criteria segments",
"description": "Provide segment blueprint with criteria for individual tables and fields",
"operationId": "segments#criteria",
"produces": [
"application/vnd.segment.blueprint+json"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentBlueprint"
}
}
},
"schemes": [
"http"
]
}
},
"/segments/detail": {
"post": {
"tags": [
"segments"
],
"summary": "create_or_update segments",
"description": "Create or update segment (for fupdate, use GET parameter ?id={segment_id})",
"operationId": "segments#create_or_update",
"produces": [
"application/vnd.goa.error",
"application/vnd.segment+json"
],
"parameters": [
{
"name": "id",
"in": "query",
"description": "Segment ID",
"required": false,
"type": "integer"
},
{
"name": "payload",
"in": "body",
"description": "Request parameters for segment creation",
"required": true,
"schema": {
"$ref": "#/definitions/SegmentPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/Segment"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Returned when segment with provided ID doesn't exist"
}
},
"schemes": [
"http"
]
}
},
"/segments/groups": {
"get": {
"tags": [
"segments"
],
"summary": "groups segments",
"description": "List all segment groups.",
"operationId": "segments#groups",
"produces": [
"application/vnd.segment.groups.fallback"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentGroupsFallback"
}
}
},
"schemes": [
"http"
]
}
},
"/segments/related": {
"post": {
"tags": [
"segments"
],
"summary": "related segments",
"description": "Returns segments with same or similar criteria",
"operationId": "segments#related",
"produces": [
"application/vnd.goa.error",
"application/vnd.segments.related+json"
],
"parameters": [
{
"name": "payload",
"in": "body",
"description": "Request parameters for endpoints segments/count and segments/related",
"required": true,
"schema": {
"$ref": "#/definitions/SegmentTinyPayload"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentsRelated"
}
},
"400": {
"description": "Returned when request does not comply with Swagger specification",
"schema": {
"$ref": "#/definitions/error"
}
}
},
"schemes": [
"http"
]
}
},
"/segments/show": {
"get": {
"tags": [
"segments"
],
"summary": "get segments",
"description": "Get segment",
"operationId": "segments#get",
"produces": [
"application/vnd.goa.error",
"application/vnd.segmenters.segment.+json"
],
"parameters": [
{
"name": "id",
"in": "query",
"description": "Segment ID",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentersSegment"
}
},
"400": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Not Found"
}
},
"schemes": [
"http"
]
}
},
"/segments/{segment_code}/browsers/check/{browser_id}": {
"get": {
"tags": [
"segments"
],
"summary": "check_browser segments",
"description": "Check whether given browser ID belongs to segment.",
"operationId": "segments#check_browser",
"produces": [
"application/vnd.goa.error",
"application/vnd.segment.check+json"
],
"parameters": [
{
"name": "browser_id",
"in": "path",
"description": "Browser ID",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z0-9_\-@.]+$"
},
{
"name": "cache",
"in": "query",
"description": "JSON-encoded object of internal cache with count of events provided by third party (mostly Beam's remplib.js), e.g.:\n\n\t{\n\t\t10: { // segment rule ID\n\t\t\t"d": "2017-11-07T08:06:26.612Z" // RFC3339 date\n\t\t\t"c": 11 // number of occurrences\n\t\t}\n\t}",
"required": false,
"type": "string"
},
{
"name": "fields",
"in": "query",
"description": "JSON-encoded object of overriden pairs, e.g.:\n\n\t{\n\t\t"utm_campaign": "custom-campaign-id",\n\t\t// ...\n\t}",
"required": false,
"type": "string"
},
{
"name": "segment_code",
"in": "path",
"description": "Segment code",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z0-9_\-@.]+$"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentCheck"
}
},
"400": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Not Found"
}
},
"schemes": [
"http"
]
}
},
"/segments/{segment_code}/users": {
"get": {
"tags": [
"segments"
],
"summary": "users segments",
"description": "List users of segment.",
"operationId": "segments#users",
"produces": [
"application/vnd.goa.error",
"text/plain"
],
"parameters": [
{
"name": "fields",
"in": "query",
"description": "JSON-encoded object of overriden pairs, e.g.:\n\n\t{\n\t\t"utm_campaign": "custom-campaign-id",\n\t\t// ...\n\t}",
"required": false,
"type": "string"
},
{
"name": "segment_code",
"in": "path",
"description": "Segment code",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z0-9_\-@.]+$"
}
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Not Found"
}
},
"schemes": [
"http"
]
}
},
"/segments/{segment_code}/users/check/{user_id}": {
"get": {
"tags": [
"segments"
],
"summary": "check_user segments",
"description": "Check whether given user ID belongs to segment.",
"operationId": "segments#check_user",
"produces": [
"application/vnd.goa.error",
"application/vnd.segment.check+json"
],
"parameters": [
{
"name": "cache",
"in": "query",
"description": "JSON-encoded object of internal cache with count of events provided by third party (mostly Beam's remplib.js), e.g.:\n\n\t{\n\t\t10: { // segment rule ID\n\t\t\t"d": "2017-11-07T08:06:26.612Z" // RFC3339 date\n\t\t\t"c": 11 // number of occurrences\n\t\t}\n\t}",
"required": false,
"type": "string"
},
{
"name": "fields",
"in": "query",
"description": "JSON-encoded object of overriden pairs, e.g.:\n\n\t{\n\t\t"utm_campaign": "custom-campaign-id",\n\t\t// ...\n\t}",
"required": false,
"type": "string"
},
{
"name": "segment_code",
"in": "path",
"description": "Segment code",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z0-9_\-@.]+$"
},
{
"name": "user_id",
"in": "path",
"description": "User ID",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z0-9_\-@.]+$"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SegmentCheck"
}
},
"400": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "Not Found"
}
},
"schemes": [
"http"
]
}
},
"/swagger.json": {
"get": {
"summary": "Download swagger/swagger.json",
"operationId": "swagger#/swagger.json",
"responses": {
"200": {
"description": "File downloaded",
"schema": {
"type": "file"
}
}
},
"schemes": [
"http"
]
}
}
},
"definitions": {
"Article": {
"title": "Mediatype identifier: application/vnd.article+json; view=default",
"type": "object",
"properties": {
"author_id": {
"type": "string",
"description": "ID of author",
"example": "Recusandae sed soluta porro aspernatur."
},
"category": {
"type": "string",
"description": "Page category (homepage, world news...",
"example": "Sapiente sit ipsum quo sunt."
},
"id": {
"type": "string",
"description": "ID of article",
"example": "Error eos delectus alias quisquam itaque."
},
"locked": {
"type": "boolean",
"description": "Flag whether content was locked for the visitor",
"example": true
},
"tags": {
"type": "array",
"items": {
"type": "string",
"example": "Qui voluptatem maxime officia repellendus omnis et."
},
"description": "List of tags (breaking news, trump...",
"example": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
]
},
"variants": {
"type": "object",
"description": "Hash of key-value pairs bearing A/B test variant information (what's A/B-tested / variant label)",
"example": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
},
"additionalProperties": true
}
},
"description": "Article media type (default view)",
"example": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"required": [
"id"
]
},
"Avg": {
"title": "Mediatype identifier: application/vnd.avg+json; view=default",
"type": "object",
"properties": {
"avg": {
"type": "number",
"example": 0.05547394853740408,
"format": "double"
},
"tags": {
"type": "object",
"example": {
"Veritatis et omnis accusantium autem non.": "Illo non quos debitis dolor sapiente est."
},
"additionalProperties": true
},
"time_histogram": {
"$ref": "#/definitions/TimeHistogramCollection"
}
},
"description": "Avg (default view)",
"example": {
"avg": 0.05547394853740408,
"tags": {
"Veritatis et omnis accusantium autem non.": "Illo non quos debitis dolor sapiente est."
},
"time_histogram": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
},
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
},
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
},
"required": [
"tags",
"avg"
]
},
"AvgCollection": {
"title": "Mediatype identifier: application/vnd.avg+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Avg"
},
"description": "AvgCollection is the media type for an array of Avg (default view)",
"example": [
{
"avg": 0.05547394853740408,
"tags": {
"Veritatis et omnis accusantium autem non.": "Illo non quos debitis dolor sapiente est."
},
"time_histogram": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
},
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
},
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
}
]
},
"Commerce": {
"title": "Mediatype identifier: application/vnd.commerce+json; view=default",
"type": "object",
"properties": {
"article": {
"$ref": "#/definitions/Article"
},
"checkout": {
"$ref": "#/definitions/CommerceCheckout"
},
"id": {
"type": "string",
"example": "Totam ducimus."
},
"payment": {
"$ref": "#/definitions/CommercePayment"
},
"purchase": {
"$ref": "#/definitions/CommercePayment"
},
"refund": {
"$ref": "#/definitions/CommercePayment"
},
"source": {
"$ref": "#/definitions/Source"
},
"step": {
"type": "string",
"example": "payment",
"enum": [
"checkout",
"payment",
"purchase",
"refund"
]
},
"system": {
"$ref": "#/definitions/System"
},
"user": {
"$ref": "#/definitions/User"
}
},
"description": "Commerce event (default view)",
"example": {
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
"required": [
"id",
"step",
"system",
"user"
]
},
"CommerceCheckout": {
"title": "Mediatype identifier: application/vnd.commerce.checkout+json; view=default",
"type": "object",
"properties": {
"funnel_id": {
"type": "string",
"description": "ID of funnel user is being routed trough",
"example": "Ea odio mollitia officia."
}
},
"description": "CommerceCheckout media type (default view)",
"example": {
"funnel_id": "Ea odio mollitia officia."
},
"required": [
"funnel_id"
]
},
"CommerceCollection": {
"title": "Mediatype identifier: application/vnd.commerce+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Commerce"
},
"description": "CommerceCollection is the media type for an array of Commerce (default view)",
"example": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
]
},
"CommerceOptionsFilterBy": {
"title": "CommerceOptionsFilterBy",
"type": "object",
"properties": {
"inverse": {
"type": "boolean",
"description": "If true, condition will be inversed",
"example": false
},
"tag": {
"type": "string",
"description": "Tag used to filter results",
"example": "Aut dolore culpa eius veritatis."
},
"values": {
"type": "array",
"items": {
"type": "string",
"example": "Nisi inventore enim."
},
"description": "Values of TAG used to filter result",
"example": [
"Nisi inventore enim."
]
}
},
"description": "Tags and values used to filter results",
"example": {
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
},
"required": [
"tag",
"values"
]
},
"CommerceOptionsPayload": {
"title": "CommerceOptionsPayload",
"type": "object",
"properties": {
"filter_by": {
"type": "array",
"items": {
"$ref": "#/definitions/CommerceOptionsFilterBy"
},
"description": "Selection of data filtering type",
"example": [
{
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
},
{
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
}
]
},
"group_by": {
"type": "array",
"items": {
"type": "string",
"example": "Optio cum."
},
"description": "Select tags by which should be data grouped",
"example": [
"Optio cum.",
"Optio cum."
]
},
"step": {
"type": "string",
"description": "Filter particular step",
"example": "purchase",
"enum": [
"checkout",
"payment",
"purchase",
"refund"
]
},
"time_after": {
"type": "string",
"description": "Include all pageviews that happened after specified RFC3339 datetime",
"example": "2008-09-21T05:23:04Z",
"format": "date-time"
},
"time_before": {
"type": "string",
"description": "Include all pageviews that happened before specified RFC3339 datetime",
"example": "1976-02-26T14:44:04Z",
"format": "date-time"
},
"time_histogram": {
"$ref": "#/definitions/OptionsTimeHistogram"
}
},
"description": "Parameters to filter commerce counts",
"example": {
"filter_by": [
{
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
},
{
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
}
],
"group_by": [
"Optio cum.",
"Optio cum."
],
"step": "purchase",
"time_after": "2008-09-21T05:23:04Z",
"time_before": "1976-02-26T14:44:04Z",
"time_histogram": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
}
}
},
"CommercePayment": {
"title": "Mediatype identifier: application/vnd.commerce.payment+json; view=default",
"type": "object",
"properties": {
"funnel_id": {
"type": "string",
"description": "ID of funnel user is being routed trough",
"example": "Eos commodi enim assumenda."
},
"product_ids": {
"type": "array",
"items": {
"type": "string",
"example": "Veniam ad maiores dolor accusamus."
},
"description": "Public IDs of selected products",
"example": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
]
},
"revenue": {
"$ref": "#/definitions/Revenue"
},
"transaction_id": {
"type": "string",
"description": "Public ID of transaction (variable symbol)",
"example": "Quis voluptatem eligendi nihil sed."
}
},
"description": "CommercePayment media type (default view)",
"example": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"required": [
"funnel_id",
"revenue",
"transaction_id",
"product_ids"
]
},
"Commerces": {
"title": "Mediatype identifier: application/vnd.commerces+json; view=default",
"type": "object",
"properties": {
"commerces": {
"$ref": "#/definitions/CommerceCollection"
},
"tags": {
"type": "object",
"example": {
"Quasi laboriosam aut culpa eaque dicta.": "Laudantium in voluptatem rem aliquam."
},
"additionalProperties": true
}
},
"description": "Commerce events (default view)",
"example": {
"commerces": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
],
"tags": {
"Quasi laboriosam aut culpa eaque dicta.": "Laudantium in voluptatem rem aliquam."
}
},
"required": [
"tags",
"commerces"
]
},
"CommercesCollection": {
"title": "Mediatype identifier: application/vnd.commerces+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Commerces"
},
"description": "CommercesCollection is the media type for an array of Commerces (default view)",
"example": [
{
"commerces": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
],
"tags": {
"Quasi laboriosam aut culpa eaque dicta.": "Laudantium in voluptatem rem aliquam."
}
},
{
"commerces": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"checkout": {
"funnel_id": "Ea odio mollitia officia."
},
"id": "Totam ducimus.",
"payment": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"purchase": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"refund": {
"funnel_id": "Eos commodi enim assumenda.",
"product_ids": [
"Veniam ad maiores dolor accusamus.",
"Veniam ad maiores dolor accusamus."
],
"revenue": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"transaction_id": "Quis voluptatem eligendi nihil sed."
},
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"step": "payment",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
],
"tags": {
"Quasi laboriosam aut culpa eaque dicta.": "Laudantium in voluptatem rem aliquam."
}
}
]
},
"ConcurrentsOptionsPayload": {
"title": "ConcurrentsOptionsPayload",
"type": "object",
"properties": {
"filter_by": {
"type": "array",
"items": {
"$ref": "#/definitions/PageviewOptionsFilterBy"
},
"description": "Selection of data filtering type",
"example": [
{
"inverse": false,
"tag": "Ducimus recusandae.",
"values": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
}
]
},
"group_by": {
"type": "array",
"items": {
"type": "string",
"example": "Omnis quos fugiat repellendus reprehenderit id."
},
"description": "Select tags by which should be data grouped",
"example": [
"Omnis quos fugiat repellendus reprehenderit id."
]
},
"time_after": {
"type": "string",
"description": "Include all pageviews that happened after specified RFC3339 datetime",
"example": "2000-07-12T18:19:46Z",
"format": "date-time"
},
"time_before": {
"type": "string",
"description": "Include all pageviews that happened before specified RFC3339 datetime",
"example": "1982-09-26T08:19:29Z",
"format": "date-time"
}
},
"description": "Parameters to filter concurrent views",
"example": {
"filter_by": [
{
"inverse": false,
"tag": "Ducimus recusandae.",
"values": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
}
],
"group_by": [
"Omnis quos fugiat repellendus reprehenderit id."
],
"time_after": "2000-07-12T18:19:46Z",
"time_before": "1982-09-26T08:19:29Z"
}
},
"Count": {
"title": "Mediatype identifier: application/vnd.count+json; view=default",
"type": "object",
"properties": {
"count": {
"type": "integer",
"example": 7024535596885302649,
"format": "int64"
},
"count_histogram": {
"$ref": "#/definitions/CountHistogramCollection"
},
"tags": {
"type": "object",
"example": {
"Cum velit reiciendis libero et odio maxime.": "Voluptate corrupti tempore."
},
"additionalProperties": true
},
"time_histogram": {
"$ref": "#/definitions/TimeHistogramCollection"
}
},
"description": "Count (default view)",
"example": {
"count": 7024535596885302649,
"count_histogram": [
{
"bucket_key": 0.46350580590489426,
"value": 0.7910830755903369
}
],
"tags": {
"Cum velit reiciendis libero et odio maxime.": "Voluptate corrupti tempore."
},
"time_histogram": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
},
"required": [
"tags",
"count"
]
},
"CountCollection": {
"title": "Mediatype identifier: application/vnd.count+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Count"
},
"description": "CountCollection is the media type for an array of Count (default view)",
"example": [
{
"count": 7024535596885302649,
"count_histogram": [
{
"bucket_key": 0.46350580590489426,
"value": 0.7910830755903369
}
],
"tags": {
"Cum velit reiciendis libero et odio maxime.": "Voluptate corrupti tempore."
},
"time_histogram": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
}
]
},
"CountHistogram": {
"title": "Mediatype identifier: application/vnd.count.histogram+json; view=default",
"type": "object",
"properties": {
"bucket_key": {
"type": "number",
"example": 0.46350580590489426,
"format": "double"
},
"value": {
"type": "number",
"example": 0.7910830755903369,
"format": "double"
}
},
"description": "Count histogram data (default view)",
"example": {
"bucket_key": 0.46350580590489426,
"value": 0.7910830755903369
},
"required": [
"bucket_key",
"value"
]
},
"CountHistogramCollection": {
"title": "Mediatype identifier: application/vnd.count.histogram+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/CountHistogram"
},
"description": "CountHistogramCollection is the media type for an array of CountHistogram (default view)",
"example": [
{
"bucket_key": 0.46350580590489426,
"value": 0.7910830755903369
}
]
},
"Event": {
"title": "Mediatype identifier: application/vnd.event+json; view=default",
"type": "object",
"properties": {
"action": {
"type": "string",
"example": "Eaque deleniti vero error."
},
"category": {
"type": "string",
"example": "Dolorum aut harum voluptatem."
},
"id": {
"type": "string",
"example": "Dolores deserunt."
},
"system": {
"$ref": "#/definitions/System"
},
"user": {
"$ref": "#/definitions/User"
},
"utm_campaign": {
"type": "string",
"example": "Rem unde exercitationem voluptatem aspernatur."
},
"utm_content": {
"type": "string",
"example": "Nisi fugit laboriosam architecto iste quo."
},
"utm_medium": {
"type": "string",
"example": "Natus dolores labore accusantium."
},
"utm_source": {
"type": "string",
"example": "Qui sapiente."
}
},
"description": "Generic event (default view)",
"example": {
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
},
"required": [
"id",
"system",
"category",
"action"
]
},
"EventCollection": {
"title": "Mediatype identifier: application/vnd.event+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Event"
},
"description": "EventCollection is the media type for an array of Event (default view)",
"example": [
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
}
]
},
"EventOptionsFilterBy": {
"title": "EventOptionsFilterBy",
"type": "object",
"properties": {
"inverse": {
"type": "boolean",
"description": "If true, condition will be inversed",
"example": true
},
"tag": {
"type": "string",
"description": "Tag used to filter results",
"example": "Beatae nesciunt."
},
"values": {
"type": "array",
"items": {
"type": "string",
"example": "Qui praesentium quia deserunt."
},
"description": "Values of TAG used to filter result",
"example": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
}
},
"description": "Tags and values used to filter results",
"example": {
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
"required": [
"tag",
"values"
]
},
"EventOptionsPayload": {
"title": "EventOptionsPayload",
"type": "object",
"properties": {
"action": {
"type": "string",
"description": "Event action",
"example": "Omnis ut consequatur molestias distinctio."
},
"category": {
"type": "string",
"description": "Event category",
"example": "Voluptatum omnis quibusdam."
},
"filter_by": {
"type": "array",
"items": {
"$ref": "#/definitions/EventOptionsFilterBy"
},
"description": "Selection of data filtering type",
"example": [
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
}
]
},
"group_by": {
"type": "array",
"items": {
"type": "string",
"example": "Illo iste earum quod ut asperiores aliquam."
},
"description": "Select tags by which should be data grouped",
"example": [
"Illo iste earum quod ut asperiores aliquam.",
"Illo iste earum quod ut asperiores aliquam."
]
},
"time_after": {
"type": "string",
"description": "Include all pageviews that happened after specified RFC3339 datetime",
"example": "1985-05-29T13:29:05Z",
"format": "date-time"
},
"time_before": {
"type": "string",
"description": "Include all pageviews that happened before specified RFC3339 datetime",
"example": "1980-09-04T18:29:57Z",
"format": "date-time"
},
"time_histogram": {
"$ref": "#/definitions/OptionsTimeHistogram"
}
},
"description": "Parameters to filter event counts",
"example": {
"action": "Omnis ut consequatur molestias distinctio.",
"category": "Voluptatum omnis quibusdam.",
"filter_by": [
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
}
],
"group_by": [
"Illo iste earum quod ut asperiores aliquam.",
"Illo iste earum quod ut asperiores aliquam."
],
"time_after": "1985-05-29T13:29:05Z",
"time_before": "1980-09-04T18:29:57Z",
"time_histogram": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
}
}
},
"Events": {
"title": "Mediatype identifier: application/vnd.events+json; view=default",
"type": "object",
"properties": {
"events": {
"$ref": "#/definitions/EventCollection"
},
"tags": {
"type": "object",
"example": {
"Quia iure.": "Vel eum laborum perferendis."
},
"additionalProperties": true
}
},
"description": "Events (default view)",
"example": {
"events": [
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
},
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
}
],
"tags": {
"Quia iure.": "Vel eum laborum perferendis."
}
},
"required": [
"tags",
"events"
]
},
"EventsCollection": {
"title": "Mediatype identifier: application/vnd.events+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Events"
},
"description": "EventsCollection is the media type for an array of Events (default view)",
"example": [
{
"events": [
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
},
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
}
],
"tags": {
"Quia iure.": "Vel eum laborum perferendis."
}
},
{
"events": [
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
},
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
}
],
"tags": {
"Quia iure.": "Vel eum laborum perferendis."
}
},
{
"events": [
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
},
{
"action": "Eaque deleniti vero error.",
"category": "Dolorum aut harum voluptatem.",
"id": "Dolores deserunt.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"utm_campaign": "Rem unde exercitationem voluptatem aspernatur.",
"utm_content": "Nisi fugit laboriosam architecto iste quo.",
"utm_medium": "Natus dolores labore accusantium.",
"utm_source": "Qui sapiente."
}
],
"tags": {
"Quia iure.": "Vel eum laborum perferendis."
}
}
]
},
"Flags": {
"title": "Mediatype identifier: application/vnd.flags+json; view=default",
"type": "object",
"properties": {
"commerce": {
"type": "array",
"items": {
"type": "string",
"example": "Expedita sed ipsa quibusdam."
},
"description": "Commerce category flags",
"example": [
"Expedita sed ipsa quibusdam."
]
},
"events": {
"type": "array",
"items": {
"type": "string",
"example": "Et quos ipsam nostrum."
},
"description": "Events category flags",
"example": [
"Et quos ipsam nostrum.",
"Et quos ipsam nostrum."
]
},
"pageviews": {
"type": "array",
"items": {
"type": "string",
"example": "Quidem cupiditate repellat aut."
},
"description": "Pageviews category flags",
"example": [
"Quidem cupiditate repellat aut.",
"Quidem cupiditate repellat aut.",
"Quidem cupiditate repellat aut."
]
}
},
"description": "Flags media type (default view)",
"example": {
"commerce": [
"Expedita sed ipsa quibusdam."
],
"events": [
"Et quos ipsam nostrum.",
"Et quos ipsam nostrum."
],
"pageviews": [
"Quidem cupiditate repellat aut.",
"Quidem cupiditate repellat aut.",
"Quidem cupiditate repellat aut."
]
},
"required": [
"pageviews",
"commerce",
"events"
]
},
"ListCommerceOptionsPayload": {
"title": "ListCommerceOptionsPayload",
"type": "object",
"properties": {
"conditions": {
"$ref": "#/definitions/CommerceOptionsPayload"
},
"select_fields": {
"type": "array",
"items": {
"type": "string",
"example": "Et aperiam beatae."
},
"description": "List of fields to select",
"example": [
"Et aperiam beatae.",
"Et aperiam beatae."
]
}
},
"description": "Parameters to filter pageview list",
"example": {
"conditions": {
"filter_by": [
{
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
},
{
"inverse": false,
"tag": "Aut dolore culpa eius veritatis.",
"values": [
"Nisi inventore enim."
]
}
],
"group_by": [
"Optio cum.",
"Optio cum."
],
"step": "purchase",
"time_after": "2008-09-21T05:23:04Z",
"time_before": "1976-02-26T14:44:04Z",
"time_histogram": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
}
},
"select_fields": [
"Et aperiam beatae.",
"Et aperiam beatae."
]
},
"required": [
"conditions"
]
},
"ListEventOptionsPayload": {
"title": "ListEventOptionsPayload",
"type": "object",
"properties": {
"conditions": {
"$ref": "#/definitions/EventOptionsPayload"
},
"select_fields": {
"type": "array",
"items": {
"type": "string",
"example": "Voluptates nam in ratione voluptas harum."
},
"description": "List of fields to select",
"example": [
"Voluptates nam in ratione voluptas harum."
]
}
},
"description": "Parameters to filter events list",
"example": {
"conditions": {
"action": "Omnis ut consequatur molestias distinctio.",
"category": "Voluptatum omnis quibusdam.",
"filter_by": [
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
},
{
"inverse": true,
"tag": "Beatae nesciunt.",
"values": [
"Qui praesentium quia deserunt.",
"Qui praesentium quia deserunt."
]
}
],
"group_by": [
"Illo iste earum quod ut asperiores aliquam.",
"Illo iste earum quod ut asperiores aliquam."
],
"time_after": "1985-05-29T13:29:05Z",
"time_before": "1980-09-04T18:29:57Z",
"time_histogram": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
}
},
"select_fields": [
"Voluptates nam in ratione voluptas harum."
]
},
"required": [
"conditions"
]
},
"ListPageviewOptionsPayload": {
"title": "ListPageviewOptionsPayload",
"type": "object",
"properties": {
"conditions": {
"$ref": "#/definitions/PageviewOptionsPayload"
},
"load_timespent": {
"type": "boolean",
"description": "If true, load timespent for each pageview",
"default": false,
"example": true
},
"select_fields": {
"type": "array",
"items": {
"type": "string",
"example": "Deleniti vitae itaque nulla iusto."
},
"description": "List of fields to select",
"example": [
"Deleniti vitae itaque nulla iusto.",
"Deleniti vitae itaque nulla iusto.",
"Deleniti vitae itaque nulla iusto."
]
}
},
"description": "Parameters to filter pageview list",
"example": {
"conditions": {
"count_histogram": {
"field": "Odit dolores quo vitae harum qui ratione.",
"interval": 0.7109627450245304
},
"filter_by": [
{
"inverse": false,
"tag": "Ducimus recusandae.",
"values": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
}
],
"group_by": [
"Similique sit rerum voluptatem et omnis.",
"Similique sit rerum voluptatem et omnis.",
"Similique sit rerum voluptatem et omnis."
],
"time_after": "2006-12-09T14:12:57Z",
"time_before": "2006-08-02T04:05:44Z",
"time_histogram": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
}
},
"load_timespent": true,
"select_fields": [
"Deleniti vitae itaque nulla iusto.",
"Deleniti vitae itaque nulla iusto.",
"Deleniti vitae itaque nulla iusto."
]
},
"required": [
"conditions"
]
},
"OptionsCountHistogram": {
"title": "OptionsCountHistogram",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "Name of the field for aggregation",
"example": "Odit dolores quo vitae harum qui ratione."
},
"interval": {
"type": "number",
"description": "Interval of buckets",
"example": 0.7109627450245304,
"format": "double"
}
},
"description": "Values used to split results in count buckets",
"example": {
"field": "Odit dolores quo vitae harum qui ratione.",
"interval": 0.7109627450245304
},
"required": [
"field",
"interval"
]
},
"OptionsTimeHistogram": {
"title": "OptionsTimeHistogram",
"type": "object",
"properties": {
"interval": {
"type": "string",
"description": "Interval of buckets",
"example": "Et tempore pariatur unde nesciunt qui dolores."
},
"offset": {
"type": "string",
"description": "Offset of buckets",
"example": "Officia voluptatem sit."
}
},
"description": "Values used to split results in time buckets",
"example": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
},
"required": [
"interval",
"offset"
]
},
"Pageview": {
"title": "Mediatype identifier: application/vnd.pageview+json; view=default",
"type": "object",
"properties": {
"article": {
"$ref": "#/definitions/Article"
},
"id": {
"type": "string",
"example": "Non exercitationem consectetur."
},
"system": {
"$ref": "#/definitions/System"
},
"user": {
"$ref": "#/definitions/User"
}
},
"description": "Pageview event (default view)",
"example": {
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
"required": [
"system"
]
},
"PageviewCollection": {
"title": "Mediatype identifier: application/vnd.pageview+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Pageview"
},
"description": "PageviewCollection is the media type for an array of Pageview (default view)",
"example": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
]
},
"PageviewOptionsFilterBy": {
"title": "PageviewOptionsFilterBy",
"type": "object",
"properties": {
"inverse": {
"type": "boolean",
"description": "If true, condition will be inversed",
"example": false
},
"tag": {
"type": "string",
"description": "Tag used to filter results (use tag name: user_id, article_id, ...)",
"example": "Ducimus recusandae."
},
"values": {
"type": "array",
"items": {
"type": "string",
"example": "Dolorem dolore perferendis ullam non facilis."
},
"description": "Values of TAG used to filter result",
"example": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
}
},
"description": "Tags and values used to filter results",
"example": {
"inverse": false,
"tag": "Ducimus recusandae.",
"values": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
},
"required": [
"tag",
"values"
]
},
"PageviewOptionsPayload": {
"title": "PageviewOptionsPayload",
"type": "object",
"properties": {
"count_histogram": {
"$ref": "#/definitions/OptionsCountHistogram"
},
"filter_by": {
"type": "array",
"items": {
"$ref": "#/definitions/PageviewOptionsFilterBy"
},
"description": "Selection of data filtering type",
"example": [
{
"inverse": false,
"tag": "Ducimus recusandae.",
"values": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
}
]
},
"group_by": {
"type": "array",
"items": {
"type": "string",
"example": "Similique sit rerum voluptatem et omnis."
},
"description": "Select tags by which should be data grouped",
"example": [
"Similique sit rerum voluptatem et omnis.",
"Similique sit rerum voluptatem et omnis.",
"Similique sit rerum voluptatem et omnis."
]
},
"time_after": {
"type": "string",
"description": "Include all pageviews that happened after specified RFC3339 datetime",
"example": "2006-12-09T14:12:57Z",
"format": "date-time"
},
"time_before": {
"type": "string",
"description": "Include all pageviews that happened before specified RFC3339 datetime",
"example": "2006-08-02T04:05:44Z",
"format": "date-time"
},
"time_histogram": {
"$ref": "#/definitions/OptionsTimeHistogram"
}
},
"description": "Parameters to filter pageview counts",
"example": {
"count_histogram": {
"field": "Odit dolores quo vitae harum qui ratione.",
"interval": 0.7109627450245304
},
"filter_by": [
{
"inverse": false,
"tag": "Ducimus recusandae.",
"values": [
"Dolorem dolore perferendis ullam non facilis.",
"Dolorem dolore perferendis ullam non facilis."
]
}
],
"group_by": [
"Similique sit rerum voluptatem et omnis.",
"Similique sit rerum voluptatem et omnis.",
"Similique sit rerum voluptatem et omnis."
],
"time_after": "2006-12-09T14:12:57Z",
"time_before": "2006-08-02T04:05:44Z",
"time_histogram": {
"interval": "Et tempore pariatur unde nesciunt qui dolores.",
"offset": "Officia voluptatem sit."
}
}
},
"Pageviews": {
"title": "Mediatype identifier: application/vnd.pageviews+json; view=default",
"type": "object",
"properties": {
"pageviews": {
"$ref": "#/definitions/PageviewCollection"
},
"tags": {
"type": "object",
"example": {
"Qui repudiandae quo.": "Aut nesciunt provident."
},
"additionalProperties": true
}
},
"description": "Pageviews (default view)",
"example": {
"pageviews": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
],
"tags": {
"Qui repudiandae quo.": "Aut nesciunt provident."
}
},
"required": [
"tags",
"pageviews"
]
},
"PageviewsCollection": {
"title": "Mediatype identifier: application/vnd.pageviews+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Pageviews"
},
"description": "PageviewsCollection is the media type for an array of Pageviews (default view)",
"example": [
{
"pageviews": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
],
"tags": {
"Qui repudiandae quo.": "Aut nesciunt provident."
}
},
{
"pageviews": [
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
},
{
"article": {
"author_id": "Recusandae sed soluta porro aspernatur.",
"category": "Sapiente sit ipsum quo sunt.",
"id": "Error eos delectus alias quisquam itaque.",
"locked": true,
"tags": [
"Qui voluptatem maxime officia repellendus omnis et.",
"Qui voluptatem maxime officia repellendus omnis et."
],
"variants": {
"Voluptates doloribus ut.": "Voluptates necessitatibus perspiciatis qui earum ex."
}
},
"id": "Non exercitationem consectetur.",
"system": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"user": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
}
}
],
"tags": {
"Qui repudiandae quo.": "Aut nesciunt provident."
}
}
]
},
"Revenue": {
"title": "Mediatype identifier: application/vnd.revenue+json; view=default",
"type": "object",
"properties": {
"amount": {
"type": "number",
"description": "Numeric amount of money",
"example": 0.7459877487948743,
"format": "double"
},
"currency": {
"type": "string",
"description": "ISO 4217 representation of currency",
"example": "Et eius consequatur et ea vel nam."
}
},
"description": "Revenue media type (default view)",
"example": {
"amount": 0.7459877487948743,
"currency": "Et eius consequatur et ea vel nam."
},
"required": [
"amount",
"currency"
]
},
"Segment": {
"title": "Mediatype identifier: application/vnd.segment+json; view=default",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Code-friendly identificator of segment",
"example": "Dolorem enim aliquam molestiae cum."
},
"criteria": {
"description": "Criteria used to build segment",
"example": "81c09681-e976-4358-a773-b724043de94e"
},
"group": {
"$ref": "#/definitions/SegmentGroup"
},
"id": {
"type": "integer",
"description": "ID of segment",
"example": 982966559558252471,
"format": "int64"
},
"name": {
"type": "string",
"description": "User-friendly name of segment",
"example": "Minus beatae numquam neque veritatis quibusdam iste."
}
},
"description": "Segment (default view)",
"example": {
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
},
"required": [
"id",
"code",
"name",
"group"
]
},
"SegmentBlueprint": {
"title": "Mediatype identifier: application/vnd.segment.blueprint+json; view=default",
"type": "object",
"properties": {
"blueprint": {
"$ref": "#/definitions/SegmentBlueprintTableCollection"
}
},
"description": "Segment blueprint (default view)",
"example": {
"blueprint": [
{
"criteria": [
{
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
}
],
"fields": [
"Pariatur voluptatem tenetur enim nobis.",
"Pariatur voluptatem tenetur enim nobis."
],
"table": "Est non."
},
{
"criteria": [
{
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
}
],
"fields": [
"Pariatur voluptatem tenetur enim nobis.",
"Pariatur voluptatem tenetur enim nobis."
],
"table": "Est non."
}
]
},
"required": [
"blueprint"
]
},
"SegmentBlueprintTable": {
"title": "Mediatype identifier: application/vnd.segment.blueprint.table+json; view=default",
"type": "object",
"properties": {
"criteria": {
"$ref": "#/definitions/SegmentBlueprintTableCriterionCollection"
},
"fields": {
"type": "array",
"items": {
"type": "string",
"example": "Pariatur voluptatem tenetur enim nobis."
},
"description": "Fields of table",
"example": [
"Pariatur voluptatem tenetur enim nobis.",
"Pariatur voluptatem tenetur enim nobis."
]
},
"table": {
"type": "string",
"description": "Table name",
"example": "Est non."
}
},
"description": "Blueprint of one table available for segment (default view)",
"example": {
"criteria": [
{
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
}
],
"fields": [
"Pariatur voluptatem tenetur enim nobis.",
"Pariatur voluptatem tenetur enim nobis."
],
"table": "Est non."
},
"required": [
"table",
"fields",
"criteria"
]
},
"SegmentBlueprintTableCollection": {
"title": "Mediatype identifier: application/vnd.segment.blueprint.table+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/SegmentBlueprintTable"
},
"description": "SegmentBlueprintTableCollection is the media type for an array of SegmentBlueprintTable (default view)",
"example": [
{
"criteria": [
{
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
}
],
"fields": [
"Pariatur voluptatem tenetur enim nobis.",
"Pariatur voluptatem tenetur enim nobis."
],
"table": "Est non."
}
]
},
"SegmentBlueprintTableCriterion": {
"title": "Mediatype identifier: application/vnd.segment.blueprint.table.criterion+json; view=default",
"type": "object",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string",
"example": "Quam sed in quia beatae vero quae."
},
"description": "Field parameters",
"example": [
"Quam sed in quia beatae vero quae."
]
},
"key": {
"type": "string",
"description": "Field of table to which is this criterion related",
"example": "Voluptas aut et ratione maxime."
},
"label": {
"type": "string",
"description": "Human readable name of field",
"example": "Illo asperiores aut voluptates."
},
"params": {
"description": "Criteria of field parameters",
"example": false
}
},
"description": "Criterion for one field of table available for segment (default view)",
"example": {
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
},
"required": [
"key",
"label",
"params"
]
},
"SegmentBlueprintTableCriterionCollection": {
"title": "Mediatype identifier: application/vnd.segment.blueprint.table.criterion+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/SegmentBlueprintTableCriterion"
},
"description": "SegmentBlueprintTableCriterionCollection is the media type for an array of SegmentBlueprintTableCriterion (default view)",
"example": [
{
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
},
{
"fields": [
"Quam sed in quia beatae vero quae."
],
"key": "Voluptas aut et ratione maxime.",
"label": "Illo asperiores aut voluptates.",
"params": false
}
]
},
"SegmentCheck": {
"title": "Mediatype identifier: application/vnd.segment.check+json; view=default",
"type": "object",
"properties": {
"cache": {
"type": "object",
"description": "Cache object for third party (remplib.js) to use indexed by SegmentRule-based key",
"example": {
"1973754744090580828": {
"c": 8393194112484186744,
"s": "1974-09-21T10:02:11Z"
}
},
"additionalProperties": true
},
"check": {
"type": "boolean",
"description": "Flag whether user is in the segment or not",
"example": false
},
"event_rules": {
"type": "object",
"description": "Map of which rules should be incremented for selected events.",
"example": {
"Possimus sed qui non dolorem dicta quod.": [
3408884695558138384,
3408884695558138384,
3408884695558138384
]
},
"additionalProperties": true
},
"flags": {
"type": "object",
"description": "Array of flags belonging to rules.",
"example": {
"8360176510688700773": {
"Laboriosam fuga reiciendis.": "Beatae quia."
}
},
"additionalProperties": true
},
"overridable_fields": {
"type": "object",
"description": "Array of overridable fields belonging to rules.",
"example": {
"6932361134310962926": [
"Voluptatibus molestiae vel ut."
]
},
"additionalProperties": true
}
},
"description": "Segment check (default view)",
"example": {
"cache": {
"1973754744090580828": {
"c": 8393194112484186744,
"s": "1974-09-21T10:02:11Z"
}
},
"check": false,
"event_rules": {
"Possimus sed qui non dolorem dicta quod.": [
3408884695558138384,
3408884695558138384,
3408884695558138384
]
},
"flags": {
"8360176510688700773": {
"Laboriosam fuga reiciendis.": "Beatae quia."
}
},
"overridable_fields": {
"6932361134310962926": [
"Voluptatibus molestiae vel ut."
]
}
},
"required": [
"check",
"cache",
"event_rules",
"overridable_fields",
"flags"
]
},
"SegmentCollection": {
"title": "Mediatype identifier: application/vnd.segment+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Segment"
},
"description": "SegmentCollection is the media type for an array of Segment (default view)",
"example": [
{
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
},
{
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
},
{
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
}
]
},
"SegmentCount": {
"title": "Mediatype identifier: application/vnd.segment.count+json; view=default",
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "Number of users in segment based on provided criteria",
"example": 2981047990373897031,
"format": "int64"
},
"status": {
"type": "string",
"description": "Status of count. If everything is fine, returns ok.",
"example": "Voluptatem dolorem."
}
},
"description": "Segment count (default view)",
"example": {
"count": 2981047990373897031,
"status": "Voluptatem dolorem."
},
"required": [
"count",
"status"
]
},
"SegmentCreateCriteria": {
"title": "SegmentCreateCriteria",
"type": "object",
"properties": {
"nodes": {
"type": "array",
"items": {
"$ref": "#/definitions/SegmentCreateCriteriaOperator"
},
"description": "Criteria operators",
"example": [
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
},
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
}
]
},
"version": {
"type": "string",
"description": "Version of criteria format",
"example": "Cumque officiis error."
}
},
"description": "Segment's criteria",
"example": {
"nodes": [
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
},
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
}
],
"version": "Cumque officiis error."
},
"required": [
"nodes",
"version"
]
},
"SegmentCreateCriteriaOperator": {
"title": "SegmentCreateCriteriaOperator",
"type": "object",
"properties": {
"nodes": {
"type": "array",
"items": {
"$ref": "#/definitions/SegmentCreateCriteriaOperatorNode"
},
"description": "Criteria nodes",
"example": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
]
},
"operator": {
"type": "string",
"description": "Operator for following criteria nodes",
"example": "OR",
"enum": [
"AND",
"OR"
]
},
"type": {
"type": "string",
"description": "Type of criterion",
"example": "operator",
"enum": [
"operator"
]
}
},
"description": "Single operator node of Segment's criteria",
"example": {
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
},
"required": [
"type",
"operator",
"nodes"
]
},
"SegmentCreateCriteriaOperatorNode": {
"title": "SegmentCreateCriteriaOperatorNode",
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "Key of criterion's type",
"example": "Natus voluptatem expedita ea voluptatem ut quia."
},
"negation": {
"type": "boolean",
"description": "Use true if this criterion should be negated",
"example": true
},
"type": {
"type": "string",
"description": "Type of criterion",
"example": "criteria",
"enum": [
"criteria"
]
},
"values": {
"example": 0.6880739799224428
}
},
"description": "Single node of Segment's criteria",
"example": {
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
},
"SegmentExtended": {
"title": "Mediatype identifier: application/vnd.segment+json; view=extended",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Code-friendly identificator of segment",
"example": "Dolorem enim aliquam molestiae cum."
},
"group": {
"$ref": "#/definitions/SegmentGroup"
},
"id": {
"type": "integer",
"description": "ID of segment",
"example": 982966559558252471,
"format": "int64"
},
"name": {
"type": "string",
"description": "User-friendly name of segment",
"example": "Minus beatae numquam neque veritatis quibusdam iste."
},
"url": {
"type": "string",
"description": "URL to segment",
"example": "Quia nemo et libero possimus."
}
},
"description": "Segment (extended view)",
"example": {
"code": "Dolorem enim aliquam molestiae cum.",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste.",
"url": "Quia nemo et libero possimus."
},
"required": [
"id",
"code",
"name",
"group"
]
},
"SegmentExtendedCollection": {
"title": "Mediatype identifier: application/vnd.segment+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/SegmentExtended"
},
"description": "SegmentExtendedCollection is the media type for an array of SegmentExtended (default view)",
"example": [
{
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
},
{
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
},
{
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste."
}
]
},
"SegmentGroup": {
"title": "Mediatype identifier: application/vnd.segment.group+json; view=default",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Internal ID of segment group",
"example": 8689575616172345598,
"format": "int64"
},
"name": {
"type": "string",
"description": "User-friendly name of segment group",
"example": "Praesentium dolor reprehenderit."
},
"sorting": {
"type": "integer",
"description": "Sort order index",
"example": 3085996302451637866,
"format": "int64"
}
},
"description": "Segment group (default view)",
"example": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"required": [
"id",
"name",
"sorting"
]
},
"SegmentGroupCollection": {
"title": "Mediatype identifier: application/vnd.segment.group+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/SegmentGroup"
},
"description": "SegmentGroupCollection is the media type for an array of SegmentGroup (default view)",
"example": [
{
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
}
]
},
"SegmentGroupsFallback": {
"title": "Mediatype identifier: application/vnd.segment.groups.fallback; view=default",
"type": "object",
"properties": {
"groups": {
"$ref": "#/definitions/SegmentGroupCollection"
},
"status": {
"type": "string",
"description": "OK flag to check before reading the data",
"example": "Ipsa laboriosam rem quam ipsa."
}
},
"description": "SegmentGroupsFallback media type (default view)",
"example": {
"groups": [
{
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
{
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
}
],
"status": "Ipsa laboriosam rem quam ipsa."
},
"required": [
"status",
"groups"
]
},
"SegmentPayload": {
"title": "SegmentPayload",
"type": "object",
"properties": {
"criteria": {
"$ref": "#/definitions/SegmentCreateCriteria"
},
"fields": {
"type": "array",
"items": {
"type": "string",
"example": "Deserunt architecto eaque magnam."
},
"description": "List of fields to select",
"example": [
"Deserunt architecto eaque magnam.",
"Deserunt architecto eaque magnam."
]
},
"group_id": {
"type": "integer",
"description": "ID of parent group",
"example": 7013688279772410176,
"format": "int64"
},
"name": {
"type": "string",
"description": "Name of segment",
"example": "Est voluptatem eos sed sint quo."
},
"table_name": {
"type": "string",
"description": "Name of table above which this segment is calculated",
"example": "Voluptatum recusandae voluptatibus ex."
}
},
"description": "Request parameters for segment creation",
"example": {
"criteria": {
"nodes": [
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
},
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
}
],
"version": "Cumque officiis error."
},
"fields": [
"Deserunt architecto eaque magnam.",
"Deserunt architecto eaque magnam."
],
"group_id": 7013688279772410176,
"name": "Est voluptatem eos sed sint quo.",
"table_name": "Voluptatum recusandae voluptatibus ex."
},
"required": [
"name",
"table_name",
"group_id",
"fields",
"criteria"
]
},
"SegmentSegmenter": {
"title": "Mediatype identifier: application/vnd.segment+json; view=segmenter",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Code-friendly identificator of segment",
"example": "Dolorem enim aliquam molestiae cum."
},
"criteria": {
"description": "Criteria used to build segment",
"example": "81c09681-e976-4358-a773-b724043de94e"
},
"fields": {
"type": "array",
"items": {
"type": "string",
"example": "Non inventore minus soluta doloribus occaecati."
},
"example": [
"Non inventore minus soluta doloribus occaecati.",
"Non inventore minus soluta doloribus occaecati."
]
},
"group": {
"$ref": "#/definitions/SegmentGroup"
},
"group_id": {
"type": "integer",
"example": 9004380098096431643,
"format": "int64"
},
"id": {
"type": "integer",
"description": "ID of segment",
"example": 982966559558252471,
"format": "int64"
},
"name": {
"type": "string",
"description": "User-friendly name of segment",
"example": "Minus beatae numquam neque veritatis quibusdam iste."
},
"table_name": {
"type": "string",
"example": "Inventore tempora rerum sunt quidem."
}
},
"description": "Segment (segmenter view)",
"example": {
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"fields": [
"Non inventore minus soluta doloribus occaecati.",
"Non inventore minus soluta doloribus occaecati."
],
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"group_id": 9004380098096431643,
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste.",
"table_name": "Inventore tempora rerum sunt quidem."
},
"required": [
"id",
"code",
"name",
"group"
]
},
"SegmentTinyPayload": {
"title": "SegmentTinyPayload",
"type": "object",
"properties": {
"criteria": {
"$ref": "#/definitions/SegmentCreateCriteria"
},
"table_name": {
"type": "string",
"description": "Name of table above which this segment is calculated",
"example": "Voluptatem sit est error architecto minus."
}
},
"description": "Request parameters for endpoints segments/count and segments/related",
"example": {
"criteria": {
"nodes": [
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
},
{
"nodes": [
{
"key": "Natus voluptatem expedita ea voluptatem ut quia.",
"negation": true,
"type": "criteria",
"values": 0.6880739799224428
}
],
"operator": "OR",
"type": "operator"
}
],
"version": "Cumque officiis error."
},
"table_name": "Voluptatem sit est error architecto minus."
}
},
"SegmentersSegment": {
"title": "Mediatype identifier: application/vnd.segmenters.segment.+json; view=default",
"type": "object",
"properties": {
"segment": {
"$ref": "#/definitions/SegmentSegmenter"
},
"status": {
"type": "string",
"example": "Nostrum fugit qui molestias est sequi nam."
}
},
"description": "Segment returned for segmenter (default view)",
"example": {
"segment": {
"code": "Dolorem enim aliquam molestiae cum.",
"criteria": "81c09681-e976-4358-a773-b724043de94e",
"fields": [
"Non inventore minus soluta doloribus occaecati.",
"Non inventore minus soluta doloribus occaecati."
],
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"group_id": 9004380098096431643,
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste.",
"table_name": "Inventore tempora rerum sunt quidem."
},
"status": "Nostrum fugit qui molestias est sequi nam."
},
"required": [
"status",
"segment"
]
},
"SegmentsRelated": {
"title": "Mediatype identifier: application/vnd.segments.related+json; view=default",
"type": "object",
"properties": {
"segments": {
"$ref": "#/definitions/SegmentExtendedCollection"
}
},
"description": "Related segments (default view)",
"example": {
"segments": [
{
"code": "Dolorem enim aliquam molestiae cum.",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste.",
"url": "Quia nemo et libero possimus."
},
{
"code": "Dolorem enim aliquam molestiae cum.",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste.",
"url": "Quia nemo et libero possimus."
},
{
"code": "Dolorem enim aliquam molestiae cum.",
"group": {
"id": 8689575616172345598,
"name": "Praesentium dolor reprehenderit.",
"sorting": 3085996302451637866
},
"id": 982966559558252471,
"name": "Minus beatae numquam neque veritatis quibusdam iste.",
"url": "Quia nemo et libero possimus."
}
]
},
"required": [
"segments"
]
},
"Source": {
"title": "Mediatype identifier: application/vnd.source+json; view=default",
"type": "object",
"properties": {
"utm_campaign": {
"type": "string",
"description": "Reference to specific campaign (e.g. campaign ID",
"example": "Dicta a fugit et accusamus et provident."
},
"utm_content": {
"type": "string",
"description": "Reference to specific campaign mean (e.g. banner ID)",
"example": "Omnis facilis voluptatum."
},
"utm_medium": {
"type": "string",
"description": "Medium through which the came (e.g. overlay, inline)",
"example": "Id voluptate."
},
"utm_source": {
"type": "string",
"description": "Origin of user (e.g. remp_campaign)",
"example": "Beatae pariatur fugiat consectetur iure eveniet qui."
}
},
"description": "Source media type (default view)",
"example": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
}
},
"Sum": {
"title": "Mediatype identifier: application/vnd.sum+json; view=default",
"type": "object",
"properties": {
"sum": {
"type": "number",
"example": 0.06765732997644613,
"format": "double"
},
"tags": {
"type": "object",
"example": {
"Impedit ullam numquam quis architecto aperiam ut.": "Ipsum eaque ea odio."
},
"additionalProperties": true
},
"time_histogram": {
"$ref": "#/definitions/TimeHistogramCollection"
}
},
"description": "Sum (default view)",
"example": {
"sum": 0.06765732997644613,
"tags": {
"Impedit ullam numquam quis architecto aperiam ut.": "Ipsum eaque ea odio."
},
"time_histogram": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
},
"required": [
"tags",
"sum"
]
},
"SumCollection": {
"title": "Mediatype identifier: application/vnd.sum+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/Sum"
},
"description": "SumCollection is the media type for an array of Sum (default view)",
"example": [
{
"sum": 0.06765732997644613,
"tags": {
"Impedit ullam numquam quis architecto aperiam ut.": "Ipsum eaque ea odio."
},
"time_histogram": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
}
]
},
"System": {
"title": "Mediatype identifier: application/vnd.system+json; view=default",
"type": "object",
"properties": {
"property_token": {
"type": "string",
"description": "Property token",
"example": "319a49f6-e0c7-4004-993b-4f9460593a04",
"format": "uuid"
},
"time": {
"type": "string",
"description": "Time of occurrence",
"example": "2010-05-09T15:22:16Z",
"format": "date-time"
}
},
"description": "System media type (default view)",
"example": {
"property_token": "319a49f6-e0c7-4004-993b-4f9460593a04",
"time": "2010-05-09T15:22:16Z"
},
"required": [
"property_token",
"time"
]
},
"TimeHistogram": {
"title": "Mediatype identifier: application/vnd.time.histogram+json; view=default",
"type": "object",
"properties": {
"time": {
"type": "string",
"example": "1983-04-07T05:24:32Z",
"format": "date-time"
},
"value": {
"type": "number",
"example": 0.020480852707711394,
"format": "double"
}
},
"description": "Time histogram data (default view)",
"example": {
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
},
"required": [
"time",
"value"
]
},
"TimeHistogramCollection": {
"title": "Mediatype identifier: application/vnd.time.histogram+json; type=collection; view=default",
"type": "array",
"items": {
"$ref": "#/definitions/TimeHistogram"
},
"description": "TimeHistogramCollection is the media type for an array of TimeHistogram (default view)",
"example": [
{
"time": "1983-04-07T05:24:32Z",
"value": 0.020480852707711394
}
]
},
"User": {
"title": "Mediatype identifier: application/vnd.user+json; view=default",
"type": "object",
"properties": {
"browser_id": {
"type": "string",
"description": "Anonymized ID of user's browser",
"example": "Eligendi et animi et repudiandae et."
},
"id": {
"type": "string",
"description": "ID of reader",
"example": "Qui maiores."
},
"ip_address": {
"type": "string",
"description": "IP address of client",
"example": "86.237.134.188",
"format": "ip"
},
"referer": {
"type": "string",
"description": "Value of HTTP referer header (if present)",
"example": "Qui necessitatibus dolore qui dolores illum."
},
"remp_pageview_id": {
"type": "string",
"description": "ID of pageview",
"example": "Voluptatem maxime non amet natus."
},
"remp_session_id": {
"type": "string",
"description": "ID of reader's session",
"example": "Saepe excepturi iste temporibus optio ut."
},
"source": {
"$ref": "#/definitions/Source"
},
"subscriber": {
"type": "boolean",
"description": "Flag whether user is subscriber (has paid for access)",
"example": false
},
"timespent": {
"type": "integer",
"description": "Number of seconds spent during pageview (if recorded)",
"example": 7844585400895686151,
"format": "int64"
},
"url": {
"type": "string",
"description": "URL of the content/conversion point",
"example": "http://bechtelar.biz/kristy",
"format": "uri"
},
"user_agent": {
"type": "string",
"description": "User agent of client",
"example": "Quia aut consequatur sit voluptatem vel."
}
},
"description": "User media type (default view)",
"example": {
"browser_id": "Eligendi et animi et repudiandae et.",
"id": "Qui maiores.",
"ip_address": "86.237.134.188",
"referer": "Qui necessitatibus dolore qui dolores illum.",
"remp_pageview_id": "Voluptatem maxime non amet natus.",
"remp_session_id": "Saepe excepturi iste temporibus optio ut.",
"source": {
"utm_campaign": "Dicta a fugit et accusamus et provident.",
"utm_content": "Omnis facilis voluptatum.",
"utm_medium": "Id voluptate.",
"utm_source": "Beatae pariatur fugiat consectetur iure eveniet qui."
},
"subscriber": false,
"timespent": 7844585400895686151,
"url": "http://bechtelar.biz/kristy",
"user_agent": "Quia aut consequatur sit voluptatem vel."
},
"required": [
"remp_pageview_id"
]
},
"error": {
"title": "Mediatype identifier: application/vnd.goa.error; view=default",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "an application-specific error code, expressed as a string value.",
"example": "invalid_value"
},
"detail": {
"type": "string",
"description": "a human-readable explanation specific to this occurrence of the problem.",
"example": "Value of ID must be an integer"
},
"id": {
"type": "string",
"description": "a unique identifier for this particular occurrence of the problem.",
"example": "3F1FKVRR"
},
"meta": {
"type": "object",
"description": "a meta object containing non-standard meta-information about the error.",
"example": {
"timestamp": 1458609066
},
"additionalProperties": true
},
"status": {
"type": "string",
"description": "the HTTP status code applicable to this problem, expressed as a string value.",
"example": "400"
}
},
"description": "Error response media type (default view)",
"example": {
"code": "invalid_value",
"detail": "Value of ID must be an integer",
"id": "3F1FKVRR",
"meta": {
"timestamp": 1458609066
},
"status": "400"
}
}
},
"responses": {
"BadRequest": {
"description": "Invalid request sent",
"schema": {
"$ref": "#/definitions/error"
}
},
"NotFound": {
"description": "Not Found"
}
}
}

from remp.

rootpd avatar rootpd commented on August 13, 2024

Yep, that's what you should see. It's a Swagger API definition file. You don't need to interact with these hosts directly, they're just necessary for other services to function properly. It seems that everything is running now.

from remp.

jessemarco avatar jessemarco commented on August 13, 2024

Thank you for excellent support.

from remp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.