Page Title: Databox Developers

  • This webpage makes use of the TITLE meta tag - this is good for search engine optimization.

Page Description:

  • This webpage DOES NOT make use of the DESCRIPTION meta tag - this is NOT GOOD for search engine optimization.

Page Keywords:

  • This webpage DOES NOT make use of the KEYWORDS meta tag - whilst search engines nowadays do not put too much emphasis on this meta tag including them in your website does no harm.

Page Text: Go Python curl https://push.databox.com \ -u 2cdt4yoytbvockc51cowgs4gsss84ow4s: \ -X POST \ -H 'Content-Type: application/json' \ -H 'Accept: application/vnd.databox.v2+json' \ -d '{ "data":[ { "$sales": 83000, "channel": "online" }, { "$sales": 4000, "channel": "retail" }, { "$sales": 123000, "$expenses": 87500, "channel": "in-person" } ] }' use Databox\Client; $c = new Client('2cdt4yoytbvockc51cowgs4gsss84ow4s'); $c->insertAll([ ['sales', 83000, null, [ 'channel' => 'online' ]], ['sales', 4000, null, [ 'channel' => 'retail' ]], ]); var Databox = require('databox'); var client = new Databox({ push_token: '2cdt4yoytbvockc51cowgs4gsss84ow4s' }); client.insertAll([ { key: 'sales', value: 83000, attributes: { 'channel': 'online' } }, { key: 'sales', value: 4000, attributes: { 'channel': 'retail' } } ]); Databox.configure do |c| c.push_token = '2cdt4yoytbvockc51cowgs4gsss84ow4s' end client = Databox::Client.new client.insert_all [ {key: 'sales', value: 83000, attributes: { channel: 'online' }}, {key: 'sales', value: 4000, attributes: { channel: 'retail' }} ] String TOKEN = "2cdt4yoytbvockc51cowgs4gsss84ow4s"; Databox databox = new Databox(TOKEN); try { List kpis = new ArrayList(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()); kpis.add(new Databox.KPI().setKey("sales").setValue(83000).addAttribute("channel", "online")); kpis.add(new Databox.KPI().setKey("sales").setValue(4000).addAttribute("channel", "retail")); databox.push(kpis); } catch (Exception e) { System.err.println(e.getLocalizedMessage()); } package main import ( databox "github.com/databox/databox-go" "fmt" ) func main() { client := databox.NewClient("2cdt4yoytbvockc51cowgs4gsss84ow4s") var attributes = make(map[string]interface{}) attributes["channel"] = "online" if _, error := client.Push(&databox.KPI{ Key: "sales", Value: 83000, Attributes: attributes, }); error != nil { fmt.Println("Inserted.") } } from databox import Client client = Client('2cdt4yoytbvockc51cowgs4gsss84ow4s') client.insert_all([ {'key': 'sales', 'value': 83000, 'attributes': { 'channel': 'online', }}, {'key': 'sales', 'value': 4000, 'attributes': { 'channel': 'retail', }}, ]) Pro Tip: If you send one Dimension with multiple metrics, the dimension will be added to each metric. In Databox, you can filter and visualize your data for specific dimensions. That means you could view only retail sales, or compare sales across different channels. You can add as many dimensions as you’d like to each metric.

  • This webpage has 584 words which is between the recommended minimum of 250 words and the recommended maximum of 2500 words - GOOD WORK.

Header tags:

  • It appears that you are using header tags - this is a GOOD thing!

Your header tags:

Spelling errors:

  • This webpage has 1 words which may be misspelt.

Possibly mis-spelt word: 2cdt4yoytbvockc51cowgs4gsss84ow4s

Broken links:

  • This webpage has 2 broken links.

Broken image links:

  • This webpage has no broken image links that we can detect - GOOD WORK.

CSS over tables for layout?:

  • It appears that this page uses DIVs for layout this is a GOOD thing!

Last modified date:

  • We were unable to detect what date this page was last modified

Images that are being re-sized:

  • This webpage has 1 images that are being re-sized by the browser.

Images that are being re-sized:

  • This webpage has no images that are missing their width and height - GOOD WORK.

Mobile friendly:

  • After testing this webpage it appears to be mobile friendly - this is a GOOD thing!

Links with no anchor text:

  • This webpage has 1 links that do not contain anchor text - this is NOT a good thing.

W3C Validation:

Print friendly?:

  • It appears that the webpage does NOT use CSS stylesheets to provide print functionality - this is a BAD thing.

GZIP Compression enabled?:

  • It appears that the serrver does NOT have GZIP Compression enabled - this is a NOT a good thing!