<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>InfluxData Blog - Mark Herring</title>
    <description>Posts by Mark Herring on the InfluxData Blog</description>
    <link>https://www.influxdata.com/blog/author/markherring/</link>
    <language>en-us</language>
    <lastBuildDate>Mon, 21 Oct 2019 07:00:10 -0700</lastBuildDate>
    <pubDate>Mon, 21 Oct 2019 07:00:10 -0700</pubDate>
    <ttl>1800</ttl>
    <item>
      <title>Using InfluxDB to Predict The Next Extinction Event</title>
      <description>&lt;p&gt;An alternative title could be “How to get JSON into InfluxDB Cloud 2.0” but that sounded too boring!&lt;/p&gt;

&lt;p&gt;OK, maybe the title is a bit of a stretch goal, but I wanted to take my new &lt;a href="https://w2.influxdata.com/products/influxdb-cloud/"&gt;InfluxDB Cloud account&lt;/a&gt; to ingest some real data (I chose Meteorites, hence the title), and see how quickly I could visualize the data. Full disclosure — I had not tried this before!&lt;/p&gt;

&lt;p&gt;I have broken this blog post into two major sections:&lt;/p&gt;
&lt;ul&gt;
 	&lt;li&gt;Section 1: The time to awesome approach&lt;/li&gt;
 	&lt;li&gt;Section 2: The step-by-step reality&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Section 1: The time to awesome approach&lt;/h2&gt;
&lt;p&gt;Like one of those cooking shows, here are some ingredients…Tada here is the cake…&lt;/p&gt;
&lt;h3&gt;Step 1 &amp;ndash; Find the data&lt;/h3&gt;
&lt;p&gt;I looked for some &lt;a href="https://github.com/jdorfman/awesome-json-datasets"&gt;interesting data sets&lt;/a&gt; and settled on the &lt;a href="https://data.nasa.gov/resource/y77d-th95.json"&gt;Earth Meteorite Landings&lt;/a&gt;. Why? I wanted to predict the end of the world — what better way than a Meteorite takes out the earth. Hey maybe that should be a movie…Oh yeah, been there done that.&lt;/p&gt;

&lt;p&gt;The data:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-json"&gt; {
  "name": "Aachen",
  "id": "1",
  "nametype": "Valid",
  "recclass": "L5",
  "mass": "21",
  "fall": "Fell",
  "year": "1880-01-01T00:00:00.000",
  "reclat": "50.775000",
  "reclong": "6.083330",
  "geolocation": {
  "type": "Point",
  "coordinates": [
6.08333,
50.775
  ]
    }
       },
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Step 2 &amp;ndash; Use Telegraf to parse the JSON&lt;/h3&gt;
&lt;p&gt;Next step — configure Telegraf to connect to the dataset and extract the interesting data. Here is a snippet of my Telegraf configuration file:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-ini"&gt;[[inputs.http]]
  interval = "10s"

  ## One or more URLs from which to read formatted metrics
  urls = [
    "https://data.nasa.gov/resource/y77d-th95.json"
  ]

  name_override = "meteorevent"

  tagexclude = ["url"]

  ## HTTP method
  method = "GET"
## Tag keys is an array of keys that should be added as tags.
      tag_keys = [
    "recclass"

  ]

  ## String fields is an array of keys that should be added as string fields.

  ## String fields is an array of keys that should be added as string fields.
  json_string_fields = [
      "fall",
    "name",
    "mass"]

  ## Name key is the key to use as the measurement name.
  json_name_key = ""

  ## Time key is the key containing the time that should be used to create the
  ## metric.
  json_time_key = "year"

  ## Time format is the time layout that should be used to interprete the json_time_key.
  ## The time must be `unix`, `unix_ms`, `unix_us`, `unix_ns`, or a time in the
  ## "reference time".  To define a different format, arrange the values from
  ## the "reference time" in the example to match the format you will be
  ## using.  For more information on the "reference time", visit
  ## https://golang.org/pkg/time/#Time.Format
  ##   ex: json_time_format = "Mon Jan 2 15:04:05 -0700 MST 2006"
  ##       json_time_format = "2006-01-02T15:04:05Z07:00"
  ##       json_time_format = "01/02/2006 15:04:05"
  ##       json_time_format = "unix"
  ##       json_time_format = "unix_ms"

json_time_format = "2006-01-02T15:04:05.000"

  ## Timezone allows you to provide an override for timestamps that
  ## don't already include an offset
  ## e.g. 04/06/2016 12:41:45
  ##
  ## Default: "" which renders UTC
  ## Options are as follows:
  ##   1. Local               -- interpret based on machine localtime
  ##   2. "America/New_York"  -- Unix TZ values like those found in https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  ##   3. UTC                 -- or blank/unspecified, will return timestamp in UTC
  #json_timezone = ""

  [[processors.converter]]
  [processors.converter.fields]
   integer = ["mass"]&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Step 3 &amp;ndash; Use Telegraf to send the data to InfluxDB Cloud&lt;/h3&gt;
&lt;p&gt;Set your token, put in the organization and the bucket you want to land the data in:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-ini"&gt;[[outputs.influxdb_v2]]	
  ## The URLs of the InfluxDB cluster nodes.
  ##
  ## Multiple URLs can be specified for a single cluster, only ONE of the
  ## urls will be written to each interval.
  ## urls exp: http://127.0.0.1:9999
  urls = ["https://PUT IN YOUR URL.influxdata.com"]

  ## Token for authentication.
  token = "$INFLUX_TOKEN"

  ## Organization is the name of the organization you wish to write to; must exist.
  organization = "PUT IN YOUR ORGANIZATION"

  ## Destination bucket to write into.
  bucket = "Meteroite3"&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then just spin up telegraf:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-ini"&gt;telegraf --config mytelegraf.conf&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Step 4 &amp;ndash; Visualize the data&lt;/h3&gt;
&lt;p&gt;Log into InfluxDB Cloud, and build a query:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-javascript"&gt;from(bucket: "Meteroite3")
  |&amp;gt; range(start: -100y)
  |&amp;gt; filter(fn: (r) =&amp;gt; r._field == "mass")
  |&amp;gt; group()
  |&amp;gt; aggregateWindow(every: 1y, fn: count, createEmpty: false)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And show the results.&lt;/p&gt;

&lt;p&gt;&lt;img class="aligncenter size-full wp-image-237983" src="/images/legacy-uploads/graphs.jpg" alt="" width="1100" height="526" /&gt;&lt;/p&gt;

&lt;p&gt;Wow, wasn’t that easy!&lt;/p&gt;
&lt;h2&gt;Section 2: The step-by-step reality&lt;/h2&gt;
&lt;p&gt;I decided to also tell you what my journey was really like. I am hoping that the journey will help others on their journey because the platform wasn’t as easy as I had read in that awesome marketing literature, but I know next time it will be much easier.&lt;/p&gt;
&lt;h3&gt;Step 0 &amp;ndash; Create a Cloud 2.0 account&lt;/h3&gt;
&lt;p&gt;This was really simple: I signed up for &lt;a href="https://cloud2.influxdata.com/login"&gt;InfluxDB Cloud&lt;/a&gt;, validated my email and logged in. I was inspired by &lt;a href="https://w2.influxdata.com/blog/starting-at-influxdb-new-job-new-commute/"&gt;Samantha Wang’s blog&lt;/a&gt; but wanted to use “my own” dataset. I chose the dataset as described above and was ready to go.&lt;/p&gt;
&lt;h3&gt;Step 1 &amp;ndash; Configure Telegraf&lt;/h3&gt;
&lt;p&gt;Installing Telegraf was pretty easy, the &lt;a href="https://v2.docs.influxdata.com/v2.0/cloud/get-started/"&gt;Docs were pretty clear&lt;/a&gt;, and it was running in no time. Now all I needed to do was to configure it! Back to Cloud, to get the data from JSON.&lt;/p&gt;

