Axibase Time Series Database (ATSD) is a specialized database for storing and analyzing time series data.
ATSD provides the following tools for application developers and data scientists:
Refer to ATSD Documentation for additional details.
axibase/atsd:standalonedocker run \
--detach \
--name=atsd \
--restart=always \
--publish 8088:8088 \
--publish 8443:8443 \
--publish 8081:8081 \
--publish 8082:8082/udp \
axibase/atsd:latest
Watch for ATSD start completed message at the end of the start.log file.
docker logs -f atsd
[ATSD] Starting ATSD ...
...
[ATSD] Waiting for ATSD to start. Checking ATSD user interface port 8088 ...
[ATSD] Waiting for ATSD to bind to port 8088 ...( 1 of 20 )
...
[ATSD] ATSD web interface:
[ATSD] http://172.17.0.2:8088
[ATSD] https://172.17.0.2:8443
[ATSD] ATSD start completed.
The user interface is accessible on port 8443/https.
| Name | Required | Description |
|---|---|---|
--detach | Yes | Run container in background and print container id. |
--hostname | No | Assign hostname to the container. |
--name | No | Assign a unique name to the container. |
--restart | No | Auto-restart policy. Not supported in all Docker Engine versions. |
--publish | No | Publish a container's port to the host. |
--env | No | Define a new environment variable inside the container in key=value format. |
| Name | Required | Description |
|---|---|---|
ADMIN_USER_NAME | No | User name for the built-in administrator account. |
ADMIN_USER_PASSWORD | No | Password for the built-in administrator. |
COLLECTOR_USER_NAME | No | User name for a data collector account. |
COLLECTOR_USER_PASSWORD | No | Password for a data collector account. |
COLLECTOR_USER_TYPE | No | User group for a data collector account, default value is writer. |
DB_TIMEZONE | No | Database timezone identifier. |
JAVA_OPTS | No | Additional arguments to be passed to ATSD JVM process. |
View additional launch examples here.
| Name | Protocol | Description |
|---|---|---|
| 8088 | http | API, user interface. |
| 8443 | https | API, user interface (secure). |
| 8081 | tcp | Incoming network commands. |
| 8082 | udp | Incoming network commands. |
| 8084 | tcp | Incoming Graphite commands in Python pickle format. |
| 1099 | tcp | JMX |
Content type
Image
Digest
sha256:ea9227af9…
Size
466.5 MB
Last updated
almost 4 years ago
docker pull axibase/atsd