2014-12-11 07:28:01 -05:00
---
layout: doc_page
---
# Data Source Metadata Queries
2015-03-26 13:44:11 -04:00
Data Source Metadata queries return metadata information for a dataSource. These queries return information about:
* The timestamp of latest ingested event for the dataSource. This is the ingested event without any consideration of rollup.
The grammar for these queries is:
2014-12-11 07:28:01 -05:00
```json
{
"queryType" : "dataSourceMetadata",
2015-03-30 10:34:38 -04:00
"dataSource": "sample_datasource"
2014-12-11 07:28:01 -05:00
}
```
There are 2 main parts to a Data Source Metadata query:
|property|description|required?|
|--------|-----------|---------|
|queryType|This String should always be "dataSourceMetadata"; this is the first thing Druid looks at to figure out how to interpret the query|yes|
2015-03-26 13:44:11 -04:00
|dataSource|A String or Object defining the data source to query, very similar to a table in a relational database. See [DataSource ](DataSource.html ) for more information.|yes|
|context|See [Context ](Context.html )|no|
2014-12-11 07:28:01 -05:00
The format of the result is:
```json
[ {
"timestamp" : "2013-05-09T18:24:00.000Z",
"result" : {
"maxIngestedEventTime" : "2013-05-09T18:24:09.007Z",
}
} ]
```