&lt;p&gt;&lt;img class="aligncenter size-full wp-image-237982" src="/images/legacy-uploads/what-do-you-want-to-monitor.jpg" alt="" width="1100" height="550" /&gt;&lt;/p&gt;

&lt;p&gt;Loved the “Load your data” visualization…But where was “Load from JSON”? Grrr.. back to the Docs, off to GitHub, and now I was getting deeper down the rabbit hole!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/influxdata/telegraf/tree/master/plugins/parsers/json"&gt;On GitHub&lt;/a&gt;, I read about the JSON Plugin Parser and created my first configuration file for Telegraf.&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-ini"&gt;[[inputs.file]]
  files = ["example"]

  name_override = "meteorevent"

  tagexclude = ["url"]

  ## HTTP method
  method = "GET"
## Tag keys is an array of keys that should be added as tags.
      tag_keys = [
    "recclass"

  ]

  ## String fields is an array of keys that should be added as string fields.

  ## String fields is an array of keys that should be added as string fields.
  json_string_fields = [
      "fall",
    "name",
    "mass"]

  ## Name key is the key to use as the measurement name.
  json_name_key = ""

  ## Time key is the key containing the time that should be used to create the
  ## metric.
  json_time_key = "year"

  ## Time format is the time layout that should be used to interprete the json_time_key.
  ## The time must be `unix`, `unix_ms`, `unix_us`, `unix_ns`, or a time in the
  ## "reference time".  To define a different format, arrange the values from
  ## the "reference time" in the example to match the format you will be
  ## using.  For more information on the "reference time", visit
  ## https://golang.org/pkg/time/#Time.Format
  ##   ex: json_time_format = "Mon Jan 2 15:04:05 -0700 MST 2006"
  ##       json_time_format = "2006-01-02T15:04:05Z07:00"
  ##       json_time_format = "01/02/2006 15:04:05"
  ##       json_time_format = "unix"
  ##       json_time_format = "unix_ms"

json_time_format = "2006-01-02T15:04:05.000"

  ## Timezone allows you to provide an override for timestamps that
  ## don't already include an offset
  ## e.g. 04/06/2016 12:41:45
  ##
  ## Default: "" which renders UTC
  ## Options are as follows:
  ##   1. Local               -- interpret based on machine localtime
  ##   2. "America/New_York"  -- Unix TZ values like those found in https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  ##   3. UTC                 -- or blank/unspecified, will return timestamp in UTC
  #json_timezone = ""&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Oh no, but I didn’t have a file — mine was a URL. I thought about “cheating”, but no, I wanted this to be a “real example” so I find out how to get data from a URL. Updated the top of my config file:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-ini"&gt;[[inputs.http]]
  interval = "10s"

  ## One or more URLs from which to read formatted metrics
  urls = [
    "https://data.nasa.gov/resource/y77d-th95.json"
  ]&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Fantastic! Got data coming in (I hope). Oh, how do I tell it to go to my Cloud instance? Back to the Docs, where I found out about &lt;a href="https://v2.docs.influxdata.com/v2.0/write-data/use-telegraf/manual-config/"&gt;manually configuring Telegraf&lt;/a&gt;.&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-ini"&gt;[[outputs.influxdb_v2]]
  urls = ["put in your URL"]
  token = "$INFLUX_TOKEN"
  organization = "orgname"
  bucket = "example-bucket"&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Back to Cloud, created my bucket, created my token. OK, I was seriously ready.&lt;/p&gt;

&lt;p&gt;Fire up telegraf:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-bash"&gt;telegraf --config mytelegraf.conf&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And…&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-bash"&gt;ERROR:
Error in plugin: [url=https://data.nasa.gov/resource/y77d-th95.json]: parsing time "1880-01-01T00:00:00.000" as "unix": cannot parse "1880-01-01T00:00:00.000" as "unix"&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Ok so I knew that my&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-ini"&gt;json_time_format = "2006-01-02T15:04:05Z07:00"&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;was wrong, but what should it be? From the JSON, I could see it was:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-ini"&gt;"year": "1880-01-01T00:00:00.000",&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;But what to change &lt;code class="language-ini"&gt;json_time_format = "2006-01-02T15:04:05Z07:00"&lt;/code&gt; to be?&lt;/p&gt;

&lt;p&gt;I think I tried everything…So I “phoned a friend”, &lt;a href="https://twitter.com/rawkode?lang=en"&gt;David McKay&lt;/a&gt;, the exceptional DevRel who happens to be just a Slack message away. He comes back with:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-ini"&gt;json_time_format = "2006-01-02T15:04:05.000"&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;OK, I have no idea how he got that…Don’t see it in the Docs, but other than being amazed at how good he was, I was eager to continue…He also gave me one more bit of advice for my config file.&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-ini"&gt;[[processors.converter]]
 [processors.converter.fields]
   integer = ["mass"]
   float = ["reclat", "reclong"]&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I updated my config…let’s go!&lt;/p&gt;

&lt;p&gt;Darn, another error:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-bash"&gt;[inputs.http]: Error in plugin: [url=https://data.nasa.gov/resource/y77d-th95.json]: JSON time key could not be found&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Checked Cloud…No data! Grrrrrr.&lt;/p&gt;

&lt;p&gt;OK, I was so close… What to do? I thought for a short second of giving up – nope I was not going to do that! It was time to “call another friend” – (side note, why not call David again? Well, I thought if I send my requests in parallel across the org, no one would understand how “needy” I was). But I am a sucker for punishment, so it is all revealed in this blog! &lt;a href="https://www.linkedin.com/in/russellsavage/"&gt;Russ Savage to the rescue&lt;/a&gt; (Russ is the Director of Product Management at InfluxData). He found that in the JSON, there were a few entries with no year value. Another learning experience for me — if Telegraf finds an error in JSON, it just stops…Nothing is written!&lt;/p&gt;

&lt;p&gt;So what to do? Ok I cheated…I copied the JSON file, removed the offending entries, saved it and went back to:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-ini"&gt;[[inputs.file]]
  files = ["mynewdata.JSON"]&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Step 2 &amp;ndash; Get data in...&lt;/h3&gt;
&lt;p&gt;Success…Telegraf got the data from JSON to Cloud 2.0. I then killed the telegraf process after 15 seconds. No need to run the same file again and again. Also got a few &lt;a href="https://github.com/influxdata/telegraf/issues/6532"&gt;issues&lt;/a&gt; logged against Telegraf.&lt;/p&gt;
&lt;h3&gt;Step 3 &amp;ndash; Visualize the data&lt;/h3&gt;
&lt;p&gt;This was almost the easiest part. I say “almost” because I first tried Data Explorer.&lt;/p&gt;

&lt;p&gt;Newbie tip: Set time to be much longer than last hour! My data was old!&lt;/p&gt;

&lt;p&gt;&lt;img class="aligncenter size-full wp-image-237984" src="/images/legacy-uploads/query-1-1.jpg" alt="" width="1100" height="436" /&gt;&lt;/p&gt;

&lt;p&gt;Changing that and wow…I have data!&lt;/p&gt;

&lt;p&gt;&lt;img class="aligncenter size-full wp-image-237985" src="/images/legacy-uploads/Data-Explorer-query.jpg" alt="" width="1100" height="618" /&gt;&lt;/p&gt;

&lt;p&gt;What I did learn is that Data Explorer was good but maybe too smart for me.&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-javascript"&gt;from(bucket: "Meteroite3")
  |&amp;gt; range(start: v.timeRangeStart, stop: v.timeRangeStop)
  |&amp;gt; filter(fn: (r) =&amp;gt; r._measurement == "file")
  |&amp;gt; filter(fn: (r) =&amp;gt; r._field == "mass")
  |&amp;gt; aggregateWindow(every: v.windowPeriod, fn: sum)
  |&amp;gt; yield(name: "sum")&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I simplified this script to:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-javascript"&gt;from(bucket: "Meteroite3")
  |&amp;gt; range(start: -100y)
  |&amp;gt; filter(fn: (r) =&amp;gt; r._field == "mass")
  |&amp;gt; group()
  |&amp;gt; aggregateWindow(every: 1y, fn: sum, createEmpty: false)&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Step 4 &amp;ndash; Predict the future!&lt;/h3&gt;
&lt;p&gt;Ok, so I decided to use &lt;a href="https://w2.influxdata.com/blog/when-you-want-holt-winters-instead-of-machine-learning/"&gt;Holt-Winters&lt;/a&gt; to predict the future:&lt;/p&gt;
&lt;pre class="line-numbers"&gt;&lt;code class="language-javascript"&gt;from(bucket: "Meteroite3")
|&amp;gt; range(start: -100y, stop:-8y)
|&amp;gt; filter(fn: (r) =&amp;gt; r._field == "mass")
|&amp;gt; group()
|&amp;gt; aggregateWindow(every: 1y, fn: count, createEmpty: false)
|&amp;gt; holtWinters(n: 10, seasonality: 0, interval: 1y, withFit: true)
|&amp;gt; yield(name:"prediction")&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img class="aligncenter size-full wp-image-237981" src="/images/legacy-uploads/Prediction.jpg" alt="" width="1100" height="508" /&gt;&lt;/p&gt;

&lt;p&gt;So it shows we will all live…Don’t worry!&lt;/p&gt;

&lt;p&gt;I did speak to our ML expert, and this is what she said:&lt;/p&gt;
&lt;blockquote&gt;"In order to use Triple &lt;a href="https://www.influxdata.com/blog/exponential-smoothing-beginners-guide"&gt;Exponential Smoothing&lt;/a&gt; (Holt-Winters) or Double Exponential Smoothing, your data needs to exhibit trend and seasonality or just trend, respectively. Your data doesn't have any clear seasonality or trend." &amp;ndash; &lt;a href="https://www.linkedin.com/in/anais-jackie-dotis-029623113/"&gt;Anais Dotis-Georgiou&lt;/a&gt;&lt;/blockquote&gt;
&lt;p&gt;Thanks to everyone who helped me predict the next extinction event!&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;
</description>
      <pubDate>Mon, 21 Oct 2019 07:00:10 -0700</pubDate>
      <link>https://www.influxdata.com/blog/using-influxdb-to-predict-the-next-extinction-event/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/using-influxdb-to-predict-the-next-extinction-event/</guid>
      <category>Product</category>
      <category>Use Cases</category>
      <category>Developer</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>InfluxData opens InfluxDB Cloud 2.0 to public beta</title>
      <description>&lt;p&gt;&lt;em&gt;New unified platform enables deeper data insights, more flexibility, faster onboarding and a rate-limited free tier&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAN FRANCISCO – May 7, 2019  –&lt;/strong&gt; InfluxData, creator of time series database InfluxDB, today announced the public beta of InfluxDB Cloud 2.0 – the most significant evolution of the platform since the project started in 2013. With feedback from open source users and customers, InfluxData strengthened and streamlined the entire InfluxDB platform to improve the overall experience for developers and companies looking to handle and harvest deep insights from their time series datasets. InfluxData is inviting adventurous developers to &lt;a href="https://w2.influxdata.com/influxdb-cloud-2-0-beta/"&gt;join the beta&lt;/a&gt; and provide feedback that will help shape the future of InfluxDB Cloud.&lt;/p&gt;

&lt;p&gt;“Understanding how data changes over time is critical to creating actionable insights that provide greater business value,” said &lt;a href="https://w2.influxdata.com/blog/announcing-influxdb-cloud-2-0-beta-free-tier"&gt;Paul Dix&lt;/a&gt;, co-founder and CTO of InfluxData. “This makes time series the best abstraction for understanding data, which is the motivation behind our purpose-built platform. We hope the developer community will join us on this journey and join the InfluxDB Cloud 2.0 beta program.”&lt;/p&gt;

&lt;p&gt;Major new features in InfluxDB Cloud 2.0, include:&lt;/p&gt;
&lt;ul&gt;
 	&lt;li&gt;&lt;strong&gt;Rate-limited FREE tier:&lt;/strong&gt; Designed for getting started and the hobbyist, it is even faster to get started than downloading the open source product.&lt;/li&gt;
 	&lt;li&gt;&lt;strong&gt;Deeper insights with new Flux language support:&lt;/strong&gt; Flux is a powerful new scripting and query language &amp;ndash; the first functional language built specifically for time series data. Now it is possible to do complex analytics and math across measurements.&lt;/li&gt;
 	&lt;li&gt;&lt;strong&gt;Single, unified API:&lt;/strong&gt;  Everything in InfluxDB (ingest, query, storage, and visualization) is now accessible via a unified API, enabling seamless movement between open source and cloud.&lt;/li&gt;
 	&lt;li&gt;&lt;strong&gt;Integrated visualization and dashboarding:&lt;/strong&gt; The pioneering work of the Chronograf project is now part of InfluxDB; enabling enhanced onboarding and user experience without having to rely on additional installs.&lt;/li&gt;
 	&lt;li&gt;&lt;strong&gt;Usage-based pricing:&lt;/strong&gt; The new pricing model offers more flexibility and ensures that customers are only paying for what they need; it will automatically adjust for projects based on data needs.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;InfluxData has more than 500 customers and over 200,000 servers running InfluxDB that span three primary use cases: &lt;a href="https://w2.influxdata.com/customers/infrastructure-and-application-monitoring/"&gt;DevOps monitoring&lt;/a&gt;, &lt;a href="https://w2.influxdata.com/customers/real-time-analytics/"&gt;real-time analytics&lt;/a&gt;, and &lt;a href="https://w2.influxdata.com/customers/iot-data-platform/"&gt;IoT monitoring&lt;/a&gt;. Any organization that has servers, VMs, containers, applications, sensors, users or events to track can benefit from using InfluxDB.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
InfluxData is the creator of InfluxDB, the open source time series database. Our technology is purpose-built to handle the massive volumes of time-stamped data produced by IoT devices, applications, networks, containers and computers. We are on a mission to help developers and organizations, such as Cisco, IBM, PayPal, and Tesla, store and analyze real-time data, empowering them to build transformative monitoring, analytics, and IoT applications quicker and to scale. InfluxData is headquartered in San Francisco with a workforce distributed throughout the U.S. and across Europe. For more information, visit www.influxdata.com and follow us &lt;a href="https://twitter.com/influxdb"&gt;@InfluxDB&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;
</description>
      <pubDate>Tue, 07 May 2019 07:00:04 -0700</pubDate>
      <link>https://www.influxdata.com/blog/press-release-influxdata-opens-influxdb-cloud-2-0-to-public-beta/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/press-release-influxdata-opens-influxdb-cloud-2-0-to-public-beta/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>InfluxData expands to Austin</title>
      <description>&lt;p&gt;&lt;em&gt;New office will support growing team and operations to accelerate expansion and adoption of the time series database&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAN FRANCISCO – May 1, 2019 –&lt;/strong&gt; &lt;a href="https://w2.influxdata.com/"&gt;InfluxData&lt;/a&gt;, creator of open source time series database InfluxDB, today announced the opening of a second office in downtown Austin. On the heels of a $60-million venture capital infusion, the new office is part of the company’s growth strategy to further expand operations in the U.S. and around the world. The company expects to nearly double the number of employees worldwide by the end of 2019.&lt;/p&gt;

&lt;p&gt;“Our team is growing quickly to keep up with enterprise demands for time series data management,” said Evan Kaplan, CEO of InfluxData. “Hiring in tech has never been so competitive so we look for talented people wherever they are and have had tremendous success in Austin because it attracts smart, creative and driven people – the kind we’re looking for to join our team.”&lt;/p&gt;

&lt;p&gt;InfluxData’s Austin office opening comes after another year of exceptional growth. With the explosion of DevOps (e.g., Kubernetes, microservices) and the Internet of Things (e.g., sensors), the adoption of time series databases has accelerated as enterprises demand better insights to achieve better results, and grow their customer base through effective processing and analysis of time series data. In 2018, InfluxData more than doubled its sales and headcount, reaching more than 500 customers for both DevOps and IoT functions – including Wayfair, Mulesoft, RingCentral, PayPal and Cisco.&lt;/p&gt;

&lt;p&gt;“We’re following the footsteps of other successful companies growing out of Silicon Valley and opening operations in Austin,” said Lauren Partin, sales development manager and head of the Austin office. “We have a lot of space to grow and have already started expanding the team. We hope that the convenient location of our new, open and creative workspace will draw more people to join us.”&lt;/p&gt;

&lt;p&gt;The InfluxData Austin office is located at 9020 North Capital of Texas Highway, Building 2, Suite 337 – near the Arboretum in North Austin. InfluxData has a distributed workforce, with staff throughout the U.S. and across Europe. The company is hiring for many positions in every department, and the Austin office is focused on recruiting &lt;a href="https://w2.influxdata.com/careers/#sales-development-representative"&gt;sales development representatives&lt;/a&gt;, &lt;a href="https://w2.influxdata.com/careers/#enterprise-technical-support-engineer-east-coast"&gt;technical support engineers&lt;/a&gt;, and &lt;a href="https://w2.influxdata.com/careers/#have-you-built-a-database-if-so-lets-talk"&gt;database engineers&lt;/a&gt;. All open positions are listed on &lt;a href="https://w2.influxdata.com/careers/"&gt;www.influxdata.com/careers&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
InfluxData is creator of InfluxDB, the open source time series platform. Built from the ground up, InfluxDB is optimized for analyzing metrics and events (time series data) for DevOps and IoT applications. Whether the data comes from humans, sensors, or machines, InfluxData empowers developers to build next-generation monitoring, analytics, and IoT applications faster, easier, and to scale delivering real business value quickly. Based in San Francisco, InfluxData has more than 500 customers including&lt;a href="https://w2.influxdata.com/customer/cisco/"&gt; Cisco&lt;/a&gt;,&lt;a href="https://w2.influxdata.com/customer/ebay-customer-testimonial/"&gt; eBay&lt;/a&gt;,&lt;a href="https://w2.influxdata.com/customer/ibm/"&gt; IBM&lt;/a&gt; and&lt;a href="https://w2.influxdata.com/customer/siemens/"&gt; Siemens&lt;/a&gt;. For more information, visit www.influxdata.com. Twitter: @&lt;a href="https://twitter.com/influxdb"&gt;influxdb&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Wed, 01 May 2019 07:00:55 -0700</pubDate>
      <link>https://www.influxdata.com/blog/press-release-influxdata-expands-to-austin/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/press-release-influxdata-expands-to-austin/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>InfluxData and Google Cloud Partner to Offer Leading Time Series Database on Google Cloud Platform</title>
      <description>&lt;p&gt;&lt;img class="size-medium wp-image-208385 alignright" src="/images/legacy-uploads/influxdata-logo-300x99.png" alt="" width="300" height="99" /&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;em&gt;New integrated solution emphasizes benefits of open source technologies and expands availability and distribution of InfluxDB to Google Cloud Platform&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;SAN FRANCISCO – April 9, 2019 – InfluxData, creator of the open source time series database InfluxDB, and Google Cloud today announced a partnership to integrate InfluxDB Cloud 2.0 with the Google Cloud Platform to offer a streamlined user experience. Google Cloud customers will have access to the new solution, InfluxDB Cloud on Google Cloud, directly on the Google Cloud Marketplace or through the Google enterprise sales team.&lt;/p&gt;

&lt;p&gt;The explosion of DevOps (e.g., Kubernetes, microservices) and the Internet of Things (e.g., sensors) is motivating enterprises to look for ways to achieve better results, gain new insights and grow their customer bases through effective processing and analysis of time series data. IDC predicts that the global sum of data will grow to 175 zettabytes by 2025 and of that, 30 percent will be consumed in real time. As a result, time series databases are in high demand and this need will continue to grow. Through this partnership, Google Cloud customers will have easy access to the leading time series database to fit their organizations’ ever-growing needs.&lt;/p&gt;

&lt;p&gt;“Bringing InfluxDB to Google Cloud was a natural choice for us given InfluxData’s proven history of customer-centric, open source innovation,” said Kevin Ichhpurani, Corporate Vice President, Global Partner Ecosystem at Google Cloud. “We’re committed to delivering best-in-class technology and services to our customers. Partnering with InfluxData and offering InfluxDB as a managed service on GCP will help us do this while continuing to foster a robust and customer-focused open source ecosystem.”&lt;/p&gt;

&lt;p&gt;Google Cloud is partnering with top open source providers in several categories to bring the best of open source to its customer base. Customers will have the flexibility to develop with open source technology using the services from top partners integrated with GCP. This will include the ability to manage InfluxDB Cloud 2.0 from the Google Cloud console and have the same integrated billing, support and other deep product integrations with GCP.&lt;/p&gt;

&lt;p&gt;“Google and InfluxData share a belief that the open source community fosters innovation and transparency that is unmatched by any proprietary product offering,” said Evan Kaplan, CEO of InfluxData. “Driven by increased instrumentation of the physical and software worlds, demand for time series is growing faster than any other database category. This close partnership amplifies our strategy to increase accessibility to InfluxDB and ultimately empower more developers with our time series solutions.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Product Availability&lt;/strong&gt;
InfluxDB Cloud on Google Cloud will be available in late 2019 to companies using Google Cloud Platform. Get updates and learn more about InfluxData’s &lt;a href="https://w2.influxdata.com/partners/google/"&gt;partnerships&lt;/a&gt; with Google.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
InfluxData, creator of InfluxDB, delivers a modern open source platform, built from the ground up, for analyzing metrics and events (time series data) for DevOps and IoT applications. Whether the data comes from humans, sensors, or machines, InfluxData empowers developers to build next-generation monitoring, analytics, and IoT applications faster, easier, and to scale delivering real business value quickly. Based in San Francisco, InfluxData has more than 500 customers including&lt;a href="https://w2.influxdata.com/customer/cisco/"&gt; Cisco&lt;/a&gt;,&lt;a href="https://w2.influxdata.com/customer/ebay-customer-testimonial/"&gt; eBay&lt;/a&gt;,&lt;a href="https://w2.influxdata.com/customer/ibm/"&gt; IBM&lt;/a&gt; and&lt;a href="https://w2.influxdata.com/customer/siemens/"&gt; Siemens&lt;/a&gt;. For more information, visit www.influxdata.com. Twitter: @&lt;a href="https://twitter.com/influxdb"&gt;influxdb&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Tue, 09 Apr 2019 09:00:53 -0700</pubDate>
      <link>https://www.influxdata.com/blog/influxdata-and-google-cloud-partner-to-offer-leading-time-series-database-on-google-cloud-platform/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdata-and-google-cloud-partner-to-offer-leading-time-series-database-on-google-cloud-platform/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>InfluxData Secures $60 Million in Series D Funding to Bring the Value of Time Series to the Enterprise Mainstream</title>
      <description>&lt;p&gt;&lt;i&gt;Norwest leads round, emphasizing strong growth and market potential; former MongoDB CEO joins board of directors&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAN FRANCISCO&lt;/strong&gt; – &lt;a href="https://w2.influxdata.com/"&gt;InfluxData&lt;/a&gt;, creator of the leading time series database InfluxDB, has raised $60 million in Series D funding, led by &lt;a href="https://www.nvp.com"&gt;Norwest Venture Partners&lt;/a&gt; and joined by Sorenson Capital and existing investors Sapphire Ventures, Battery Ventures, Mayfield Fund, Trinity Ventures and Harmony Partners.&lt;/p&gt;

&lt;p&gt;The proliferation of data continues to grow, prompted mainly by the instrumentation of the virtual (e.g., Kubernetes, microservices) and physical (e.g., IoT sensors) worlds. As enterprises look for ways to achieve better results, gain new insights and grow their customer base, analysis of time series data is critical and is driving the need for purpose-built solutions. InfluxDB is the leading time series database – which has been the fastest growing database category over the last two years, according to &lt;a href="https://db-engines.com/en/ranking/time+series+dbms"&gt;DB-Engines&lt;/a&gt;, the industry ranking authority. InfluxData more than doubled revenue, new customer logos, and employees in 2018 and is positioned to accelerate momentum through 2019 and beyond. To date, most of the company’s growth can be attributed to great product-market fit, a developer-focused approach and demand from the open source community.&lt;/p&gt;

&lt;p&gt;“InfluxData’s time series vision is the future of data management,” said Rama Sekhar, partner at Norwest Venture Partners and new InfluxData board member. “Enterprises are experiencing a data revolution with massive increases in volumes of data. InfluxData is empowering enterprises to discover insights about their data by organizing it in the time dimension, a critical approach for use cases such as DevOps observability and IoT analytics. Developer support is also key in this space and the cult-following from the open source community signals a unique vision and value.”&lt;/p&gt;

&lt;p&gt;The new infusion of funds will support further investment in product innovation, with increased focus on the cloud, and building out sales and marketing programs to meet growing product demand, as well as customer support needs. InfluxData will begin to market its solutions for specific uses, including industrial IoT and network monitoring, and target industries such as e-commerce, gaming and financial services.&lt;/p&gt;

&lt;p&gt;“A majority of data is best understood in the time dimension, which is why time series data is the foundation of so many of today’s critical technology investments, including IoT, observability, machine learning and predictive analytics,” said Evan Kaplan, CEO of InfluxData. “The new funding will enhance our ability to deliver versatile solutions to countless companies looking to harvest insights from time and support our aggressive plans to scale the company. We’re also honored to have such esteemed individuals joining our board of directors to enhance our strategic direction.”&lt;/p&gt;

&lt;p&gt;“InfluxData has demonstrated consistent growth in a market with tremendous potential, which is why we’re strengthening our commitment in this round of funding,” said Anders Ranum, managing director at &lt;a href="https://sapphireventures.com/"&gt;Sapphire Ventures&lt;/a&gt; and member of the InfluxData board of directors. “The company continues to innovate its technology, pushing the boundaries when it comes to time series data solutions and is transforming its business model to support current and future demand. There are great things coming from InfluxData.”&lt;/p&gt;

&lt;p&gt;InfluxData is also proud to welcome Max Schireson, entrepreneur in residence at Battery Ventures and former CEO of MongoDB, to its board of directors. Schireson brings a wealth of database industry experience, having led and advised cloud, big data and open source technology companies through hyper-growth transformational phases.&lt;/p&gt;

&lt;p&gt;InfluxData closed $35 million in Series C funding in January 2018, led by Sapphire Ventures and joined by Harmony Partners and existing investors Battery Ventures, Mayfield Fund and Trinity Ventures. Other past investors include Bloomberg Beta and Y Combinator.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
&lt;a href="https://w2.influxdata.com/"&gt;InfluxData&lt;/a&gt;, the creator of InfluxDB, delivers a modern open source platform, built from the ground up, for analyzing metrics and events (time series data) for DevOps and IoT applications. Whether the data comes from humans, sensors, or machines, InfluxData empowers developers to build next-generation monitoring, analytics, and IoT applications faster, easier, and to scale delivering real business value quickly. Based in San Francisco, InfluxData has more than 450 customers including &lt;a href="https://w2.influxdata.com/customer/cisco/"&gt;Cisco&lt;/a&gt;, &lt;a href="https://w2.influxdata.com/customer/ebay-customer-testimonial/"&gt;eBay&lt;/a&gt;, &lt;a href="https://w2.influxdata.com/customer/ibm/"&gt;IBM&lt;/a&gt; and &lt;a href="https://w2.influxdata.com/customer/siemens/"&gt;Siemens&lt;/a&gt;. For more information, visit www.influxdata.com. Twitter: @&lt;a href="https://twitter.com/influxdb"&gt;influxdb&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About Norwest Venture Partners&lt;/strong&gt;
Norwest is a leading growth equity and venture investment firm managing more than $7.5 billion in capital. Since its inception, it has invested in more than 600 companies. The firm invests in early- to late-stage companies across a wide range of sectors with a focus on consumer, enterprise, and healthcare. It offers a deep network of connections, operating experience, and a wide range of impactful services to help CEOs and founders advance on their journey. Norwest has offices in Palo Alto and San Francisco, with subsidiaries in India and Israel. For more information, visit &lt;a href="https://cts.businesswire.com/ct/CT?id=smartlink&amp;amp;url=https%3A%2F%2Fnvp.com%2F&amp;amp;esheet=51927132&amp;amp;newsitemid=20190117005803&amp;amp;lan=en-US&amp;amp;anchor=Norwest&amp;amp;index=2&amp;amp;md5=790465bc5f313d0d3edbd773cc113547"&gt;Norwest&lt;/a&gt; and follow on Twitter &lt;a href="https://cts.businesswire.com/ct/CT?id=smartlink&amp;amp;url=https%3A%2F%2Ftwitter.com%2FNorwestVP&amp;amp;esheet=51927132&amp;amp;newsitemid=20190117005803&amp;amp;lan=en-US&amp;amp;anchor=%40NorwestVP&amp;amp;index=3&amp;amp;md5=3d9a4bcdc7ed770f33bab8e7e49045a9"&gt;@NorwestVP&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Wed, 13 Feb 2019 04:30:36 -0700</pubDate>
      <link>https://www.influxdata.com/blog/influxdata-secures-60-million-in-series-d-funding-to-bring-the-value-of-time-series-to-the-enterprise-mainstream/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdata-secures-60-million-in-series-d-funding-to-bring-the-value-of-time-series-to-the-enterprise-mainstream/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>InfluxData and VMware Collaborate to Optimize Streaming Data Collected from IoT Devices</title>
      <description>&lt;p&gt;&lt;img class="size-medium wp-image-208385 alignright" src="/images/legacy-uploads/influxdata-logo-300x99.png" alt="" width="300" height="99" /&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;em&gt;InfluxDB Enterprise and Kapacitor to integrate with VMware Pulse IoT Center to manage time series data workloads at connected IoT edge&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAN FRANCISCO&lt;/strong&gt; – &lt;a href="https://influxdata.com"&gt;InfluxData,&lt;/a&gt; creator of the modern open source purpose-built time series database InfluxDB, today announced its technology will integrate with VMware’s Pulse IoT Center, an IoT infrastructure management solution. The new solution embeds two products from InfluxData — InfluxDB Enterprise and Kapacitor — optimizing the handling of time series data from connected &lt;a href="https://www.influxdata.com/glossary/iot-devices/"&gt;IoT devices&lt;/a&gt;, sensors and infrastructure running at the edge and using VMware Pulse IoT.&lt;/p&gt;

&lt;p&gt;InfluxDB Enterprise is a database optimized for time series data. And Kapacitor is the real-time stream processing component of the InfluxData platform – used to analyze large quantities of sensor data in real time.&lt;/p&gt;

&lt;p&gt;VMware Pulse IoT Center is a secure, enterprise-grade IoT device management and monitoring solution. It allows customers to onboard, manage, monitor and secure &lt;a href="https://www.vmware.com/topics/glossary/content/internet-things-iot" target="_blank" rel="noopener noreferrer"&gt;IoT&lt;/a&gt; systems and connected devices, bridge the gap between information technology and operational technology organizations, and simplify IoT device management with Pulse IoT Center.&lt;/p&gt;

&lt;p&gt;The integration of InfluxDB and Kapacitor with VMware Pulse IoT Center creates a solution that enhances the ability of companies to handle the massive amounts of data associated with industrial and enterprise IoT workloads.&lt;/p&gt;

&lt;p&gt;“IoT is a new frontier for the enterprise, and the ability to operate at the edge is non-negotiable,” said Mimi Spier, VP of Internet of Things Business at VMware. “Simply put, there must be edge computing to process data closer to where IoT devices reside, and real-time collecting, visualizing and processing of device metrics and time-series data to deliver insight and competitive advantage. We’re thrilled to collaborate with InfluxData in bringing &lt;a href="https://www.influxdata.com/glossary/edge-computing/"&gt;edge computing&lt;/a&gt; capabilities to our mutual customers.”&lt;/p&gt;

&lt;p&gt;“With highly capable platforms such as VMware Pulse IoT Center, quickly scaling out an IoT deployment is now easier than ever,” said Brian Mullen, VP of Business Development at InfluxData. “We are thrilled to be working with VMware to bring our open source platform, specifically InfluxDB Enterprise and Kapacitor, to industrial and enterprise IoT developers, enhancing their ability to handle time series data at the IoT edge.”&lt;/p&gt;

&lt;p&gt;For more information on VMware Pulse IoT Center, visit
&lt;a href="https://www.vmware.com/products/pulse-iot-device-management.html" target="_blank" rel="noopener noreferrer"&gt;www.vmware.com/products/pulse-iot-device-management.html&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;For more information about InfluxData solutions, visit
&lt;a href="https://influxdata.com/products/editions/"&gt;www.influxdata.com/products/editions.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
&lt;a href="https://influxdata.com/"&gt;InfluxData&lt;/a&gt;, the creator of InfluxDB, delivers a modern open source platform, built from the ground up, for analyzing metrics and events (time series data) for DevOps and IoT applications. Whether the data comes from humans, sensors, or machines, InfluxData empowers developers to build next-generation monitoring, analytics, and IoT applications faster, easier, and to scale delivering real business value quickly. Based in San Francisco, InfluxData has more than 450 customers including &lt;a href="https://influxdata.com/customer/cisco/"&gt;Cisco&lt;/a&gt;, &lt;a href="https://influxdata.com/customer/ebay-customer-testimonial/"&gt;eBay&lt;/a&gt;, &lt;a href="https://influxdata.com/customer/ibm/"&gt;IBM&lt;/a&gt; and &lt;a href="https://influxdata.com/customer/siemens/"&gt;Siemens&lt;/a&gt;. For more information, visit www.influxdata.com. Twitter: @&lt;a href="https://twitter.com/influxdb"&gt;influxdb&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Wed, 06 Feb 2019 07:00:48 -0700</pubDate>
      <link>https://www.influxdata.com/blog/influxdata-and-vmware-collaborate-to-optimize-streaming-data-collected-from-iot-devices/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdata-and-vmware-collaborate-to-optimize-streaming-data-collected-from-iot-devices/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>2018: A Transformative Year for InfluxData</title>
      <description>&lt;p&gt;In 2018, InfluxData experienced the most accelerated growth in our company’s history. Every major sector of our business made progress well beyond initial goals. Expanding our category leadership, we empowered more developers to build next-generation applications aiding in real-time decision making for users.&lt;/p&gt;

&lt;p&gt;It was a big year, and so, here we reflect on some of our 2018 accomplishments and the momentum that is propelling us into 2019.&lt;/p&gt;
&lt;div class="momentum"&gt;
&lt;table class="report-table"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="30%"&gt;&lt;img class="alignnone wp-image-222721 size-full" src="/images/legacy-uploads/35-million-icon.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;Secured &lt;a href="https://www.influxdata.com/blog/influxdata-raises-35m-to-accelerate-growth-and-meet-growing-global-demand-for-time-series-database/"&gt;$35 million&lt;/a&gt; in Series C financing led by Sapphire Ventures, and joined by Harmony Partners and existing investors Battery Ventures, Mayfield Fund and Trinity Ventures.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img class="alignnone wp-image-222723 size-full" src="/images/legacy-uploads/employee-7.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;Our talented and creative team is what makes this all happen. From engineering and sales to marketing and finance, every department contributes to our overall success. We're still &lt;a href="https://w2.influxdata.com/careers/"&gt;hiring&lt;/a&gt; too. :)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img class="alignnone wp-image-222687 size-full" src="/images/legacy-uploads/database-new.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;We maintained our leadership position wire-to-wire throughout the year among time series databases, according to &lt;a href="https://db-engines.com/en/ranking/time+series+dbms" target="_blank" rel="noopener noreferrer"&gt;DB Engines&lt;/a&gt;, and increased our overall database ranking by nearly 50%.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img class="alignnone wp-image-222688 size-full" src="/images/legacy-uploads/open-source-new.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;Active open source instances grew from 115,000 to 192,000, a 67% increase.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src="/images/legacy-uploads/github-stars-new.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;We continued to foster our open source community and surpassed 15k stars on Github.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img class="alignnone wp-image-222690 size-full" src="/images/legacy-uploads/customers-new.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;InfluxData sales doubled over 2018, as the team reached 450 customers for both DevOps and IoT functions &amp;ndash; including big names like Wayfair, Mulesoft, RingCentral, PayPal, and Oracle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img class="alignnone wp-image-222691 size-full" src="/images/legacy-uploads/products-new.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;The engineering team was bustling this year, making significant strides in several areas of our products, from performance and data compaction and machine learning systems, to LDAP integration, and advanced analytics and self-healing.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img class="alignnone wp-image-222693 size-full" src="/images/legacy-uploads/calendar-new.png" alt="" width="455" height="194" /&gt;&lt;/td&gt;
&lt;td style="vertical-align: center;"&gt;2019 will be another transformative year for InfluxData. We just celebrated the fifth anniversary of the InfluxDB project and we'll introduce the most significant product updates since the original launch, in the next several months &amp;ndash; the solution has continued to evolve over the years, thanks in large part to our valued open source community.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p&gt;Interest in time series data is at an all-time high, as companies recognize the structure of their most valued datasets. With this wind at our backs, we will push to reach more people and organizations to show them the real value, benefits and power of time series data collection and analysis, for real-time decision making.&lt;/p&gt;

&lt;p&gt;And we’re already off to a great start. We just named two new executives – &lt;a href="/blog/influxdata-names-new-engineering-and-sales-executives/"&gt;SVP of Engineering Jim Walsh and VP of Sales Will Paulus&lt;/a&gt; – whose experience and leadership will propel our technology and business forward to meet the very aggressive goals we have set for ourselves in 2019.&lt;/p&gt;
</description>
      <pubDate>Thu, 31 Jan 2019 02:40:07 -0700</pubDate>
      <link>https://www.influxdata.com/blog/2018-a-transformative-year-for-influxdata/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/2018-a-transformative-year-for-influxdata/</guid>
      <category>Company</category>
      <category>Product</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>InfluxData Names New Engineering and Sales Executives to Accelerate Growth and Continue Time Series Database Category Leadership</title>
      <description>&lt;p&gt;&lt;img class="alignnone size-medium wp-image-208385 alignright" src="/images/legacy-uploads/influxdata-logo-300x99.png" alt="" width="300" height="99" /&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;
&lt;h4&gt;&lt;/h4&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h4&gt;&lt;em&gt;Former Salesforce and Algolia leaders fill integral roles on company's executive team&lt;/em&gt;&lt;/h4&gt;
&lt;p&gt;SAN FRANCISCO – January 17, 2019 – &lt;a href="https://w2.influxdata.com/"&gt;InfluxData&lt;/a&gt;, creator of the modern open source purpose-built time series database InfluxDB, today announced &lt;a href="https://w2.influxdata.com/blog/jim-walsh-why-i-joined-influxdata/"&gt;Jim Walsh&lt;/a&gt; as its new Senior Vice President of Engineering and &lt;a href="https://w2.influxdata.com/blog/will-paulus-why-i-joined-influxdata/"&gt;Will Paulus&lt;/a&gt; as its new Vice President of Sales. The addition of Walsh, former Senior Vice President of Infrastructure Engineering at Salesforce, and Paulus, former Head of U.S. Sales at Algolia, will propel the company’s plans for growth and expansion.&lt;/p&gt;

&lt;p&gt;“Jim and Will each bring entrepreneurial initiative and a breadth of experience in their respective fields that will strengthen our senior leadership team,” said Evan Kaplan, CEO of InfluxData. “We experienced tremendous growth in 2018 and are well-positioned to continue this momentum through 2019. Appointing these accomplished executives in such pivotal roles at the company will support our overall push to innovate, expand and increase profitability.”&lt;/p&gt;

&lt;p&gt;As SVP of Engineering, Walsh will focus on scaling the InfluxDB technology and introducing new features to expand DevOps and IoT functionalities, in addition to building and leading the engineering team. In his new role, Paulus will drive global customer acquisition and build out the team to support international sales operations.&lt;/p&gt;

&lt;p&gt;“InfluxDB is an innovative open source platform with applications that span DevOps and IoT, areas with near-unlimited potential,” said Walsh. “InfluxData has an amazingly strong and talented group of engineers and I look forward to leading and further building out the team and keeping the technology on the cutting edge.”&lt;/p&gt;

&lt;p&gt;“InfluxData has shown impressive and steady growth year over year and with industry-leading technology, it’s well-positioned to accelerate that growth,” said Paulus. “As more enterprises recognize the power of time series data, there’s a huge opportunity to further expand InfluxData’s market share to customers around the world.”&lt;/p&gt;

&lt;p&gt;At Salesforce, Walsh led the company’s data platforms and services, and storage clouds, building and operating its reliable and highly scalable data storage and processing platforms. He established the company’s operations in Bellevue and drove its expansion from 110 to 500+ employees. Before Salesforce, he served in leadership roles at Microsoft, including co-founder of the Bing engineering team and founder of the Cosmos data platform, and was a founding member and VP of Engineering at Versive, a machine learning-based cybersecurity startup.&lt;/p&gt;

&lt;p&gt;Before InfluxData, Paulus served as Head of U.S. Sales at Algolia, a search and discovery API provider. Company revenue quadrupled during the two years under his leadership. Previously, he led U.S. and international sales initiatives and built teams to support exponential growth for Google’s G Suite and Mixpanel, where revenue increased 10x in four years, establishing a firm footprint in the market.&lt;/p&gt;

&lt;p&gt;InfluxData is the leader in time series databases, the fastest growing database category for the last two years, according to &lt;a href="https://db-engines.com/en/ranking_categories"&gt;DB-Engines&lt;/a&gt;. As time-based data is generated at exponential rates from increased use of DevOps and IoT sensors, companies are requiring more advanced performance tools to analyze their complex environments. InfluxData has built a solid developer and customer base across industries – including manufacturing, financial services, energy, and telecommunications – by delivering a sophisticated open source platform that delivers real-time analytics for better business insights and real-time decision making.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
&lt;a href="https://w2.influxdata.com/"&gt;InfluxData&lt;/a&gt;, the creator of InfluxDB, delivers a modern open source platform, built from the ground up, for analyzing metrics and events (time series data) for DevOps and IoT applications. Whether the data comes from humans, sensors, or machines, InfluxData empowers developers to build next-generation monitoring, analytics, and IoT applications faster, easier, and to scale delivering real business value quickly. Based in San Francisco, InfluxData has more than 450 customers including &lt;a href="https://w2.influxdata.com/customer/cisco/"&gt;Cisco&lt;/a&gt;, &lt;a href="https://w2.influxdata.com/customer/ebay-customer-testimonial/"&gt;eBay&lt;/a&gt;, &lt;a href="https://w2.influxdata.com/customer/ibm/"&gt;IBM&lt;/a&gt; and &lt;a href="https://w2.influxdata.com/customer/siemens/"&gt;Siemens&lt;/a&gt;. For more information, visit www.influxdata.com. Twitter: @&lt;a href="https://twitter.com/influxdb"&gt;influxdb&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Thu, 17 Jan 2019 06:00:45 -0700</pubDate>
      <link>https://www.influxdata.com/blog/influxdata-names-new-engineering-and-sales-executives/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdata-names-new-engineering-and-sales-executives/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
    <item>
      <title>StreamSets Embeds InfluxDB for Time Series Data Collection and Analysis for Multi-Pipeline Dataflows</title>
      <description>&lt;p&gt;&lt;strong&gt;FOR IMMEDIATE RELEASE&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Contact:&lt;/strong&gt;
Dan Spalding, InfluxData
408-960-9297 | &lt;u&gt;&lt;a href="mailto:dan.spalding@influxdata.com"&gt;dan.spalding@influxdata.com&lt;/a&gt;&lt;/u&gt;&lt;em&gt; &lt;/em&gt;&lt;/p&gt;
&lt;h4&gt;StreamSets Dataflow Performance Manager (DPM™) Now Ships with InfluxDB Embedded as Default Data Platform to Handle Time Series Workloads for Cloud-Native Data Movement&lt;/h4&gt;
&lt;p&gt;&lt;strong&gt;SAN  FRANCISCO – Dec. 20, 2018 – &lt;/strong&gt;InfluxData, the &lt;u&gt;&lt;a href="https://w2.influxdata.com/products/"&gt;modern open source platform&lt;/a&gt;&lt;/u&gt; built specifically for metrics, events and other time series data that empowers developers to build next-generation monitoring, analytics and IoT applications, today announced its inclusion in the  StreamSets DataOps platform.&lt;/p&gt;

&lt;p&gt;StreamSets customers adopting StreamSets Dataflow Performance Manager (DPM) have two options featuring the InfluxData platform for handling time series data within either open source InfluxDB or InfluxDB Enterprise for projects requiring clustering. StreamSets DPM offers advanced dataflow management, including Data SLAs for availability, accuracy and data privacy; as well as tracking of historical performance across data pipeline versions. Together, InfluxData and StreamSets present a unique offering for provisioning, testing, and scaling complex dataflows, with optimized handling of time series data, which is a key component in cloud-native application infrastructure workloads.&lt;/p&gt;

&lt;p&gt;“As enterprises continuously deploy and scale out their cloud-native architectures, there is a geometric increase in the variety of data sources and the volume of data in motion,” said Harikiran Nayak, Director of Engineering at StreamSets. “StreamSets enables companies to efficiently develop and operate data movement across multi-platform hybrid infrastructures, yet remain agile in the face of change. In InfluxData, we have integrated a first-class system to handle this relentless, ever-growing stream of time series data in order to maximize performance for our DPM users.”&lt;/p&gt;

&lt;p&gt;The companies have entered into an OEM partnership agreement, in which StreamSets will distribute InfluxData products in specific editions of its platform, sold to customers around the world.&lt;/p&gt;

&lt;p&gt;“At InfluxData, our focus is twofold – building the highest performance time series platform in the world and minimizing developers’ Time to Awesome,” said Brian Mullen, VP of Business Development at InfluxData. “StreamSets is single-handedly defining the DataOps market for enterprise data integration. We are thrilled to be working with their world-class product team to serve this massive market opportunity, bringing simplicity and performance for time series data to StreamSets developers.”&lt;/p&gt;

&lt;p&gt;Learn more about the StreamSets DataOps Platform at &lt;u&gt;&lt;a href="https://streamsets.com/products/dataops-platform"&gt;https://streamsets.com/products/dataops-platform&lt;/a&gt;&lt;/u&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About StreamSets &lt;/strong&gt;
StreamSets built the industry’s first multi-cloud DataOps platform for modern data integration, helping enterprises to continuously flow big, streaming and traditional data to their data scientists and data-intensive applications. It uniquely handles data drift, those frequent and unexpected changes to data that break pipelines and damage data integrity. The platform combines the open source StreamSets Data Collector™ for execution of any-to-any pipelines (the data plane) with cloud-native StreamSets Control Hub for the design, monitoring and performance management of multi-pipeline topologies (the control plane). For more information, visit &lt;u&gt;&lt;a href="http://www.streamsets.com/"&gt;www.streamsets.com&lt;/a&gt;&lt;/u&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About InfluxData&lt;/strong&gt;
&lt;u&gt;&lt;a href="https://w2.influxdata.com/"&gt;InfluxData&lt;/a&gt;&lt;/u&gt;, the creator of InfluxDB, delivers a modern open source platform built from the ground up for analyzing metrics and events (time series data) for DevOps and IoT applications. Whether the data comes from humans, sensors, or machines, InfluxData empowers developers to build next-generation monitoring, analytics, and IoT applications faster, easier, and to scale delivering real business value quickly. Based in San Francisco, InfluxData’s more than 450 customers include &lt;u&gt;&lt;a href="https://www.influxdata.com/customer/cisco/"&gt;Cisco&lt;/a&gt;&lt;/u&gt;, &lt;u&gt;&lt;a href="https://www.influxdata.com/customer/ebay-customer-testimonial/"&gt;eBay&lt;/a&gt;&lt;/u&gt;, &lt;u&gt;&lt;a href="https://www.influxdata.com/customer/ibm/"&gt;IBM&lt;/a&gt;&lt;/u&gt; and &lt;u&gt;&lt;a href="https://www.influxdata.com/customer/siemens/"&gt;Siemens&lt;/a&gt;&lt;/u&gt;. Visit &lt;u&gt;&lt;a href="https://www.influxdata.com/"&gt;www.influxdata.com&lt;/a&gt;&lt;/u&gt;. Twitter: &lt;u&gt;&lt;a href="https://twitter.com/influxdb"&gt;@influxdb&lt;/a&gt;&lt;/u&gt;.&lt;/p&gt;

&lt;p&gt;InfluxData, InfluxDB Cloud, InfluxDB, InfluxDB Enterprise, and Telegraf are all trademarked by InfluxData. All other trademarks are the property of their respective owners.&lt;/p&gt;
</description>
      <pubDate>Thu, 20 Dec 2018 04:55:50 -0700</pubDate>
      <link>https://www.influxdata.com/blog/streamsets-embeds-influxdb-for-time-series-data-collection-and-analysis-for-multi-pipeline-dataflows/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/streamsets-embeds-influxdb-for-time-series-data-collection-and-analysis-for-multi-pipeline-dataflows/</guid>
      <category>Company</category>
      <category>Press Releases</category>
      <author>Mark Herring (InfluxData)</author>
    </item>
  </channel>
</rss>
